ERC-20
Overview
Max Total Supply
1,000,000 SEE
Holders
141
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
397.850454488920792782 SEEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SEELABSSEE
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* /* ███████╗███████╗███████╗██╗ █████╗ ██████╗ ███████╗ ██╔════╝██╔════╝██╔════╝██║ ██╔══██╗██╔══██╗██╔════╝ ███████╗█████╗ █████╗ ██║ ███████║██████╔╝███████╗ ╚════██║██╔══╝ ██╔══╝ ██║ ██╔══██║██╔══██╗╚════██║ ███████║███████╗███████╗███████╗██║ ██║██████╔╝███████║ ╚══════╝╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚══════╝ */ /* Transform What You SEE into Reality. X/Twitter: https://x.com/SeeLabsHQ Website: https://seelabs.io Telegram: https://t.me/seelabshq Documentation: https://seelabs.gitbook.io/seelabs/ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.22; import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import "@openzeppelin/[email protected]/access/Ownable.sol"; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract SEELABSSEE is ERC20, Ownable { uint256 private buyTax = 30; uint256 private sellTax = 30; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isExempt; address private immutable taxAddress; uint256 public maxTransaction; uint256 public maxWallet; bool private launch = false; uint256 private blockLaunch; uint256 private lastSellBlock; uint256 private sellCount; uint256 private minSwap; uint256 public maxSwap; uint256 private _buyCount= 0; bool private inSwap; modifier lockSwap { inSwap = true; _; inSwap = false; } constructor() ERC20("SEELABS", "SEE") Ownable() payable { uint256 totalSupply = 1000000 * 10**18; taxAddress = 0x0D7dE2D0c6118BCA9E2790F8e1487ef4A67b7086; isExempt[msg.sender] = true; isExempt[address(this)] = true; isExempt[taxAddress] = true; _mint(address(msg.sender), totalSupply); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = address( IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()) ); maxTransaction = totalSupply * 2 / 100; maxWallet = totalSupply * 2 / 100; maxSwap = totalSupply * 2 / 100; minSwap = totalSupply * 2 / 1000; } function addLiquidity(uint256 tokenAmount) external onlyOwner { tokenAmount = tokenAmount * (10**18); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), tokenAmount, 0, 0, address(owner()), block.timestamp ); } function setMaxCaSwap(uint256 _maxSwap) external onlyOwner{ maxSwap = _maxSwap * 10**decimals(); } function swapTokensEth(uint256 tokenAmount) internal lockSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, taxAddress, block.timestamp ); } function _transfer(address from, address to, uint256 value) internal virtual override { if (!isExempt[from] && !isExempt[to]) { require(launch, "Wait till launch"); uint256 tax = 0; require(value <= maxTransaction, "Exceeds MaxTx Limit"); //sell if (to == uniswapV2Pair) { tax = sellTax; uint256 tokensSwap = balanceOf(address(this)); if (tokensSwap > minSwap && !inSwap) { if (block.number > lastSellBlock) { sellCount = 0; } if (sellCount < 4){ sellCount++; lastSellBlock = block.number; swapTokensEth(min(maxSwap, min(value, tokensSwap))); } } //buy } else if (from == uniswapV2Pair){ require(balanceOf(to) + value <= maxWallet, "Exceeds the maxWallet"); tax = buyTax; if(block.number == blockLaunch){ _buyCount++; tax = 0; if(_buyCount > 27){ tax = 80; } } } uint256 taxAmount = value * tax / 100; uint256 amountAfterTax = value - taxAmount; if (taxAmount > 0){ super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amountAfterTax); return; } super._transfer(from, to, value); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function setMaxTx(uint256 newMaxTx) external onlyOwner { require(newMaxTx* 10**decimals() >= totalSupply()/100); //Protect: MaxTx more then 1% maxTransaction= newMaxTx * 10**decimals(); if(maxWallet < maxTransaction){ maxWallet = maxTransaction; } } function setMaxWallet(uint256 newMaxWallet) external onlyOwner { require(newMaxWallet * 10**decimals() >= totalSupply()/100); //Protect: newMaxWallet more then 1% maxWallet = newMaxWallet * 10**decimals(); } function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner { isExempt[wAddress] = isExcle; } function openTrading() external onlyOwner { launch = true; blockLaunch = block.number; } function setTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner { require(newBuyTax < 20 && newSellTax < 20); //Protect: Tax less then 20% sellTax = newSellTax; buyTax = newBuyTax; } function removeAllLimits() external onlyOwner { maxTransaction = totalSupply(); maxWallet = totalSupply(); } function exportBackETH() external { require(_msgSender() == taxAddress); payable(taxAddress).transfer(address(this).balance); } function triggerSellCA(uint256 amount) external { require(_msgSender() == taxAddress); amount = min(balanceOf(address(this)), amount * 10**decimals()); swapTokensEth(amount); } function burnTokensFromCA(uint256 percent) external { require(_msgSender() == taxAddress); uint256 amount = min(balanceOf(address(this)), (totalSupply() / 100 * percent)); IERC20(address(this)).transfer(0x000000000000000000000000000000000000dEaD, amount); } function clearStuckToken(address tokenAddress, uint256 tokens) external returns (bool success) { require(_msgSender() == taxAddress); if(tokens == 0){ tokens = IERC20(tokenAddress).balanceOf(address(this)); } return IERC20(tokenAddress).transfer(taxAddress, tokens); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":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":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","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":"uint256","name":"percent","type":"uint256"}],"name":"burnTokensFromCA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"clearStuckToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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":[],"name":"exportBackETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCaSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"triggerSellCA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
601e60068190556007908155600d805460ff191690555f60135560a0908152665345454c41425360c81b60c052610120604052600360e08181526253454560e81b610100529061004f83826104b9565b50600461005c82826104b9565b50505061007561007061030760201b60201c565b61030b565b730d7de2d0c6118bca9e2790f8e1487ef4a67b70866080819052335f818152600a60205260408082208054600160ff1991821681179092553084529183208054831682179055939091527f84aa2e28193ea042aa044cdea8c6276052047efec1171a587251ef30dd00a530805490911690921790915569d3c21bcecceda100000090610101908261035c565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015610163573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101879190610573565b6001600160a01b031663c9c653963060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061020a9190610573565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610254573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102789190610573565b600980546001600160a01b0319166001600160a01b039290921691909117905560646102a58260026105b4565b6102af91906105d1565b600b5560646102bf8260026105b4565b6102c991906105d1565b600c5560646102d98260026105b4565b6102e391906105d1565b6012556103e86102f48260026105b4565b6102fe91906105d1565b60115550610603565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166103b65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546103c791906105f0565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061044a57607f821691505b60208210810361046857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561041d57805f5260205f20601f840160051c810160208510156104935750805b601f840160051c820191505b818110156104b2575f815560010161049f565b5050505050565b81516001600160401b038111156104d2576104d2610422565b6104e6816104e08454610436565b8461046e565b6020601f821160018114610518575f83156105015750848201515b5f19600385901b1c1916600184901b1784556104b2565b5f84815260208120601f198516915b828110156105475787850151825560209485019460019092019101610527565b508482101561056457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215610583575f80fd5b81516001600160a01b0381168114610599575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176105cb576105cb6105a0565b92915050565b5f826105eb57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156105cb576105cb6105a0565b6080516119826106455f395f818161066c015281816106aa015281816108bc0152818161097401528181610a0601528181610b60015261132b01526119825ff3fe6080604052600436106101d3575f3560e01c80638da5cb5b116100fd578063bc33718211610092578063db05e5cb11610062578063db05e5cb14610535578063dd62ed3e14610549578063f2fde38b14610568578063f8b45b0514610587575f80fd5b8063bc337182146104d8578063c3f70b52146104f7578063c4918b4e1461050c578063c9567bf914610521575f80fd5b8063a6ec514f116100cd578063a6ec514f1461044d578063a9059cbb1461046c578063aca2cd6e1461048b578063ad5dff73146104aa575f80fd5b80638da5cb5b146103de57806395d89b41146103fb578063a1d3597f1461040f578063a457c2d71461042e575f80fd5b80633950935111610173578063667f652611610143578063667f65261461035857806370a0823114610377578063715018a6146103ab57806377b54bad146103bf575f80fd5b806339509351146102c457806349bd5a5e146102e357806351c6590a1461031a5780635d0044ca14610339575f80fd5b806318160ddd116101ae57806318160ddd146102585780631d42e69d1461027657806323b872dd1461028a578063313ce567146102a9575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611532565b61059c565b005b34801561020a575f80fd5b506102136105c0565b6040516102209190611549565b60405180910390f35b348015610234575f80fd5b50610248610243366004611592565b610650565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b506101fd610669565b348015610295575f80fd5b506102486102a43660046115bc565b6106f2565b3480156102b4575f80fd5b5060405160128152602001610220565b3480156102cf575f80fd5b506102486102de366004611592565b610715565b3480156102ee575f80fd5b50600954610302906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610325575f80fd5b506101fd610334366004611532565b610736565b348015610344575f80fd5b506101fd610353366004611532565b610824565b348015610363575f80fd5b506101fd6103723660046115fa565b61087d565b348015610382575f80fd5b5061026861039136600461161a565b6001600160a01b03165f9081526020819052604090205490565b3480156103b6575f80fd5b506101fd6108a5565b3480156103ca575f80fd5b506102486103d9366004611592565b6108b8565b3480156103e9575f80fd5b506005546001600160a01b0316610302565b348015610406575f80fd5b506102136109f4565b34801561041a575f80fd5b506101fd610429366004611532565b610a03565b348015610439575f80fd5b50610248610448366004611592565b610ade565b348015610458575f80fd5b506101fd610467366004611532565b610b5d565b348015610477575f80fd5b50610248610486366004611592565b610bc5565b348015610496575f80fd5b506101fd6104a5366004611642565b610bd2565b3480156104b5575f80fd5b506102486104c436600461161a565b600a6020525f908152604090205460ff1681565b3480156104e3575f80fd5b506101fd6104f2366004611532565b610c04565b348015610502575f80fd5b50610268600b5481565b348015610517575f80fd5b5061026860125481565b34801561052c575f80fd5b506101fd610c6e565b348015610540575f80fd5b506101fd610c89565b348015610554575f80fd5b50610268610563366004611679565b610c9f565b348015610573575f80fd5b506101fd61058236600461161a565b610cc9565b348015610592575f80fd5b50610268600c5481565b6105a4610d3f565b6105b06012600a61179c565b6105ba90826117aa565b60125550565b6060600380546105cf906117c1565b80601f01602080910402602001604051908101604052809291908181526020018280546105fb906117c1565b80156106465780601f1061061d57610100808354040283529160200191610646565b820191905f5260205f20905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b5f3361065d818585610d99565b60019150505b92915050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461069d575f80fd5b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02915f818181858888f193505050501580156106ef573d5f803e3d5ffd5b50565b5f336106ff858285610ebc565b61070a858585610f2e565b506001949350505050565b5f3361065d8185856107278383610c9f565b61073191906117f3565b610d99565b61073e610d3f565b61075081670de0b6b3a76400006117aa565b60085490915061076b9030906001600160a01b031683610d99565b6008546001600160a01b031663f305d7194730845f806107936005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107f9573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061081e9190611806565b50505050565b61082c610d3f565b606461083760025490565b6108419190611831565b61084d6012600a61179c565b61085790836117aa565b1015610861575f80fd5b61086d6012600a61179c565b61087790826117aa565b600c5550565b610885610d3f565b6014821080156108955750601481105b61089d575f80fd5b600755600655565b6108ad610d3f565b6108b65f6111a5565b565b5f337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146108ed575f80fd5b815f0361095d576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610936573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095a9190611850565b91505b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af11580156109c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ed9190611867565b9392505050565b6060600480546105cf906117c1565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610a37575f80fd5b305f90815260208190526040812054610a6f90836064610a5660025490565b610a609190611831565b610a6a91906117aa565b6111f6565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ab5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad99190611867565b505050565b5f3381610aeb8286610c9f565b905083811015610b505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61070a8286868403610d99565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610b91575f80fd5b305f90815260208190526040902054610bba90610bb06012600a61179c565b610a6a90846117aa565b90506106ef8161120a565b5f3361065d818585610f2e565b610bda610d3f565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b610c0c610d3f565b6064610c1760025490565b610c219190611831565b610c2d6012600a61179c565b610c3790836117aa565b1015610c41575f80fd5b610c4d6012600a61179c565b610c5790826117aa565b600b819055600c5410156106ef57600b54600c5550565b610c76610d3f565b600d805460ff1916600117905543600e55565b610c91610d3f565b600254600b55600254600c55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610cd1610d3f565b6001600160a01b038116610d365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b47565b6106ef816111a5565b6005546001600160a01b031633146108b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b47565b6001600160a01b038316610dfb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b47565b6001600160a01b038216610e5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b47565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610ec78484610c9f565b90505f19811461081e5781811015610f215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b47565b61081e8484848403610d99565b6001600160a01b0383165f908152600a602052604090205460ff16158015610f6e57506001600160a01b0382165f908152600a602052604090205460ff16155b1561119a57600d5460ff16610fb85760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b6044820152606401610b47565b5f600b548211156110015760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b6044820152606401610b47565b6009546001600160a01b03908116908416036110955750600754305f908152602081905260409020546011548111801561103e575060145460ff16155b1561108f57600f54431115611052575f6010555b6004601054101561108f5760108054905f61106c83611882565b909155505043600f5560125461108f9061108a90610a6a86856111f6565b61120a565b50611150565b6009546001600160a01b039081169085160361115057600c54826110cd856001600160a01b03165f9081526020819052604090205490565b6110d791906117f3565b111561111d5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b6044820152606401610b47565b50600654600e5443036111505760138054905f61113983611882565b91905055505f9050601b6013541115611150575060505b5f606461115d83856117aa565b6111679190611831565b90505f611174828561189a565b9050811561118757611187863084611390565b611192868683611390565b505050505050565b610ad9838383611390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f81831161120457826109ed565b50919050565b6014805460ff1916600117905560085461122f9030906001600160a01b031683610d99565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611262576112626118ad565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112dd91906118c1565b816001815181106112f0576112f06118ad565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac947906113559085905f9086907f00000000000000000000000000000000000000000000000000000000000000009042906004016118dc565b5f604051808303815f87803b15801561136c575f80fd5b505af115801561137e573d5f803e3d5ffd5b50506014805460ff1916905550505050565b6001600160a01b0383166113f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b47565b6001600160a01b0382166114565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b47565b6001600160a01b0383165f90815260208190526040902054818110156114cd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b47565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361081e565b5f60208284031215611542575f80fd5b5035919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146106ef575f80fd5b5f80604083850312156115a3575f80fd5b82356115ae8161157e565b946020939093013593505050565b5f805f606084860312156115ce575f80fd5b83356115d98161157e565b925060208401356115e98161157e565b929592945050506040919091013590565b5f806040838503121561160b575f80fd5b50508035926020909101359150565b5f6020828403121561162a575f80fd5b81356109ed8161157e565b80151581146106ef575f80fd5b5f8060408385031215611653575f80fd5b823561165e8161157e565b9150602083013561166e81611635565b809150509250929050565b5f806040838503121561168a575f80fd5b82356116958161157e565b9150602083013561166e8161157e565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156116f4578085048111156116d8576116d86116a5565b60018416156116e657908102905b60019390931c9280026116bd565b935093915050565b5f8261170a57506001610663565b8161171657505f610663565b816001811461172c576002811461173657611752565b6001915050610663565b60ff841115611747576117476116a5565b50506001821b610663565b5060208310610133831016604e8410600b8410161715611775575081810a610663565b6117815f1984846116b9565b805f1904821115611794576117946116a5565b029392505050565b5f6109ed60ff8416836116fc565b8082028115828204841417610663576106636116a5565b600181811c908216806117d557607f821691505b60208210810361120457634e487b7160e01b5f52602260045260245ffd5b80820180821115610663576106636116a5565b5f805f60608486031215611818575f80fd5b5050815160208301516040909301519094929350919050565b5f8261184b57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611860575f80fd5b5051919050565b5f60208284031215611877575f80fd5b81516109ed81611635565b5f60018201611893576118936116a5565b5060010190565b81810381811115610663576106636116a5565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156118d1575f80fd5b81516109ed8161157e565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561192c5783516001600160a01b0316835260209384019390920191600101611905565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212209f08bfb769ad1daa49c14b63711a42fc0b28427a5882daa72e50dd23fe38069864736f6c634300081a0033
Deployed Bytecode
0x6080604052600436106101d3575f3560e01c80638da5cb5b116100fd578063bc33718211610092578063db05e5cb11610062578063db05e5cb14610535578063dd62ed3e14610549578063f2fde38b14610568578063f8b45b0514610587575f80fd5b8063bc337182146104d8578063c3f70b52146104f7578063c4918b4e1461050c578063c9567bf914610521575f80fd5b8063a6ec514f116100cd578063a6ec514f1461044d578063a9059cbb1461046c578063aca2cd6e1461048b578063ad5dff73146104aa575f80fd5b80638da5cb5b146103de57806395d89b41146103fb578063a1d3597f1461040f578063a457c2d71461042e575f80fd5b80633950935111610173578063667f652611610143578063667f65261461035857806370a0823114610377578063715018a6146103ab57806377b54bad146103bf575f80fd5b806339509351146102c457806349bd5a5e146102e357806351c6590a1461031a5780635d0044ca14610339575f80fd5b806318160ddd116101ae57806318160ddd146102585780631d42e69d1461027657806323b872dd1461028a578063313ce567146102a9575f80fd5b8063027cc97a146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611532565b61059c565b005b34801561020a575f80fd5b506102136105c0565b6040516102209190611549565b60405180910390f35b348015610234575f80fd5b50610248610243366004611592565b610650565b6040519015158152602001610220565b348015610263575f80fd5b506002545b604051908152602001610220565b348015610281575f80fd5b506101fd610669565b348015610295575f80fd5b506102486102a43660046115bc565b6106f2565b3480156102b4575f80fd5b5060405160128152602001610220565b3480156102cf575f80fd5b506102486102de366004611592565b610715565b3480156102ee575f80fd5b50600954610302906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b348015610325575f80fd5b506101fd610334366004611532565b610736565b348015610344575f80fd5b506101fd610353366004611532565b610824565b348015610363575f80fd5b506101fd6103723660046115fa565b61087d565b348015610382575f80fd5b5061026861039136600461161a565b6001600160a01b03165f9081526020819052604090205490565b3480156103b6575f80fd5b506101fd6108a5565b3480156103ca575f80fd5b506102486103d9366004611592565b6108b8565b3480156103e9575f80fd5b506005546001600160a01b0316610302565b348015610406575f80fd5b506102136109f4565b34801561041a575f80fd5b506101fd610429366004611532565b610a03565b348015610439575f80fd5b50610248610448366004611592565b610ade565b348015610458575f80fd5b506101fd610467366004611532565b610b5d565b348015610477575f80fd5b50610248610486366004611592565b610bc5565b348015610496575f80fd5b506101fd6104a5366004611642565b610bd2565b3480156104b5575f80fd5b506102486104c436600461161a565b600a6020525f908152604090205460ff1681565b3480156104e3575f80fd5b506101fd6104f2366004611532565b610c04565b348015610502575f80fd5b50610268600b5481565b348015610517575f80fd5b5061026860125481565b34801561052c575f80fd5b506101fd610c6e565b348015610540575f80fd5b506101fd610c89565b348015610554575f80fd5b50610268610563366004611679565b610c9f565b348015610573575f80fd5b506101fd61058236600461161a565b610cc9565b348015610592575f80fd5b50610268600c5481565b6105a4610d3f565b6105b06012600a61179c565b6105ba90826117aa565b60125550565b6060600380546105cf906117c1565b80601f01602080910402602001604051908101604052809291908181526020018280546105fb906117c1565b80156106465780601f1061061d57610100808354040283529160200191610646565b820191905f5260205f20905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b5f3361065d818585610d99565b60019150505b92915050565b337f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b70866001600160a01b03161461069d575f80fd5b6040516001600160a01b037f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b708616904780156108fc02915f818181858888f193505050501580156106ef573d5f803e3d5ffd5b50565b5f336106ff858285610ebc565b61070a858585610f2e565b506001949350505050565b5f3361065d8185856107278383610c9f565b61073191906117f3565b610d99565b61073e610d3f565b61075081670de0b6b3a76400006117aa565b60085490915061076b9030906001600160a01b031683610d99565b6008546001600160a01b031663f305d7194730845f806107936005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156107f9573d5f803e3d5ffd5b50505050506040513d601f19601f8201168201806040525081019061081e9190611806565b50505050565b61082c610d3f565b606461083760025490565b6108419190611831565b61084d6012600a61179c565b61085790836117aa565b1015610861575f80fd5b61086d6012600a61179c565b61087790826117aa565b600c5550565b610885610d3f565b6014821080156108955750601481105b61089d575f80fd5b600755600655565b6108ad610d3f565b6108b65f6111a5565b565b5f337f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b70866001600160a01b0316146108ed575f80fd5b815f0361095d576040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610936573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095a9190611850565b91505b60405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b7086811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af11580156109c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ed9190611867565b9392505050565b6060600480546105cf906117c1565b337f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b70866001600160a01b031614610a37575f80fd5b305f90815260208190526040812054610a6f90836064610a5660025490565b610a609190611831565b610a6a91906117aa565b6111f6565b60405163a9059cbb60e01b815261dead600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610ab5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad99190611867565b505050565b5f3381610aeb8286610c9f565b905083811015610b505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61070a8286868403610d99565b337f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b70866001600160a01b031614610b91575f80fd5b305f90815260208190526040902054610bba90610bb06012600a61179c565b610a6a90846117aa565b90506106ef8161120a565b5f3361065d818585610f2e565b610bda610d3f565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b610c0c610d3f565b6064610c1760025490565b610c219190611831565b610c2d6012600a61179c565b610c3790836117aa565b1015610c41575f80fd5b610c4d6012600a61179c565b610c5790826117aa565b600b819055600c5410156106ef57600b54600c5550565b610c76610d3f565b600d805460ff1916600117905543600e55565b610c91610d3f565b600254600b55600254600c55565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610cd1610d3f565b6001600160a01b038116610d365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b47565b6106ef816111a5565b6005546001600160a01b031633146108b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b47565b6001600160a01b038316610dfb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b47565b6001600160a01b038216610e5c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b47565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610ec78484610c9f565b90505f19811461081e5781811015610f215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b47565b61081e8484848403610d99565b6001600160a01b0383165f908152600a602052604090205460ff16158015610f6e57506001600160a01b0382165f908152600a602052604090205460ff16155b1561119a57600d5460ff16610fb85760405162461bcd60e51b815260206004820152601060248201526f0aec2d2e840e8d2d8d840d8c2eadcc6d60831b6044820152606401610b47565b5f600b548211156110015760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc813585e151e08131a5b5a5d606a1b6044820152606401610b47565b6009546001600160a01b03908116908416036110955750600754305f908152602081905260409020546011548111801561103e575060145460ff16155b1561108f57600f54431115611052575f6010555b6004601054101561108f5760108054905f61106c83611882565b909155505043600f5560125461108f9061108a90610a6a86856111f6565b61120a565b50611150565b6009546001600160a01b039081169085160361115057600c54826110cd856001600160a01b03165f9081526020819052604090205490565b6110d791906117f3565b111561111d5760405162461bcd60e51b8152602060048201526015602482015274115e18d959591cc81d1a19481b585e15d85b1b195d605a1b6044820152606401610b47565b50600654600e5443036111505760138054905f61113983611882565b91905055505f9050601b6013541115611150575060505b5f606461115d83856117aa565b6111679190611831565b90505f611174828561189a565b9050811561118757611187863084611390565b611192868683611390565b505050505050565b610ad9838383611390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f81831161120457826109ed565b50919050565b6014805460ff1916600117905560085461122f9030906001600160a01b031683610d99565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611262576112626118ad565b6001600160a01b03928316602091820292909201810191909152600854604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156112b9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112dd91906118c1565b816001815181106112f0576112f06118ad565b6001600160a01b03928316602091820292909201015260085460405163791ac94760e01b815291169063791ac947906113559085905f9086907f0000000000000000000000000d7de2d0c6118bca9e2790f8e1487ef4a67b70869042906004016118dc565b5f604051808303815f87803b15801561136c575f80fd5b505af115801561137e573d5f803e3d5ffd5b50506014805460ff1916905550505050565b6001600160a01b0383166113f45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610b47565b6001600160a01b0382166114565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610b47565b6001600160a01b0383165f90815260208190526040902054818110156114cd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b47565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361081e565b5f60208284031215611542575f80fd5b5035919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b03811681146106ef575f80fd5b5f80604083850312156115a3575f80fd5b82356115ae8161157e565b946020939093013593505050565b5f805f606084860312156115ce575f80fd5b83356115d98161157e565b925060208401356115e98161157e565b929592945050506040919091013590565b5f806040838503121561160b575f80fd5b50508035926020909101359150565b5f6020828403121561162a575f80fd5b81356109ed8161157e565b80151581146106ef575f80fd5b5f8060408385031215611653575f80fd5b823561165e8161157e565b9150602083013561166e81611635565b809150509250929050565b5f806040838503121561168a575f80fd5b82356116958161157e565b9150602083013561166e8161157e565b634e487b7160e01b5f52601160045260245ffd5b6001815b60018411156116f4578085048111156116d8576116d86116a5565b60018416156116e657908102905b60019390931c9280026116bd565b935093915050565b5f8261170a57506001610663565b8161171657505f610663565b816001811461172c576002811461173657611752565b6001915050610663565b60ff841115611747576117476116a5565b50506001821b610663565b5060208310610133831016604e8410600b8410161715611775575081810a610663565b6117815f1984846116b9565b805f1904821115611794576117946116a5565b029392505050565b5f6109ed60ff8416836116fc565b8082028115828204841417610663576106636116a5565b600181811c908216806117d557607f821691505b60208210810361120457634e487b7160e01b5f52602260045260245ffd5b80820180821115610663576106636116a5565b5f805f60608486031215611818575f80fd5b5050815160208301516040909301519094929350919050565b5f8261184b57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611860575f80fd5b5051919050565b5f60208284031215611877575f80fd5b81516109ed81611635565b5f60018201611893576118936116a5565b5060010190565b81810381811115610663576106636116a5565b634e487b7160e01b5f52603260045260245ffd5b5f602082840312156118d1575f80fd5b81516109ed8161157e565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561192c5783516001600160a01b0316835260209384019390920191600101611905565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212209f08bfb769ad1daa49c14b63711a42fc0b28427a5882daa72e50dd23fe38069864736f6c634300081a0033
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.