ERC-20
Overview
Max Total Supply
9,876,543,210 BLOBBY
Holders
245
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.766006813 BLOBBYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MrBlobby
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IFactory{ function createPair(address tokenA, address tokenB) external returns (address pair); } interface IRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external; } library Address{ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } } contract MrBlobby is ERC20, Ownable{ using Address for address payable; mapping (address user => bool status) public exemptFee; mapping (address user => bool status) public isBlacklisted; IRouter public router; address public pair; address public marketingWallet; bool private swapping; bool public swapEnabled; bool public tradingEnabled; uint256 public swapThreshold = 5_000_000 * 10**9; uint256 public maxWallet = 98_760_000 * 10**9; struct Taxes { uint128 buy; uint128 sell; } Taxes public taxes = Taxes(10, 40); modifier mutexLock() { if (!swapping) { swapping = true; _; swapping = false; } } constructor(address _router, address _marketingWallet, string memory _name, string memory _symbol) ERC20(_name, _symbol) { _mint(msg.sender, 9_876_543_210 * 10 ** 9); router = IRouter(_router); pair = IFactory(router.factory()).createPair(address(this), router.WETH()); marketingWallet = _marketingWallet; exemptFee[address(this)] = true; exemptFee[msg.sender] = true; exemptFee[_marketingWallet] = true; _approve(address(this), _router, type(uint256).max); } function decimals() public override pure returns(uint8){ return 9; } function _transfer(address sender, address recipient, uint256 amount) internal override { require(amount > 0, "Transfer amount must be greater than zero"); if (swapping || exemptFee[sender] || exemptFee[recipient]) { super._transfer(sender, recipient, amount); return; } else{ require(tradingEnabled, "Trading not enabled"); require(!isBlacklisted[sender] && !isBlacklisted[recipient], "Blacklisted address"); if (recipient != pair) { require(balanceOf(recipient) + amount <= maxWallet, "Wallet limit exceeded"); } } uint256 fees; if(recipient == pair) fees = amount * taxes.sell / 100; else if(sender == pair) fees = amount * taxes.buy / 100; if (swapEnabled && sender != pair) swapFees(); super._transfer(sender, recipient, amount - fees); if(fees > 0){ super._transfer(sender, address(this), fees); } } function swapFees() private mutexLock { uint256 contractBalance = balanceOf(address(this)); if (contractBalance >= swapThreshold) { uint256 initialBalance = address(this).balance; swapTokensForEth(swapThreshold); uint256 deltaBalance = address(this).balance - initialBalance; payable(marketingWallet).sendValue(deltaBalance); } } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp); } function setSwapEnabled(bool status) external onlyOwner { swapEnabled = status; } function setSwapTreshhold(uint256 amount) external onlyOwner { swapThreshold = amount * 10 ** decimals(); } function setTaxes(uint128 _buyTax, uint128 _sellTax) external onlyOwner { taxes = Taxes(_buyTax, _sellTax); } function setRouterAndPair(address newRouter, address newPair) external onlyOwner{ router = IRouter(newRouter); pair = newPair; _approve(address(this), address(newRouter), type(uint256).max); } function setTradingStatus(bool status) external onlyOwner{ tradingEnabled = status; swapEnabled = status; } function setMaxWallet(uint256 _maxWallet) external onlyOwner{ maxWallet = _maxWallet * 10 ** decimals(); } function setMarketingWallet(address newWallet) external onlyOwner{ marketingWallet = newWallet; } function setExemptFee(address _address, bool state) external onlyOwner { exemptFee[_address] = state; } function bulkExemptFee(address[] memory accounts, bool state) external onlyOwner{ for(uint256 i = 0; i < accounts.length; i++){ exemptFee[accounts[i]] = state; } } function setBlacklist(address[] memory accounts, bool status) external onlyOwner{ for(uint256 i = 0; i < accounts.length; i++){ isBlacklisted[accounts[i]] = status; } } function rescueETH(uint256 weiAmount) external onlyOwner{ payable(msg.sender).sendValue(weiAmount); } function rescueERC20(address tokenAdd, uint256 amount) external onlyOwner{ IERC20(tokenAdd).transfer(msg.sender, amount); } // fallbacks receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":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":"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":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"user","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"},{"internalType":"address","name":"newPair","type":"address"}],"name":"setRouterAndPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_buyTax","type":"uint128"},{"internalType":"uint128","name":"_sellTax","type":"uint128"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint128","name":"buy","type":"uint128"},{"internalType":"uint128","name":"sell","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6611c37937e08000600b5567015eddb25e048000600c5560c0604052600a608052602860a05270280000000000000000000000000000000a600d553480156200004757600080fd5b5060405162002994380380620029948339810160408190526200006a9162000608565b818160036200007a838262000726565b50600462000089828262000726565b505050620000a6620000a0620002ba60201b60201c565b620002be565b620000ba3367891087b8a8d8a40062000310565b600880546001600160a01b0319166001600160a01b0386169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013a9190620007f2565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c39190620007f2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000211573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002379190620007f2565b600980546001600160a01b039283166001600160a01b031991821617909155600a8054928616929091168217905530600081815260066020526040808220805460ff19908116600190811790925533845282842080548216831790559483529120805490931617909155620002b09085600019620003f9565b505050506200083f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200036c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000380919062000817565b90915550506001600160a01b03821660009081526020819052604081208054839290620003af90849062000817565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166200045d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000363565b6001600160a01b038216620004c05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000363565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b80516001600160a01b03811681146200053e57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200056b57600080fd5b81516001600160401b038082111562000588576200058862000543565b604051601f8301601f19908116603f01168101908282118183101715620005b357620005b362000543565b81604052838152602092508683858801011115620005d057600080fd5b600091505b83821015620005f45785820183015181830184015290820190620005d5565b600093810190920192909252949350505050565b600080600080608085870312156200061f57600080fd5b6200062a8562000526565b93506200063a6020860162000526565b60408601519093506001600160401b03808211156200065857600080fd5b620006668883890162000559565b935060608701519150808211156200067d57600080fd5b506200068c8782880162000559565b91505092959194509250565b600181811c90821680620006ad57607f821691505b602082108103620006ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052157600081815260208120601f850160051c81016020861015620006fd5750805b601f850160051c820191505b818110156200071e5782815560010162000709565b505050505050565b81516001600160401b0381111562000742576200074262000543565b6200075a8162000753845462000698565b84620006d4565b602080601f831160018114620007925760008415620007795750858301515b600019600386901b1c1916600185901b1785556200071e565b600085815260208120601f198616915b82811015620007c357888601518255948401946001909101908401620007a2565b5085821015620007e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080557600080fd5b620008108262000526565b9392505050565b808201808211156200083957634e487b7160e01b600052601160045260246000fd5b92915050565b612145806200084f6000396000f3fe6080604052600436106102535760003560e01c8063715018a611610138578063a9059cbb116100b0578063e01af92c1161007f578063f887ea4011610064578063f887ea4014610718578063f8b45b0514610738578063fe575a871461074e57600080fd5b8063e01af92c146106d8578063f2fde38b146106f857600080fd5b8063a9059cbb14610622578063b5d7ab9a14610642578063c5d32bb214610662578063dd62ed3e1461069257600080fd5b80638da5cb5b116101075780639e252f00116100ec5780639e252f00146105c2578063a457c2d7146105e2578063a8aa1b311461060257600080fd5b80638da5cb5b1461058f57806395d89b41146105ad57600080fd5b8063715018a6146104c5578063728f8eea146104da57806375f0a874146105375780638cd4426d1461056f57600080fd5b8063313ce567116101cb5780634ada218b1161019a5780635d098b381161017f5780635d098b381461044e5780636ddd17131461046e57806370a082311461048f57600080fd5b80634ada218b1461040d5780635d0044ca1461042e57600080fd5b8063313ce56714610391578063379ba1d9146103ad57806339509351146103cd5780634a14c4c6146103ed57600080fd5b80630e375a5c1161022257806318160ddd1161020757806318160ddd1461033c57806323b872dd14610351578063255f40b61461037157600080fd5b80630e375a5c146102fc5780630e85d1e31461031c57600080fd5b80630445b6671461025f57806304fb2ebe1461028857806306fdde03146102aa578063095ea7b3146102cc57600080fd5b3661025a57005b600080fd5b34801561026b57600080fd5b50610275600b5481565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004611b9e565b61077e565b005b3480156102b657600080fd5b506102bf610806565b60405161027f9190611bd1565b3480156102d857600080fd5b506102ec6102e7366004611c3f565b610898565b604051901515815260200161027f565b34801561030857600080fd5b506102a8610317366004611c9a565b6108b2565b34801561032857600080fd5b506102a8610337366004611c9a565b610966565b34801561034857600080fd5b50600254610275565b34801561035d57600080fd5b506102ec61036c366004611d71565b610a15565b34801561037d57600080fd5b506102a861038c366004611db2565b610a39565b34801561039d57600080fd5b506040516009815260200161027f565b3480156103b957600080fd5b506102a86103c8366004611deb565b610acf565b3480156103d957600080fd5b506102ec6103e8366004611c3f565b610b61565b3480156103f957600080fd5b506102a8610408366004611e0f565b610ba0565b34801561041957600080fd5b50600a546102ec90600160b01b900460ff1681565b34801561043a57600080fd5b506102a8610449366004611e3d565b610c13565b34801561045a57600080fd5b506102a8610469366004611e56565b610c77565b34801561047a57600080fd5b50600a546102ec90600160a81b900460ff1681565b34801561049b57600080fd5b506102756104aa366004611e56565b6001600160a01b031660009081526020819052604090205490565b3480156104d157600080fd5b506102a8610cee565b3480156104e657600080fd5b50600d5461050e906fffffffffffffffffffffffffffffffff80821691600160801b90041682565b604080516fffffffffffffffffffffffffffffffff93841681529290911660208301520161027f565b34801561054357600080fd5b50600a54610557906001600160a01b031681565b6040516001600160a01b03909116815260200161027f565b34801561057b57600080fd5b506102a861058a366004611c3f565b610d42565b34801561059b57600080fd5b506005546001600160a01b0316610557565b3480156105b957600080fd5b506102bf610e14565b3480156105ce57600080fd5b506102a86105dd366004611e3d565b610e23565b3480156105ee57600080fd5b506102ec6105fd366004611c3f565b610e78565b34801561060e57600080fd5b50600954610557906001600160a01b031681565b34801561062e57600080fd5b506102ec61063d366004611c3f565b610f22565b34801561064e57600080fd5b506102a861065d366004611e3d565b610f30565b34801561066e57600080fd5b506102ec61067d366004611e56565b60066020526000908152604090205460ff1681565b34801561069e57600080fd5b506102756106ad366004611db2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102a86106f3366004611deb565b610f94565b34801561070457600080fd5b506102a8610713366004611e56565b610ffa565b34801561072457600080fd5b50600854610557906001600160a01b031681565b34801561074457600080fd5b50610275600c5481565b34801561075a57600080fd5b506102ec610769366004611e56565b60076020526000908152604090205460ff1681565b6005546001600160a01b031633146107cb5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064015b60405180910390fd5b604080518082019091526fffffffffffffffffffffffffffffffff928316808252919092166020909201829052600160801b90910217600d55565b60606003805461081590611e73565b80601f016020809104026020016040519081016040528092919081815260200182805461084190611e73565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a68185856110c7565b60019150505b92915050565b6005546001600160a01b031633146108fa5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b60005b825181101561096157816006600085848151811061091d5761091d611ead565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061095981611ed9565b9150506108fd565b505050565b6005546001600160a01b031633146109ae5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b60005b82518110156109615781600760008584815181106109d1576109d1611ead565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a0d81611ed9565b9150506109b1565b600033610a2385828561121f565b610a2e8585856112b1565b506001949350505050565b6005546001600160a01b03163314610a815760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600880546001600160a01b0380851673ffffffffffffffffffffffffffffffffffffffff19928316179092556009805492841692909116919091179055610acb30836000196110c7565b5050565b6005546001600160a01b03163314610b175760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600a80547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16600160b01b92151592830260ff60a81b191617600160a81b92909202919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108a69082908690610b9b908790611ef2565b6110c7565b6005546001600160a01b03163314610be85760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c5b5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610c676009600a611fe9565b610c719082611ff8565b600c5550565b6005546001600160a01b03163314610cbf5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d365760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610d4060006115f2565b565b6005546001600160a01b03163314610d8a5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610961919061200f565b60606004805461081590611e73565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610e753382611651565b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107c2565b610a2e82868684036110c7565b6000336108a68185856112b1565b6005546001600160a01b03163314610f785760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610f846009600a611fe9565b610f8e9082611ff8565b600b5550565b6005546001600160a01b03163314610fdc5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b031633146110425760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b6001600160a01b0381166110be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107c2565b610e75816115f2565b6001600160a01b0383166111425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b0382166111be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146112ab578181101561129e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c2565b6112ab84848484036110c7565b50505050565b600081116113275760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016107c2565b600a54600160a01b900460ff168061135757506001600160a01b03831660009081526006602052604090205460ff165b8061137a57506001600160a01b03821660009081526006602052604090205460ff165b1561138a5761096183838361176a565b600a54600160b01b900460ff166113e35760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206e6f7420656e61626c65640000000000000000000000000060448201526064016107c2565b6001600160a01b03831660009081526007602052604090205460ff1615801561142557506001600160a01b03821660009081526007602052604090205460ff16155b6114715760405162461bcd60e51b815260206004820152601360248201527f426c61636b6c697374656420616464726573730000000000000000000000000060448201526064016107c2565b6009546001600160a01b0383811691161461150157600c54816114a9846001600160a01b031660009081526020819052604090205490565b6114b39190611ef2565b11156115015760405162461bcd60e51b815260206004820152601560248201527f57616c6c6574206c696d6974206578636565646564000000000000000000000060448201526064016107c2565b6009546000906001600160a01b039081169084160361155457600d5460649061154390600160801b90046fffffffffffffffffffffffffffffffff1684611ff8565b61154d919061202c565b9050611599565b6009546001600160a01b039081169085160361159957600d5460649061158c906fffffffffffffffffffffffffffffffff1684611ff8565b611596919061202c565b90505b600a54600160a81b900460ff1680156115c057506009546001600160a01b03858116911614155b156115cd576115cd611981565b6115e184846115dc848661204e565b61176a565b80156112ab576112ab84308361176a565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b804710156116a15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107c2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116ee576040519150601f19603f3d011682016040523d82523d6000602084013e6116f3565b606091505b50509050806109615760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107c2565b6001600160a01b0383166117e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b0382166118625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b038316600090815260208190526040902054818110156118f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611928908490611ef2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161197491815260200190565b60405180910390a36112ab565b600a54600160a01b900460ff16610d4057600a805460ff60a01b1916600160a01b179055306000908152602081905260408120549050600b5481106119f657600b5447906119ce90611a06565b60006119da824761204e565b600a549091506119f3906001600160a01b031682611651565b50505b50600a805460ff60a01b19169055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3b57611a3b611ead565b6001600160a01b03928316602091820292909201810191909152600854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611aad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad19190612061565b81600181518110611ae457611ae4611ead565b6001600160a01b0392831660209182029290920101526008546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790611b4390859060009086903090429060040161207e565b600060405180830381600087803b158015611b5d57600080fd5b505af1158015611b71573d6000803e3d6000fd5b505050505050565b80356fffffffffffffffffffffffffffffffff81168114611b9957600080fd5b919050565b60008060408385031215611bb157600080fd5b611bba83611b79565b9150611bc860208401611b79565b90509250929050565b600060208083528351808285015260005b81811015611bfe57858101830151858201604001528201611be2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e7557600080fd5b8035611b9981611c1f565b60008060408385031215611c5257600080fd5b8235611c5d81611c1f565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610e7557600080fd5b8035611b9981611c81565b60008060408385031215611cad57600080fd5b823567ffffffffffffffff80821115611cc557600080fd5b818501915085601f830112611cd957600080fd5b8135602082821115611ced57611ced611c6b565b8160051b604051601f19603f83011681018181108682111715611d1257611d12611c6b565b604052928352818301935084810182019289841115611d3057600080fd5b948201945b83861015611d5557611d4686611c34565b85529482019493820193611d35565b9650611d649050878201611c8f565b9450505050509250929050565b600080600060608486031215611d8657600080fd5b8335611d9181611c1f565b92506020840135611da181611c1f565b929592945050506040919091013590565b60008060408385031215611dc557600080fd5b8235611dd081611c1f565b91506020830135611de081611c1f565b809150509250929050565b600060208284031215611dfd57600080fd5b8135611e0881611c81565b9392505050565b60008060408385031215611e2257600080fd5b8235611e2d81611c1f565b91506020830135611de081611c81565b600060208284031215611e4f57600080fd5b5035919050565b600060208284031215611e6857600080fd5b8135611e0881611c1f565b600181811c90821680611e8757607f821691505b602082108103611ea757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611eeb57611eeb611ec3565b5060010190565b808201808211156108ac576108ac611ec3565b600181815b80851115611f40578160001904821115611f2657611f26611ec3565b80851615611f3357918102915b93841c9390800290611f0a565b509250929050565b600082611f57575060016108ac565b81611f64575060006108ac565b8160018114611f7a5760028114611f8457611fa0565b60019150506108ac565b60ff841115611f9557611f95611ec3565b50506001821b6108ac565b5060208310610133831016604e8410600b8410161715611fc3575081810a6108ac565b611fcd8383611f05565b8060001904821115611fe157611fe1611ec3565b029392505050565b6000611e0860ff841683611f48565b80820281158282048414176108ac576108ac611ec3565b60006020828403121561202157600080fd5b8151611e0881611c81565b60008261204957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108ac576108ac611ec3565b60006020828403121561207357600080fd5b8151611e0881611c1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120ce5784516001600160a01b0316835293830193918301916001016120a9565b50506001600160a01b0396909616606085015250505060800152939250505056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122036e9eacdf68260ae1c87c1f77d8bcba8453fe834cefeee12107527832816ac2264736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ea6189980c5135dd53a2999a8ab0f2f39d841b2a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000094d7220426c6f62627900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424c4f4242590000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102535760003560e01c8063715018a611610138578063a9059cbb116100b0578063e01af92c1161007f578063f887ea4011610064578063f887ea4014610718578063f8b45b0514610738578063fe575a871461074e57600080fd5b8063e01af92c146106d8578063f2fde38b146106f857600080fd5b8063a9059cbb14610622578063b5d7ab9a14610642578063c5d32bb214610662578063dd62ed3e1461069257600080fd5b80638da5cb5b116101075780639e252f00116100ec5780639e252f00146105c2578063a457c2d7146105e2578063a8aa1b311461060257600080fd5b80638da5cb5b1461058f57806395d89b41146105ad57600080fd5b8063715018a6146104c5578063728f8eea146104da57806375f0a874146105375780638cd4426d1461056f57600080fd5b8063313ce567116101cb5780634ada218b1161019a5780635d098b381161017f5780635d098b381461044e5780636ddd17131461046e57806370a082311461048f57600080fd5b80634ada218b1461040d5780635d0044ca1461042e57600080fd5b8063313ce56714610391578063379ba1d9146103ad57806339509351146103cd5780634a14c4c6146103ed57600080fd5b80630e375a5c1161022257806318160ddd1161020757806318160ddd1461033c57806323b872dd14610351578063255f40b61461037157600080fd5b80630e375a5c146102fc5780630e85d1e31461031c57600080fd5b80630445b6671461025f57806304fb2ebe1461028857806306fdde03146102aa578063095ea7b3146102cc57600080fd5b3661025a57005b600080fd5b34801561026b57600080fd5b50610275600b5481565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a3366004611b9e565b61077e565b005b3480156102b657600080fd5b506102bf610806565b60405161027f9190611bd1565b3480156102d857600080fd5b506102ec6102e7366004611c3f565b610898565b604051901515815260200161027f565b34801561030857600080fd5b506102a8610317366004611c9a565b6108b2565b34801561032857600080fd5b506102a8610337366004611c9a565b610966565b34801561034857600080fd5b50600254610275565b34801561035d57600080fd5b506102ec61036c366004611d71565b610a15565b34801561037d57600080fd5b506102a861038c366004611db2565b610a39565b34801561039d57600080fd5b506040516009815260200161027f565b3480156103b957600080fd5b506102a86103c8366004611deb565b610acf565b3480156103d957600080fd5b506102ec6103e8366004611c3f565b610b61565b3480156103f957600080fd5b506102a8610408366004611e0f565b610ba0565b34801561041957600080fd5b50600a546102ec90600160b01b900460ff1681565b34801561043a57600080fd5b506102a8610449366004611e3d565b610c13565b34801561045a57600080fd5b506102a8610469366004611e56565b610c77565b34801561047a57600080fd5b50600a546102ec90600160a81b900460ff1681565b34801561049b57600080fd5b506102756104aa366004611e56565b6001600160a01b031660009081526020819052604090205490565b3480156104d157600080fd5b506102a8610cee565b3480156104e657600080fd5b50600d5461050e906fffffffffffffffffffffffffffffffff80821691600160801b90041682565b604080516fffffffffffffffffffffffffffffffff93841681529290911660208301520161027f565b34801561054357600080fd5b50600a54610557906001600160a01b031681565b6040516001600160a01b03909116815260200161027f565b34801561057b57600080fd5b506102a861058a366004611c3f565b610d42565b34801561059b57600080fd5b506005546001600160a01b0316610557565b3480156105b957600080fd5b506102bf610e14565b3480156105ce57600080fd5b506102a86105dd366004611e3d565b610e23565b3480156105ee57600080fd5b506102ec6105fd366004611c3f565b610e78565b34801561060e57600080fd5b50600954610557906001600160a01b031681565b34801561062e57600080fd5b506102ec61063d366004611c3f565b610f22565b34801561064e57600080fd5b506102a861065d366004611e3d565b610f30565b34801561066e57600080fd5b506102ec61067d366004611e56565b60066020526000908152604090205460ff1681565b34801561069e57600080fd5b506102756106ad366004611db2565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102a86106f3366004611deb565b610f94565b34801561070457600080fd5b506102a8610713366004611e56565b610ffa565b34801561072457600080fd5b50600854610557906001600160a01b031681565b34801561074457600080fd5b50610275600c5481565b34801561075a57600080fd5b506102ec610769366004611e56565b60076020526000908152604090205460ff1681565b6005546001600160a01b031633146107cb5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064015b60405180910390fd5b604080518082019091526fffffffffffffffffffffffffffffffff928316808252919092166020909201829052600160801b90910217600d55565b60606003805461081590611e73565b80601f016020809104026020016040519081016040528092919081815260200182805461084190611e73565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a68185856110c7565b60019150505b92915050565b6005546001600160a01b031633146108fa5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b60005b825181101561096157816006600085848151811061091d5761091d611ead565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061095981611ed9565b9150506108fd565b505050565b6005546001600160a01b031633146109ae5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b60005b82518110156109615781600760008584815181106109d1576109d1611ead565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610a0d81611ed9565b9150506109b1565b600033610a2385828561121f565b610a2e8585856112b1565b506001949350505050565b6005546001600160a01b03163314610a815760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600880546001600160a01b0380851673ffffffffffffffffffffffffffffffffffffffff19928316179092556009805492841692909116919091179055610acb30836000196110c7565b5050565b6005546001600160a01b03163314610b175760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600a80547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16600160b01b92151592830260ff60a81b191617600160a81b92909202919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108a69082908690610b9b908790611ef2565b6110c7565b6005546001600160a01b03163314610be85760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c5b5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610c676009600a611fe9565b610c719082611ff8565b600c5550565b6005546001600160a01b03163314610cbf5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610d365760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610d4060006115f2565b565b6005546001600160a01b03163314610d8a5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610961919061200f565b60606004805461081590611e73565b6005546001600160a01b03163314610e6b5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610e753382611651565b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610f155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016107c2565b610a2e82868684036110c7565b6000336108a68185856112b1565b6005546001600160a01b03163314610f785760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b610f846009600a611fe9565b610f8e9082611ff8565b600b5550565b6005546001600160a01b03163314610fdc5760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b6005546001600160a01b031633146110425760405162461bcd60e51b815260206004820181905260248201526000805160206120f083398151915260448201526064016107c2565b6001600160a01b0381166110be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107c2565b610e75816115f2565b6001600160a01b0383166111425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b0382166111be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146112ab578181101561129e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107c2565b6112ab84848484036110c7565b50505050565b600081116113275760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016107c2565b600a54600160a01b900460ff168061135757506001600160a01b03831660009081526006602052604090205460ff165b8061137a57506001600160a01b03821660009081526006602052604090205460ff165b1561138a5761096183838361176a565b600a54600160b01b900460ff166113e35760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206e6f7420656e61626c65640000000000000000000000000060448201526064016107c2565b6001600160a01b03831660009081526007602052604090205460ff1615801561142557506001600160a01b03821660009081526007602052604090205460ff16155b6114715760405162461bcd60e51b815260206004820152601360248201527f426c61636b6c697374656420616464726573730000000000000000000000000060448201526064016107c2565b6009546001600160a01b0383811691161461150157600c54816114a9846001600160a01b031660009081526020819052604090205490565b6114b39190611ef2565b11156115015760405162461bcd60e51b815260206004820152601560248201527f57616c6c6574206c696d6974206578636565646564000000000000000000000060448201526064016107c2565b6009546000906001600160a01b039081169084160361155457600d5460649061154390600160801b90046fffffffffffffffffffffffffffffffff1684611ff8565b61154d919061202c565b9050611599565b6009546001600160a01b039081169085160361159957600d5460649061158c906fffffffffffffffffffffffffffffffff1684611ff8565b611596919061202c565b90505b600a54600160a81b900460ff1680156115c057506009546001600160a01b03858116911614155b156115cd576115cd611981565b6115e184846115dc848661204e565b61176a565b80156112ab576112ab84308361176a565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b804710156116a15760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107c2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116ee576040519150601f19603f3d011682016040523d82523d6000602084013e6116f3565b606091505b50509050806109615760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107c2565b6001600160a01b0383166117e65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b0382166118625760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b038316600090815260208190526040902054818110156118f15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016107c2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611928908490611ef2565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161197491815260200190565b60405180910390a36112ab565b600a54600160a01b900460ff16610d4057600a805460ff60a01b1916600160a01b179055306000908152602081905260408120549050600b5481106119f657600b5447906119ce90611a06565b60006119da824761204e565b600a549091506119f3906001600160a01b031682611651565b50505b50600a805460ff60a01b19169055565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a3b57611a3b611ead565b6001600160a01b03928316602091820292909201810191909152600854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611aad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ad19190612061565b81600181518110611ae457611ae4611ead565b6001600160a01b0392831660209182029290920101526008546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790611b4390859060009086903090429060040161207e565b600060405180830381600087803b158015611b5d57600080fd5b505af1158015611b71573d6000803e3d6000fd5b505050505050565b80356fffffffffffffffffffffffffffffffff81168114611b9957600080fd5b919050565b60008060408385031215611bb157600080fd5b611bba83611b79565b9150611bc860208401611b79565b90509250929050565b600060208083528351808285015260005b81811015611bfe57858101830151858201604001528201611be2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e7557600080fd5b8035611b9981611c1f565b60008060408385031215611c5257600080fd5b8235611c5d81611c1f565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610e7557600080fd5b8035611b9981611c81565b60008060408385031215611cad57600080fd5b823567ffffffffffffffff80821115611cc557600080fd5b818501915085601f830112611cd957600080fd5b8135602082821115611ced57611ced611c6b565b8160051b604051601f19603f83011681018181108682111715611d1257611d12611c6b565b604052928352818301935084810182019289841115611d3057600080fd5b948201945b83861015611d5557611d4686611c34565b85529482019493820193611d35565b9650611d649050878201611c8f565b9450505050509250929050565b600080600060608486031215611d8657600080fd5b8335611d9181611c1f565b92506020840135611da181611c1f565b929592945050506040919091013590565b60008060408385031215611dc557600080fd5b8235611dd081611c1f565b91506020830135611de081611c1f565b809150509250929050565b600060208284031215611dfd57600080fd5b8135611e0881611c81565b9392505050565b60008060408385031215611e2257600080fd5b8235611e2d81611c1f565b91506020830135611de081611c81565b600060208284031215611e4f57600080fd5b5035919050565b600060208284031215611e6857600080fd5b8135611e0881611c1f565b600181811c90821680611e8757607f821691505b602082108103611ea757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611eeb57611eeb611ec3565b5060010190565b808201808211156108ac576108ac611ec3565b600181815b80851115611f40578160001904821115611f2657611f26611ec3565b80851615611f3357918102915b93841c9390800290611f0a565b509250929050565b600082611f57575060016108ac565b81611f64575060006108ac565b8160018114611f7a5760028114611f8457611fa0565b60019150506108ac565b60ff841115611f9557611f95611ec3565b50506001821b6108ac565b5060208310610133831016604e8410600b8410161715611fc3575081810a6108ac565b611fcd8383611f05565b8060001904821115611fe157611fe1611ec3565b029392505050565b6000611e0860ff841683611f48565b80820281158282048414176108ac576108ac611ec3565b60006020828403121561202157600080fd5b8151611e0881611c81565b60008261204957634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156108ac576108ac611ec3565b60006020828403121561207357600080fd5b8151611e0881611c1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120ce5784516001600160a01b0316835293830193918301916001016120a9565b50506001600160a01b0396909616606085015250505060800152939250505056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122036e9eacdf68260ae1c87c1f77d8bcba8453fe834cefeee12107527832816ac2264736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ea6189980c5135dd53a2999a8ab0f2f39d841b2a000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000094d7220426c6f62627900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006424c4f4242590000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _marketingWallet (address): 0xEA6189980C5135dd53a2999A8aB0F2f39d841b2a
Arg [2] : _name (string): Mr Blobby
Arg [3] : _symbol (string): BLOBBY
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000ea6189980c5135dd53a2999a8ab0f2f39d841b2a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4d7220426c6f6262790000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 424c4f4242590000000000000000000000000000000000000000000000000000
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.