ERC-20
Overview
Max Total Supply
1,000,000,000 SOAPS
Holders
1,020
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Soaps
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Welcome to the Soaps. Website: https://soaps.tech/ Telegram: https://t.me/soapstech X: https://x.com/soapstech */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.16; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function allPairsLength() external view returns (uint256); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { 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 removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut( uint256 amountIn, address[] calldata path ) external view returns (uint256[] memory amounts); function getAmountsIn( uint256 amountOut, address[] calldata path ) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @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); } /** * @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 decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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]. * * 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @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 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @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 ) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @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 ) external 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 ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 ) external 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 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 ) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** @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"); _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); } /** * @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"); 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); } /** * @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); } } } 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"); 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); } } /** * @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]. * * 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 Soaps is ERC20, Ownable { // TOKENOMICS START ==========================================================> string private _name = "Soaps Tech"; string private _symbol = "SOAPS"; uint8 private _decimals = 9; uint256 private _supply = 1_000_000_000; uint256 public taxForMarketing = 30; uint256 public maxTxAmount = 50_000_000 * 10 ** _decimals; uint256 public maxWalletAmount = 50_000_000 * 10 ** _decimals; address public marketingWallet = 0x9fAb989454AB3FD2dCd4F97e46e574a7A015cE6E; // TOKENOMICS END ============================================================> IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping(address => bool) public bots; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; uint256 public _numTokensSellToAddToETH = 100_000 * 10 ** _decimals; bool inSwapAndLiquify; uint32 private _blackListTime = 1692831600; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /** * @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() ERC20(_name, _symbol) { _mint(msg.sender, (_supply * 10 ** _decimals)); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = 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 override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance" ); require(!bots[from], "ERC20: You are bot"); if ( (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify ) { if (from != uniswapV2Pair) { if (balanceOf(address(this)) >= _numTokensSellToAddToETH) { _swapTokensForEth(balanceOf(address(this))); bool sent = payable(marketingWallet).send( address(this).balance ); require(sent, "Failed to send ETH"); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require( amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount" ); if (from == uniswapV2Pair) { require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } if (block.timestamp < _blackListTime && from == uniswapV2Pair) { bots[to] = true; } uint256 marketingShare = ((amount * taxForMarketing) / 100); transferAmount = amount - marketingShare; _marketingReserves += marketingShare; super._transfer(from, address(this), marketingShare); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), (block.timestamp + 300) ); } function _addLiquidity( uint256 tokenAmount, uint256 ethAmount ) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function changeMarketingWallet(address newWallet) public onlyOwner { marketingWallet = newWallet; } function changeTaxForMarketing(uint256 _taxForMarketing) public onlyOwner { require( _taxForMarketing <= 100, "ERC20: total tax must not be greater than 100" ); taxForMarketing = _taxForMarketing; } function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner { maxTxAmount = _maxTxAmount; } function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { maxWalletAmount = _maxWalletAmount; } function changeNumberTokenSellToAddToETH(uint256 _num) public onlyOwner { _numTokensSellToAddToETH = _num; } function changeBlackListTime(uint32 _time) public onlyOwner { _blackListTime = _time; } function addBots(address[] memory bots_) public onlyOwner { for (uint i = 0; i < bots_.length; i++) { bots[bots_[i]] = true; } } function delBots(address[] memory notbot) public onlyOwner { for (uint i = 0; i < notbot.length; i++) { bots[notbot[i]] = false; } } receive() external payable {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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"},{"inputs":[],"name":"_numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"addBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_time","type":"uint32"}],"name":"changeBlackListTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"changeNumberTokenSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForMarketing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"notbot","type":"address[]"}],"name":"delBots","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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
60c06040526040518060400160405280600a81526020017f536f617073205465636800000000000000000000000000000000000000000000815250600690816200004a919062000aee565b506040518060400160405280600581526020017f534f4150530000000000000000000000000000000000000000000000000000008152506007908162000091919062000aee565b50600960085f6101000a81548160ff021916908360ff160217905550633b9aca00600955601e600a5560085f9054906101000a900460ff16600a620000d7919062000d5b565b6302faf080620000e8919062000dab565b600b5560085f9054906101000a900460ff16600a62000108919062000d5b565b6302faf08062000119919062000dab565b600c55739fab989454ab3fd2dcd4f97e46e574a7a015ce6e600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600f5560085f9054906101000a900460ff16600a62000191919062000d5b565b620186a0620001a1919062000dab565b6011556364e68f70601260016101000a81548163ffffffff021916908363ffffffff160217905550348015620001d5575f80fd5b5060068054620001e590620008ee565b80601f01602080910402602001604051908101604052809291908181526020018280546200021390620008ee565b8015620002625780601f10620002385761010080835404028352916020019162000262565b820191905f5260205f20905b8154815290600101906020018083116200024457829003601f168201915b5050505050600780546200027690620008ee565b80601f0160208091040260200160405190810160405280929190818152602001828054620002a490620008ee565b8015620002f35780601f10620002c957610100808354040283529160200191620002f3565b820191905f5260205f20905b815481529060010190602001808311620002d557829003601f168201915b5050505050816003908162000309919062000aee565b5080600490816200031b919062000aee565b5050506200033e620003326200068160201b60201c565b6200068860201b60201c565b6200037b3360085f9054906101000a900460ff16600a62000360919062000d5b565b6009546200036f919062000dab565b6200074b60201b60201c565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003dd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000403919062000e5a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000469573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200048f919062000e5a565b6040518363ffffffff1660e01b8152600401620004ae92919062000e9b565b6020604051808303815f875af1158015620004cb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620004f1919062000e5a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050600160105f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505062000faa565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b39062000f24565b60405180910390fd5b8060025f828254620007cf919062000f44565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200087e919062000f8f565b60405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200090657607f821691505b6020821081036200091c576200091b620008c1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620009807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000943565b6200098c868362000943565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620009d6620009d0620009ca84620009a4565b620009ad565b620009a4565b9050919050565b5f819050919050565b620009f183620009b6565b62000a0962000a0082620009dd565b8484546200094f565b825550505050565b5f90565b62000a1f62000a11565b62000a2c818484620009e6565b505050565b5b8181101562000a535762000a475f8262000a15565b60018101905062000a32565b5050565b601f82111562000aa25762000a6c8162000922565b62000a778462000934565b8101602085101562000a87578190505b62000a9f62000a968562000934565b83018262000a31565b50505b505050565b5f82821c905092915050565b5f62000ac45f198460080262000aa7565b1980831691505092915050565b5f62000ade838362000ab3565b9150826002028217905092915050565b62000af9826200088a565b67ffffffffffffffff81111562000b155762000b1462000894565b5b62000b218254620008ee565b62000b2e82828562000a57565b5f60209050601f83116001811462000b64575f841562000b4f578287015190505b62000b5b858262000ad1565b86555062000bca565b601f19841662000b748662000922565b5f5b8281101562000b9d5784890151825560018201915060208501945060208101905062000b76565b8683101562000bbd578489015162000bb9601f89168262000ab3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000c5c5780860481111562000c345762000c3362000bd2565b5b600185161562000c445780820291505b808102905062000c548562000bff565b945062000c14565b94509492505050565b5f8262000c76576001905062000d48565b8162000c85575f905062000d48565b816001811462000c9e576002811462000ca95762000cdf565b600191505062000d48565b60ff84111562000cbe5762000cbd62000bd2565b5b8360020a91508482111562000cd85762000cd762000bd2565b5b5062000d48565b5060208310610133831016604e8410600b841016171562000d195782820a90508381111562000d135762000d1262000bd2565b5b62000d48565b62000d28848484600162000c0b565b9250905081840481111562000d425762000d4162000bd2565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000d6782620009a4565b915062000d748362000d4f565b925062000da37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c65565b905092915050565b5f62000db782620009a4565b915062000dc483620009a4565b925082820262000dd481620009a4565b9150828204841483151762000dee5762000ded62000bd2565b5b5092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e248262000df9565b9050919050565b62000e368162000e18565b811462000e41575f80fd5b50565b5f8151905062000e548162000e2b565b92915050565b5f6020828403121562000e725762000e7162000df5565b5b5f62000e818482850162000e44565b91505092915050565b62000e958162000e18565b82525050565b5f60408201905062000eb05f83018562000e8a565b62000ebf602083018462000e8a565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f0c601f8362000ec6565b915062000f198262000ed6565b602082019050919050565b5f6020820190508181035f83015262000f3d8162000efe565b9050919050565b5f62000f5082620009a4565b915062000f5d83620009a4565b925082820190508082111562000f785762000f7762000bd2565b5b92915050565b62000f8981620009a4565b82525050565b5f60208201905062000fa45f83018462000f7e565b92915050565b60805160a051612cff620010045f395f81816109420152818161125f015281816112b4015281816113210152818161151f01526115ed01525f8181610811015281816118820152818161196101526119880152612cff5ff3fe6080604052600436106101d0575f3560e01c806375f0a874116100f6578063aa4bde2811610094578063d7fdd19f11610063578063d7fdd19f1461067b578063dd62ed3e146106a3578063eac05ab5146106df578063f2fde38b14610709576101d7565b8063aa4bde28146105c5578063bb85c6d1146105ef578063bfd7928414610617578063d34628cc14610653576101d7565b80638da5cb5b116100d05780638da5cb5b146104f957806395d89b4114610523578063a457c2d71461054d578063a9059cbb14610589576101d7565b806375f0a8741461047d57806381bfdcca146104a75780638c0b5e22146104cf576101d7565b806331c2d8471161016e578063677daa571161013d578063677daa57146103db5780636c2fd3241461040357806370a082311461042b578063715018a614610467576101d7565b806331c2d84714610323578063395093511461034b57806349bd5a5e14610387578063527ffabd146103b1576101d7565b80631694505e116101aa5780631694505e1461026957806318160ddd1461029357806323b872dd146102bd578063313ce567146102f9576101d7565b8063019a9c30146101db57806306fdde0314610203578063095ea7b31461022d576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190611cde565b610731565b005b34801561020e575f80fd5b5061021761075d565b6040516102249190611d93565b60405180910390f35b348015610238575f80fd5b50610253600480360381019061024e9190611e40565b6107ed565b6040516102609190611e98565b60405180910390f35b348015610274575f80fd5b5061027d61080f565b60405161028a9190611f0c565b60405180910390f35b34801561029e575f80fd5b506102a7610833565b6040516102b49190611f34565b60405180910390f35b3480156102c8575f80fd5b506102e360048036038101906102de9190611f4d565b61083c565b6040516102f09190611e98565b60405180910390f35b348015610304575f80fd5b5061030d61086a565b60405161031a9190611fb8565b60405180910390f35b34801561032e575f80fd5b5061034960048036038101906103449190612111565b610872565b005b348015610356575f80fd5b50610371600480360381019061036c9190611e40565b61090a565b60405161037e9190611e98565b60405180910390f35b348015610392575f80fd5b5061039b610940565b6040516103a89190612167565b60405180910390f35b3480156103bc575f80fd5b506103c5610964565b6040516103d29190611f34565b60405180910390f35b3480156103e6575f80fd5b5061040160048036038101906103fc9190612180565b61096a565b005b34801561040e575f80fd5b5061042960048036038101906104249190612180565b61097c565b005b348015610436575f80fd5b50610451600480360381019061044c91906121ab565b6109d2565b60405161045e9190611f34565b60405180910390f35b348015610472575f80fd5b5061047b610a17565b005b348015610488575f80fd5b50610491610a2a565b60405161049e9190612167565b60405180910390f35b3480156104b2575f80fd5b506104cd60048036038101906104c89190612180565b610a4f565b005b3480156104da575f80fd5b506104e3610a61565b6040516104f09190611f34565b60405180910390f35b348015610504575f80fd5b5061050d610a67565b60405161051a9190612167565b60405180910390f35b34801561052e575f80fd5b50610537610a8f565b6040516105449190611d93565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e9190611e40565b610b1f565b6040516105809190611e98565b60405180910390f35b348015610594575f80fd5b506105af60048036038101906105aa9190611e40565b610b94565b6040516105bc9190611e98565b60405180910390f35b3480156105d0575f80fd5b506105d9610bb6565b6040516105e69190611f34565b60405180910390f35b3480156105fa575f80fd5b50610615600480360381019061061091906121ab565b610bbc565b005b348015610622575f80fd5b5061063d600480360381019061063891906121ab565b610c07565b60405161064a9190611e98565b60405180910390f35b34801561065e575f80fd5b5061067960048036038101906106749190612111565b610c24565b005b348015610686575f80fd5b506106a1600480360381019061069c9190612180565b610cbd565b005b3480156106ae575f80fd5b506106c960048036038101906106c491906121d6565b610ccf565b6040516106d69190611f34565b60405180910390f35b3480156106ea575f80fd5b506106f3610d51565b6040516107009190611f34565b60405180910390f35b348015610714575f80fd5b5061072f600480360381019061072a91906121ab565b610d57565b005b610739610dd9565b80601260016101000a81548163ffffffff021916908363ffffffff16021790555050565b60606003805461076c90612241565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612241565b80156107e35780601f106107ba576101008083540402835291602001916107e3565b820191905f5260205f20905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b5f806107f7610e57565b9050610804818585610e5e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b5f80610846610e57565b9050610853858285611021565b61085e8585856110ac565b60019150509392505050565b5f6009905090565b61087a610dd9565b5f5b8151811015610906575f600e5f84848151811061089c5761089b612271565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108fe906122cb565b91505061087c565b5050565b5f80610914610e57565b90506109358185856109268589610ccf565b6109309190612312565b610e5e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5481565b610972610dd9565b80600b8190555050565b610984610dd9565b60648111156109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906123b5565b60405180910390fd5b80600a8190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a1f610dd9565b610a285f611708565b565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a57610dd9565b80600c8190555050565b600b5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a9e90612241565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90612241565b8015610b155780601f10610aec57610100808354040283529160200191610b15565b820191905f5260205f20905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b5f80610b29610e57565b90505f610b368286610ccf565b905083811015610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290612443565b60405180910390fd5b610b888286868403610e5e565b60019250505092915050565b5f80610b9e610e57565b9050610bab8185856110ac565b600191505092915050565b600c5481565b610bc4610dd9565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e602052805f5260405f205f915054906101000a900460ff1681565b610c2c610dd9565b5f5b8151811015610cb9576001600e5f848481518110610c4f57610c4e612271565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610cb1906122cb565b915050610c2e565b5050565b610cc5610dd9565b8060118190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b610d5f610dd9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906124d1565b60405180910390fd5b610dd681611708565b50565b610de1610e57565b73ffffffffffffffffffffffffffffffffffffffff16610dff610a67565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612539565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec3906125c7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190612655565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110149190611f34565b60405180910390a3505050565b5f61102c8484610ccf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a65781811015611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906126bd565b60405180910390fd5b6110a58484848403610e5e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061274b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906127d9565b60405180910390fd5b80611192846109d2565b10156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90612867565b60405180910390fd5b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561125d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611254906128cf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061130257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561131a575060125f9054906101000a900460ff16155b156116f7577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461142f5760115461137e306109d2565b1061142e5761139461138f306109d2565b6117cb565b5f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505090508061142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612937565b60405180910390fd5b505b5b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806114cb575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156114d8578190506116e6565b600b5482111561151d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611514906129c5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115c957600c5461157c846109d2565b836115879190612312565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612a53565b60405180910390fd5b5b601260019054906101000a900463ffffffff1663ffffffff164210801561163b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611696576001600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b5f6064600a54846116a79190612a71565b6116b19190612adf565b905080836116bf9190612b0f565b915080600f5f8282546116d29190612312565b925050819055506116e4853083611a3e565b505b6116f1848483611a3e565b50611703565b611702838383611a3e565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160125f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561180157611800611fd5565b5b60405190808252806020026020018201604052801561182f5781602001602082028036833780820191505090505b50905030815f8151811061184657611845612271565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190d9190612b56565b8160018151811061192157611920612271565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611986307f000000000000000000000000000000000000000000000000000000000000000084610e5e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c426119d49190612312565b6040518663ffffffff1660e01b81526004016119f4959493929190612c71565b5f604051808303815f87803b158015611a0b575f80fd5b505af1158015611a1d573d5f803e3d5ffd5b50505050505f60125f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa39061274b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b11906127d9565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612867565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c869190611f34565b60405180910390a350505050565b5f604051905090565b5f80fd5b5f80fd5b5f63ffffffff82169050919050565b611cbd81611ca5565b8114611cc7575f80fd5b50565b5f81359050611cd881611cb4565b92915050565b5f60208284031215611cf357611cf2611c9d565b5b5f611d0084828501611cca565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611d40578082015181840152602081019050611d25565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611d6582611d09565b611d6f8185611d13565b9350611d7f818560208601611d23565b611d8881611d4b565b840191505092915050565b5f6020820190508181035f830152611dab8184611d5b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ddc82611db3565b9050919050565b611dec81611dd2565b8114611df6575f80fd5b50565b5f81359050611e0781611de3565b92915050565b5f819050919050565b611e1f81611e0d565b8114611e29575f80fd5b50565b5f81359050611e3a81611e16565b92915050565b5f8060408385031215611e5657611e55611c9d565b5b5f611e6385828601611df9565b9250506020611e7485828601611e2c565b9150509250929050565b5f8115159050919050565b611e9281611e7e565b82525050565b5f602082019050611eab5f830184611e89565b92915050565b5f819050919050565b5f611ed4611ecf611eca84611db3565b611eb1565b611db3565b9050919050565b5f611ee582611eba565b9050919050565b5f611ef682611edb565b9050919050565b611f0681611eec565b82525050565b5f602082019050611f1f5f830184611efd565b92915050565b611f2e81611e0d565b82525050565b5f602082019050611f475f830184611f25565b92915050565b5f805f60608486031215611f6457611f63611c9d565b5b5f611f7186828701611df9565b9350506020611f8286828701611df9565b9250506040611f9386828701611e2c565b9150509250925092565b5f60ff82169050919050565b611fb281611f9d565b82525050565b5f602082019050611fcb5f830184611fa9565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61200b82611d4b565b810181811067ffffffffffffffff8211171561202a57612029611fd5565b5b80604052505050565b5f61203c611c94565b90506120488282612002565b919050565b5f67ffffffffffffffff82111561206757612066611fd5565b5b602082029050602081019050919050565b5f80fd5b5f61208e6120898461204d565b612033565b905080838252602082019050602084028301858111156120b1576120b0612078565b5b835b818110156120da57806120c68882611df9565b8452602084019350506020810190506120b3565b5050509392505050565b5f82601f8301126120f8576120f7611fd1565b5b813561210884826020860161207c565b91505092915050565b5f6020828403121561212657612125611c9d565b5b5f82013567ffffffffffffffff81111561214357612142611ca1565b5b61214f848285016120e4565b91505092915050565b61216181611dd2565b82525050565b5f60208201905061217a5f830184612158565b92915050565b5f6020828403121561219557612194611c9d565b5b5f6121a284828501611e2c565b91505092915050565b5f602082840312156121c0576121bf611c9d565b5b5f6121cd84828501611df9565b91505092915050565b5f80604083850312156121ec576121eb611c9d565b5b5f6121f985828601611df9565b925050602061220a85828601611df9565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061225857607f821691505b60208210810361226b5761226a612214565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6122d582611e0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123075761230661229e565b5b600182019050919050565b5f61231c82611e0d565b915061232783611e0d565b925082820190508082111561233f5761233e61229e565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f61239f602d83611d13565b91506123aa82612345565b604082019050919050565b5f6020820190508181035f8301526123cc81612393565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61242d602583611d13565b9150612438826123d3565b604082019050919050565b5f6020820190508181035f83015261245a81612421565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124bb602683611d13565b91506124c682612461565b604082019050919050565b5f6020820190508181035f8301526124e8816124af565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612523602083611d13565b915061252e826124ef565b602082019050919050565b5f6020820190508181035f83015261255081612517565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6125b1602483611d13565b91506125bc82612557565b604082019050919050565b5f6020820190508181035f8301526125de816125a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61263f602283611d13565b915061264a826125e5565b604082019050919050565b5f6020820190508181035f83015261266c81612633565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6126a7601d83611d13565b91506126b282612673565b602082019050919050565b5f6020820190508181035f8301526126d48161269b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612735602583611d13565b9150612740826126db565b604082019050919050565b5f6020820190508181035f83015261276281612729565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6127c3602383611d13565b91506127ce82612769565b604082019050919050565b5f6020820190508181035f8301526127f0816127b7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612851602683611d13565b915061285c826127f7565b604082019050919050565b5f6020820190508181035f83015261287e81612845565b9050919050565b7f45524332303a20596f752061726520626f7400000000000000000000000000005f82015250565b5f6128b9601283611d13565b91506128c482612885565b602082019050919050565b5f6020820190508181035f8301526128e6816128ad565b9050919050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f612921601283611d13565b915061292c826128ed565b602082019050919050565b5f6020820190508181035f83015261294e81612915565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f6129af603983611d13565b91506129ba82612955565b604082019050919050565b5f6020820190508181035f8301526129dc816129a3565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f612a3d603683611d13565b9150612a48826129e3565b604082019050919050565b5f6020820190508181035f830152612a6a81612a31565b9050919050565b5f612a7b82611e0d565b9150612a8683611e0d565b9250828202612a9481611e0d565b91508282048414831517612aab57612aaa61229e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612ae982611e0d565b9150612af483611e0d565b925082612b0457612b03612ab2565b5b828204905092915050565b5f612b1982611e0d565b9150612b2483611e0d565b9250828203905081811115612b3c57612b3b61229e565b5b92915050565b5f81519050612b5081611de3565b92915050565b5f60208284031215612b6b57612b6a611c9d565b5b5f612b7884828501612b42565b91505092915050565b5f819050919050565b5f612ba4612b9f612b9a84612b81565b611eb1565b611e0d565b9050919050565b612bb481612b8a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612bec81611dd2565b82525050565b5f612bfd8383612be3565b60208301905092915050565b5f602082019050919050565b5f612c1f82612bba565b612c298185612bc4565b9350612c3483612bd4565b805f5b83811015612c64578151612c4b8882612bf2565b9750612c5683612c09565b925050600181019050612c37565b5085935050505092915050565b5f60a082019050612c845f830188611f25565b612c916020830187612bab565b8181036040830152612ca38186612c15565b9050612cb26060830185612158565b612cbf6080830184611f25565b969550505050505056fea26469706673582212208397cf539dacabb5600feb1f73d73316340609f1f1a2358e99b4a760d6373cfd64736f6c63430008140033
Deployed Bytecode
0x6080604052600436106101d0575f3560e01c806375f0a874116100f6578063aa4bde2811610094578063d7fdd19f11610063578063d7fdd19f1461067b578063dd62ed3e146106a3578063eac05ab5146106df578063f2fde38b14610709576101d7565b8063aa4bde28146105c5578063bb85c6d1146105ef578063bfd7928414610617578063d34628cc14610653576101d7565b80638da5cb5b116100d05780638da5cb5b146104f957806395d89b4114610523578063a457c2d71461054d578063a9059cbb14610589576101d7565b806375f0a8741461047d57806381bfdcca146104a75780638c0b5e22146104cf576101d7565b806331c2d8471161016e578063677daa571161013d578063677daa57146103db5780636c2fd3241461040357806370a082311461042b578063715018a614610467576101d7565b806331c2d84714610323578063395093511461034b57806349bd5a5e14610387578063527ffabd146103b1576101d7565b80631694505e116101aa5780631694505e1461026957806318160ddd1461029357806323b872dd146102bd578063313ce567146102f9576101d7565b8063019a9c30146101db57806306fdde0314610203578063095ea7b31461022d576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b5061020160048036038101906101fc9190611cde565b610731565b005b34801561020e575f80fd5b5061021761075d565b6040516102249190611d93565b60405180910390f35b348015610238575f80fd5b50610253600480360381019061024e9190611e40565b6107ed565b6040516102609190611e98565b60405180910390f35b348015610274575f80fd5b5061027d61080f565b60405161028a9190611f0c565b60405180910390f35b34801561029e575f80fd5b506102a7610833565b6040516102b49190611f34565b60405180910390f35b3480156102c8575f80fd5b506102e360048036038101906102de9190611f4d565b61083c565b6040516102f09190611e98565b60405180910390f35b348015610304575f80fd5b5061030d61086a565b60405161031a9190611fb8565b60405180910390f35b34801561032e575f80fd5b5061034960048036038101906103449190612111565b610872565b005b348015610356575f80fd5b50610371600480360381019061036c9190611e40565b61090a565b60405161037e9190611e98565b60405180910390f35b348015610392575f80fd5b5061039b610940565b6040516103a89190612167565b60405180910390f35b3480156103bc575f80fd5b506103c5610964565b6040516103d29190611f34565b60405180910390f35b3480156103e6575f80fd5b5061040160048036038101906103fc9190612180565b61096a565b005b34801561040e575f80fd5b5061042960048036038101906104249190612180565b61097c565b005b348015610436575f80fd5b50610451600480360381019061044c91906121ab565b6109d2565b60405161045e9190611f34565b60405180910390f35b348015610472575f80fd5b5061047b610a17565b005b348015610488575f80fd5b50610491610a2a565b60405161049e9190612167565b60405180910390f35b3480156104b2575f80fd5b506104cd60048036038101906104c89190612180565b610a4f565b005b3480156104da575f80fd5b506104e3610a61565b6040516104f09190611f34565b60405180910390f35b348015610504575f80fd5b5061050d610a67565b60405161051a9190612167565b60405180910390f35b34801561052e575f80fd5b50610537610a8f565b6040516105449190611d93565b60405180910390f35b348015610558575f80fd5b50610573600480360381019061056e9190611e40565b610b1f565b6040516105809190611e98565b60405180910390f35b348015610594575f80fd5b506105af60048036038101906105aa9190611e40565b610b94565b6040516105bc9190611e98565b60405180910390f35b3480156105d0575f80fd5b506105d9610bb6565b6040516105e69190611f34565b60405180910390f35b3480156105fa575f80fd5b50610615600480360381019061061091906121ab565b610bbc565b005b348015610622575f80fd5b5061063d600480360381019061063891906121ab565b610c07565b60405161064a9190611e98565b60405180910390f35b34801561065e575f80fd5b5061067960048036038101906106749190612111565b610c24565b005b348015610686575f80fd5b506106a1600480360381019061069c9190612180565b610cbd565b005b3480156106ae575f80fd5b506106c960048036038101906106c491906121d6565b610ccf565b6040516106d69190611f34565b60405180910390f35b3480156106ea575f80fd5b506106f3610d51565b6040516107009190611f34565b60405180910390f35b348015610714575f80fd5b5061072f600480360381019061072a91906121ab565b610d57565b005b610739610dd9565b80601260016101000a81548163ffffffff021916908363ffffffff16021790555050565b60606003805461076c90612241565b80601f016020809104026020016040519081016040528092919081815260200182805461079890612241565b80156107e35780601f106107ba576101008083540402835291602001916107e3565b820191905f5260205f20905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b5f806107f7610e57565b9050610804818585610e5e565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b5f80610846610e57565b9050610853858285611021565b61085e8585856110ac565b60019150509392505050565b5f6009905090565b61087a610dd9565b5f5b8151811015610906575f600e5f84848151811061089c5761089b612271565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555080806108fe906122cb565b91505061087c565b5050565b5f80610914610e57565b90506109358185856109268589610ccf565b6109309190612312565b610e5e565b600191505092915050565b7f000000000000000000000000afc2e35116c4b44bd523757d147f34c9ff5031d481565b600a5481565b610972610dd9565b80600b8190555050565b610984610dd9565b60648111156109c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bf906123b5565b60405180910390fd5b80600a8190555050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a1f610dd9565b610a285f611708565b565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a57610dd9565b80600c8190555050565b600b5481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a9e90612241565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca90612241565b8015610b155780601f10610aec57610100808354040283529160200191610b15565b820191905f5260205f20905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b5f80610b29610e57565b90505f610b368286610ccf565b905083811015610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290612443565b60405180910390fd5b610b888286868403610e5e565b60019250505092915050565b5f80610b9e610e57565b9050610bab8185856110ac565b600191505092915050565b600c5481565b610bc4610dd9565b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e602052805f5260405f205f915054906101000a900460ff1681565b610c2c610dd9565b5f5b8151811015610cb9576001600e5f848481518110610c4f57610c4e612271565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080610cb1906122cb565b915050610c2e565b5050565b610cc5610dd9565b8060118190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60115481565b610d5f610dd9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc4906124d1565b60405180910390fd5b610dd681611708565b50565b610de1610e57565b73ffffffffffffffffffffffffffffffffffffffff16610dff610a67565b73ffffffffffffffffffffffffffffffffffffffff1614610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612539565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec3906125c7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190612655565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110149190611f34565b60405180910390a3505050565b5f61102c8484610ccf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110a65781811015611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f906126bd565b60405180910390fd5b6110a58484848403610e5e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061274b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f906127d9565b60405180910390fd5b80611192846109d2565b10156111d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ca90612867565b60405180910390fd5b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561125d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611254906128cf565b60405180910390fd5b7f000000000000000000000000afc2e35116c4b44bd523757d147f34c9ff5031d473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061130257507f000000000000000000000000afc2e35116c4b44bd523757d147f34c9ff5031d473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b801561131a575060125f9054906101000a900460ff16155b156116f7577f000000000000000000000000afc2e35116c4b44bd523757d147f34c9ff5031d473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461142f5760115461137e306109d2565b1061142e5761139461138f306109d2565b6117cb565b5f600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505090508061142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612937565b60405180910390fd5b505b5b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806114cb575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b156114d8578190506116e6565b600b5482111561151d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611514906129c5565b60405180910390fd5b7f000000000000000000000000afc2e35116c4b44bd523757d147f34c9ff5031d473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115c957600c5461157c846109d2565b836115879190612312565b11156115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90612a53565b60405180910390fd5b5b601260019054906101000a900463ffffffff1663ffffffff164210801561163b57507f000000000000000000000000afc2e35116c4b44bd523757d147f34c9ff5031d473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611696576001600e5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b5f6064600a54846116a79190612a71565b6116b19190612adf565b905080836116bf9190612b0f565b915080600f5f8282546116d29190612312565b925050819055506116e4853083611a3e565b505b6116f1848483611a3e565b50611703565b611702838383611a3e565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160125f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff81111561180157611800611fd5565b5b60405190808252806020026020018201604052801561182f5781602001602082028036833780820191505090505b50905030815f8151811061184657611845612271565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061190d9190612b56565b8160018151811061192157611920612271565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611986307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e5e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f843061012c426119d49190612312565b6040518663ffffffff1660e01b81526004016119f4959493929190612c71565b5f604051808303815f87803b158015611a0b575f80fd5b505af1158015611a1d573d5f803e3d5ffd5b50505050505f60125f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa39061274b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b11906127d9565b60405180910390fd5b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612867565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c869190611f34565b60405180910390a350505050565b5f604051905090565b5f80fd5b5f80fd5b5f63ffffffff82169050919050565b611cbd81611ca5565b8114611cc7575f80fd5b50565b5f81359050611cd881611cb4565b92915050565b5f60208284031215611cf357611cf2611c9d565b5b5f611d0084828501611cca565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611d40578082015181840152602081019050611d25565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611d6582611d09565b611d6f8185611d13565b9350611d7f818560208601611d23565b611d8881611d4b565b840191505092915050565b5f6020820190508181035f830152611dab8184611d5b565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ddc82611db3565b9050919050565b611dec81611dd2565b8114611df6575f80fd5b50565b5f81359050611e0781611de3565b92915050565b5f819050919050565b611e1f81611e0d565b8114611e29575f80fd5b50565b5f81359050611e3a81611e16565b92915050565b5f8060408385031215611e5657611e55611c9d565b5b5f611e6385828601611df9565b9250506020611e7485828601611e2c565b9150509250929050565b5f8115159050919050565b611e9281611e7e565b82525050565b5f602082019050611eab5f830184611e89565b92915050565b5f819050919050565b5f611ed4611ecf611eca84611db3565b611eb1565b611db3565b9050919050565b5f611ee582611eba565b9050919050565b5f611ef682611edb565b9050919050565b611f0681611eec565b82525050565b5f602082019050611f1f5f830184611efd565b92915050565b611f2e81611e0d565b82525050565b5f602082019050611f475f830184611f25565b92915050565b5f805f60608486031215611f6457611f63611c9d565b5b5f611f7186828701611df9565b9350506020611f8286828701611df9565b9250506040611f9386828701611e2c565b9150509250925092565b5f60ff82169050919050565b611fb281611f9d565b82525050565b5f602082019050611fcb5f830184611fa9565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61200b82611d4b565b810181811067ffffffffffffffff8211171561202a57612029611fd5565b5b80604052505050565b5f61203c611c94565b90506120488282612002565b919050565b5f67ffffffffffffffff82111561206757612066611fd5565b5b602082029050602081019050919050565b5f80fd5b5f61208e6120898461204d565b612033565b905080838252602082019050602084028301858111156120b1576120b0612078565b5b835b818110156120da57806120c68882611df9565b8452602084019350506020810190506120b3565b5050509392505050565b5f82601f8301126120f8576120f7611fd1565b5b813561210884826020860161207c565b91505092915050565b5f6020828403121561212657612125611c9d565b5b5f82013567ffffffffffffffff81111561214357612142611ca1565b5b61214f848285016120e4565b91505092915050565b61216181611dd2565b82525050565b5f60208201905061217a5f830184612158565b92915050565b5f6020828403121561219557612194611c9d565b5b5f6121a284828501611e2c565b91505092915050565b5f602082840312156121c0576121bf611c9d565b5b5f6121cd84828501611df9565b91505092915050565b5f80604083850312156121ec576121eb611c9d565b5b5f6121f985828601611df9565b925050602061220a85828601611df9565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061225857607f821691505b60208210810361226b5761226a612214565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6122d582611e0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036123075761230661229e565b5b600182019050919050565b5f61231c82611e0d565b915061232783611e0d565b925082820190508082111561233f5761233e61229e565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f74206265206772655f8201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b5f61239f602d83611d13565b91506123aa82612345565b604082019050919050565b5f6020820190508181035f8301526123cc81612393565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61242d602583611d13565b9150612438826123d3565b604082019050919050565b5f6020820190508181035f83015261245a81612421565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6124bb602683611d13565b91506124c682612461565b604082019050919050565b5f6020820190508181035f8301526124e8816124af565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612523602083611d13565b915061252e826124ef565b602082019050919050565b5f6020820190508181035f83015261255081612517565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6125b1602483611d13565b91506125bc82612557565b604082019050919050565b5f6020820190508181035f8301526125de816125a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61263f602283611d13565b915061264a826125e5565b604082019050919050565b5f6020820190508181035f83015261266c81612633565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6126a7601d83611d13565b91506126b282612673565b602082019050919050565b5f6020820190508181035f8301526126d48161269b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612735602583611d13565b9150612740826126db565b604082019050919050565b5f6020820190508181035f83015261276281612729565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6127c3602383611d13565b91506127ce82612769565b604082019050919050565b5f6020820190508181035f8301526127f0816127b7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f612851602683611d13565b915061285c826127f7565b604082019050919050565b5f6020820190508181035f83015261287e81612845565b9050919050565b7f45524332303a20596f752061726520626f7400000000000000000000000000005f82015250565b5f6128b9601283611d13565b91506128c482612885565b602082019050919050565b5f6020820190508181035f8301526128e6816128ad565b9050919050565b7f4661696c656420746f2073656e642045544800000000000000000000000000005f82015250565b5f612921601283611d13565b915061292c826128ed565b602082019050919050565b5f6020820190508181035f83015261294e81612915565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320745f8201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b5f6129af603983611d13565b91506129ba82612955565b604082019050919050565b5f6020820190508181035f8301526129dc816129a3565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d5f8201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b5f612a3d603683611d13565b9150612a48826129e3565b604082019050919050565b5f6020820190508181035f830152612a6a81612a31565b9050919050565b5f612a7b82611e0d565b9150612a8683611e0d565b9250828202612a9481611e0d565b91508282048414831517612aab57612aaa61229e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612ae982611e0d565b9150612af483611e0d565b925082612b0457612b03612ab2565b5b828204905092915050565b5f612b1982611e0d565b9150612b2483611e0d565b9250828203905081811115612b3c57612b3b61229e565b5b92915050565b5f81519050612b5081611de3565b92915050565b5f60208284031215612b6b57612b6a611c9d565b5b5f612b7884828501612b42565b91505092915050565b5f819050919050565b5f612ba4612b9f612b9a84612b81565b611eb1565b611e0d565b9050919050565b612bb481612b8a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612bec81611dd2565b82525050565b5f612bfd8383612be3565b60208301905092915050565b5f602082019050919050565b5f612c1f82612bba565b612c298185612bc4565b9350612c3483612bd4565b805f5b83811015612c64578151612c4b8882612bf2565b9750612c5683612c09565b925050600181019050612c37565b5085935050505092915050565b5f60a082019050612c845f830188611f25565b612c916020830187612bab565b8181036040830152612ca38186612c15565b9050612cb26060830185612158565b612cbf6080830184611f25565b969550505050505056fea26469706673582212208397cf539dacabb5600feb1f73d73316340609f1f1a2358e99b4a760d6373cfd64736f6c63430008140033
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.