ERC-20
Overview
Max Total Supply
10,000,000 VOCARE
Holders
432
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VOCARE
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@**(@@@@@@@@@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**@@@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**@@@@@@@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@@@***@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@***@@@/**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@**@@@**@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*****@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // // Vocare ex Machina is the first decentralized influencer bot that calls through community votes. // https://vocare.io | https://t.me/vocareio | https://twitter.com/vocareio // // // // SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IDEXFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IDEXRouter { 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; } contract VOCARE is ERC20, Ownable { address private growthWallet; address private pair; uint256 public growthBuyFee; uint256 public growthSellFee; uint256 public swapThreshold; uint256 public tokenLimitPerWallet; bool private swapping; IDEXRouter public router; mapping(address => bool) public isWalletTaxFree; mapping(address => bool) public isLiquidityPair; mapping(address => bool) public isWalletExemptFromLimit; event BuyFeeUpdated(uint256 newFee); event SellFeeUpdated(uint256 newFee); event WalletExemptFromTokenLimit(address wallet, bool value); event SwapingThresholdUpdated(uint256 amount); event TokenPerWalletLimitUpdated(uint256 amount); event NewLiquidityPairUpdated(address pair, bool value); event WalletExemptFromFee(address wallet, bool value); event GrowthWalletUpdated(address wallet); constructor(address owner_, address growth_) ERC20("Vocare ex Machina", "VOCARE") { require(owner_ != address(0), "Zero address"); require(growth_ != address(0), "Zero address"); router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); pair = IDEXFactory(router.factory()).createPair(address(this), router.WETH()); growthWallet = address(growth_); growthBuyFee = 500; growthSellFee = 500; isLiquidityPair[address(pair)] = true; isWalletTaxFree[address(this)] = true; isWalletTaxFree[address(owner_)] = true; isWalletTaxFree[address(growthWallet)] = true; isWalletExemptFromLimit[address(this)] = true; isWalletExemptFromLimit[address(owner_)] = true; isWalletExemptFromLimit[address(growthWallet)] = true; isWalletExemptFromLimit[address(pair)] = true; swapThreshold = 10000 * (10**18); tokenLimitPerWallet = 200000 * (10**18); _mint(address(owner_), 10000000 * (10**18)); _transferOwnership(address(owner_)); } receive() external payable {} function updateSellFee(uint256 newSellFee) external onlyOwner { require(newSellFee <= 8000 , "Max fee limit reached for 'Sell'"); growthSellFee = newSellFee; emit SellFeeUpdated(newSellFee); } function updateBuyFee(uint256 newBuyFee) external onlyOwner { require(newBuyFee <= 8000 , "Max fee limit reached for 'Buy'"); growthBuyFee = newBuyFee; emit BuyFeeUpdated(newBuyFee); } function exemptWalletFromTokenLimit(address wallet, bool status) external onlyOwner { require(wallet != address(0), "Zero address"); require(isWalletExemptFromLimit[wallet] != status, "Wallet is already the value of 'status'"); isWalletExemptFromLimit[wallet] = status; emit WalletExemptFromTokenLimit(wallet, status); } function exemptWalletFromFee(address wallet, bool status) external onlyOwner{ require(wallet != address(0), "Zero address"); require(isWalletTaxFree[wallet] != status, "Wallet is already the value of 'status'"); isWalletTaxFree[wallet] = status; emit WalletExemptFromFee(wallet, status); } function updateSwapingThreshold(uint256 amount) external onlyOwner { require(amount <= totalSupply(), "Amount cannot be over the total supply."); require(amount >= (100 * 10**18), "Amount cannot be less than `100` token."); swapThreshold = amount; emit SwapingThresholdUpdated(amount); } function updateLiquidityPair(address newPair, bool value) external onlyOwner { require(newPair != address(0), "Zero address"); require(isLiquidityPair[newPair] != value, "Pair is already the value of 'value'"); isLiquidityPair[newPair] = value; emit NewLiquidityPairUpdated(newPair, value); } function updateTokenLimitPerWallet(uint256 amount) external onlyOwner { require(amount <= totalSupply(), "Amount cannot be over the total supply."); require(amount >= 100 * (10**18), "Minimum `100` token per wallet required"); tokenLimitPerWallet = amount; emit TokenPerWalletLimitUpdated(amount); } function updateGrowthWallet(address newWallet) external onlyOwner{ require(address(newWallet) != address(0), "Zero address"); growthWallet = address(newWallet); emit GrowthWalletUpdated(address(newWallet)); } function _transfer(address sender, address recipient, uint256 amount) internal override(ERC20) { require(sender != address(0), "transfer from the zero address"); require(recipient != address(0), "transfer to the zero address"); uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapThreshold; if(!swapping && canSwap && isLiquidityPair[recipient]) { swapping = true; swapTokensForETH(swapThreshold); uint256 ethBalance = address(this).balance; payable(growthWallet).transfer(ethBalance); swapping = false; } if(isWalletTaxFree[sender] || isWalletTaxFree[recipient]) { super._transfer(sender, recipient, amount); } else { uint256 fees; if(isLiquidityPair[recipient]) { fees = ((amount * growthSellFee) / 10000); } else if(isLiquidityPair[sender] && recipient != address(router)) { fees = ((amount * growthBuyFee) / 10000); } if(!isWalletExemptFromLimit[recipient]) { require(((balanceOf(recipient) + amount) - fees) <= tokenLimitPerWallet, "Transfer amount exceeds the `tokenLimitPerWallet`."); } if(fees > 0) { super._transfer(sender, address(this), fees); } super._transfer(sender, recipient, amount - fees); } } function swapTokensForETH(uint256 amount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), amount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, address(this), block.timestamp ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 `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; } _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 (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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/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; } }
// 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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"growth_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"GrowthWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"NewLiquidityPairUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapingThresholdUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenPerWalletLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"WalletExemptFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"WalletExemptFromTokenLimit","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"exemptWalletFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"exemptWalletFromTokenLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"growthBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"growthSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"isLiquidityPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletExemptFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletTaxFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"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":"tokenLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateGrowthWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"updateLiquidityPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSellFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateSwapingThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateTokenLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200215938038062002159833981016040819052620000349162000602565b6040805180820182526011815270566f63617265206578204d616368696e6160781b602080830191825283518085019094526006845265564f4341524560d01b9084015281519192916200008b916003916200053f565b508051620000a19060049060208401906200053f565b505050620000be620000b86200040460201b60201c565b62000408565b6001600160a01b038216620001095760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b60448201526064015b60405180910390fd5b6001600160a01b038116620001505760405162461bcd60e51b815260206004820152600c60248201526b5a65726f206164647265737360a01b604482015260640162000100565b600c8054747a250d5630b4cf539739df2c5dacb4c659f2488d00610100600160a81b031990911617908190556040805163c45a015560e01b815290516101009092046001600160a01b03169163c45a0155916004808201926020929091908290030181865afa158015620001c8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ee91906200063a565b6001600160a01b031663c9c6539630600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000251573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027791906200063a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002eb91906200063a565b600780546001600160a01b03199081166001600160a01b039384169081178355600680549092168585161782556101f460088190556009556000908152600e60209081526040808320805460ff19908116600190811790925530808652600d855283862080548316841790558a8916808752848720805484168517905587548a1687528487208054841685179055908652600f9094528285208054821683179055928452818420805484168217905593548616835280832080548316851790559354909416815291909120805490921617905569021e19e0c9bab2400000600a55692a5a058fc295ed000000600b55620003f1826a084595161401484a0000006200045a565b620003fc8262000408565b5050620006c3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000100565b8060026000828254620004c691906200065f565b90915550506001600160a01b03821660009081526020819052604081208054839290620004f59084906200065f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200054d9062000686565b90600052602060002090601f016020900481019282620005715760008555620005bc565b82601f106200058c57805160ff1916838001178555620005bc565b82800160010185558215620005bc579182015b82811115620005bc5782518255916020019190600101906200059f565b50620005ca929150620005ce565b5090565b5b80821115620005ca5760008155600101620005cf565b80516001600160a01b0381168114620005fd57600080fd5b919050565b600080604083850312156200061657600080fd5b6200062183620005e5565b91506200063160208401620005e5565b90509250929050565b6000602082840312156200064d57600080fd5b6200065882620005e5565b9392505050565b600082198211156200068157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200069b57607f821691505b60208210811415620006bd57634e487b7160e01b600052602260045260246000fd5b50919050565b611a8680620006d36000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063a9059cbb11610095578063e708d84411610064578063e708d8441461054f578063f1f51f6e1461056f578063f2fde38b1461058f578063f887ea40146105af57600080fd5b8063a9059cbb146104d9578063bd218493146104f9578063c2257e681461050f578063dd62ed3e1461052f57600080fd5b806395d89b41116100d157806395d89b411461045457806398c09dbc146104695780639f26361e14610499578063a457c2d7146104b957600080fd5b8063715018a6146103f757806384c9d6341461040c5780638da5cb5b1461042257600080fd5b8063395093511161016f57806350d37cdd1161013e57806350d37cdd1461034157806352cd410a146103615780635c9a05b81461039157806370a08231146103c157600080fd5b806339509351146102cb578063454369c1146102eb578063467abe0a146103015780634f6eec5e1461032157600080fd5b806318160ddd116101ab57806318160ddd146102585780631d933a4a1461026d57806323b872dd1461028f578063313ce567146102af57600080fd5b80630445b667146101dd57806306fdde0314610206578063095ea7b31461022857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f3600a5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105d4565b6040516101fd91906116b7565b34801561023457600080fd5b50610248610243366004611721565b610666565b60405190151581526020016101fd565b34801561026457600080fd5b506002546101f3565b34801561027957600080fd5b5061028d61028836600461174d565b61067e565b005b34801561029b57600080fd5b506102486102aa366004611766565b610719565b3480156102bb57600080fd5b50604051601281526020016101fd565b3480156102d757600080fd5b506102486102e6366004611721565b61073d565b3480156102f757600080fd5b506101f360095481565b34801561030d57600080fd5b5061028d61031c36600461174d565b61075f565b34801561032d57600080fd5b5061028d61033c3660046117a7565b6107ee565b34801561034d57600080fd5b5061028d61035c3660046117a7565b6108fb565b34801561036d57600080fd5b5061024861037c3660046117e5565b600d6020526000908152604090205460ff1681565b34801561039d57600080fd5b506102486103ac3660046117e5565b600e6020526000908152604090205460ff1681565b3480156103cd57600080fd5b506101f36103dc3660046117e5565b6001600160a01b031660009081526020819052604090205490565b34801561040357600080fd5b5061028d6109c4565b34801561041857600080fd5b506101f360085481565b34801561042e57600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016101fd565b34801561046057600080fd5b5061021b6109d8565b34801561047557600080fd5b506102486104843660046117e5565b600f6020526000908152604090205460ff1681565b3480156104a557600080fd5b5061028d6104b436600461174d565b6109e7565b3480156104c557600080fd5b506102486104d4366004611721565b610aaf565b3480156104e557600080fd5b506102486104f4366004611721565b610b2a565b34801561050557600080fd5b506101f3600b5481565b34801561051b57600080fd5b5061028d61052a3660046117a7565b610b38565b34801561053b57600080fd5b506101f361054a366004611809565b610c01565b34801561055b57600080fd5b5061028d61056a36600461174d565b610c2c565b34801561057b57600080fd5b5061028d61058a3660046117e5565b610cf4565b34801561059b57600080fd5b5061028d6105aa3660046117e5565b610d70565b3480156105bb57600080fd5b50600c5461043c9061010090046001600160a01b031681565b6060600380546105e390611837565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611837565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600033610674818585610de9565b5060019392505050565b610686610f0d565b611f408111156106dd5760405162461bcd60e51b815260206004820181905260248201527f4d617820666565206c696d6974207265616368656420666f72202753656c6c2760448201526064015b60405180910390fd5b60098190556040518181527f495ee53ee22006979ebc689a00ed737d7c13b6419142f82dcaea4ed95ac1e780906020015b60405180910390a150565b600033610727858285610f67565b610732858585610fe1565b506001949350505050565b6000336106748185856107508383610c01565b61075a9190611888565b610de9565b610767610f0d565b611f408111156107b95760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f722027427579270060448201526064016106d4565b60088190556040518181527f7c1445c98b278c9970d007fca6048704bcb25af7cc4a04eb56565d9a9f149ca39060200161070e565b6107f6610f0d565b6001600160a01b03821661081c5760405162461bcd60e51b81526004016106d4906118a0565b6001600160a01b0382166000908152600e602052604090205460ff16151581151514156108975760405162461bcd60e51b8152602060048201526024808201527f5061697220697320616c7265616479207468652076616c7565206f66202776616044820152636c75652760e01b60648201526084016106d4565b6001600160a01b0382166000818152600e6020908152604091829020805460ff19168515159081179091558251938452908301527f036ec357b1589d19ef97b24895409d8bddd5c552c1b6601089052d12fd80901991015b60405180910390a15050565b610903610f0d565b6001600160a01b0382166109295760405162461bcd60e51b81526004016106d4906118a0565b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156109685760405162461bcd60e51b81526004016106d4906118c6565b6001600160a01b0382166000818152600d6020908152604091829020805460ff19168515159081179091558251938452908301527f437c058b19f0e29bbd65e1b03d0c97fac5d0adef2e4c7cbd74a3a99ab950839691016108ef565b6109cc610f0d565b6109d66000611322565b565b6060600480546105e390611837565b6109ef610f0d565b600254811115610a115760405162461bcd60e51b81526004016106d49061190d565b68056bc75e2d63100000811015610a7a5760405162461bcd60e51b815260206004820152602760248201527f416d6f756e742063616e6e6f74206265206c657373207468616e206031303060604482015266103a37b5b2b71760c91b60648201526084016106d4565b600a8190556040518181527fdc0e1857a52d77aeae7d67c2ef590eeb501519a07de8d4b8a436aad80437ee559060200161070e565b60003381610abd8286610c01565b905083811015610b1d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106d4565b6107328286868403610de9565b600033610674818585610fe1565b610b40610f0d565b6001600160a01b038216610b665760405162461bcd60e51b81526004016106d4906118a0565b6001600160a01b0382166000908152600f602052604090205460ff1615158115151415610ba55760405162461bcd60e51b81526004016106d4906118c6565b6001600160a01b0382166000818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f6f4fa3169f579919acc48649f61d516b93af2fa9bfd366bf276730554972041c91016108ef565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c34610f0d565b600254811115610c565760405162461bcd60e51b81526004016106d49061190d565b68056bc75e2d63100000811015610cbf5760405162461bcd60e51b815260206004820152602760248201527f4d696e696d756d20603130306020746f6b656e207065722077616c6c65742072604482015266195c5d5a5c995960ca1b60648201526084016106d4565b600b8190556040518181527f8db55ad0cf120daf7f6ca41d31df795f430f79e9d42c2846a4055bf65c117c209060200161070e565b610cfc610f0d565b6001600160a01b038116610d225760405162461bcd60e51b81526004016106d4906118a0565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f3c43b071b557e2ecf1ba7b8cce9f0fb99d15b4d7ba060a2788b8d0392b9fb8699060200161070e565b610d78610f0d565b6001600160a01b038116610ddd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b610de681611322565b50565b6001600160a01b038316610e4b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106d4565b6001600160a01b038216610eac5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106d4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d4565b6000610f738484610c01565b90506000198114610fdb5781811015610fce5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106d4565b610fdb8484848403610de9565b50505050565b6001600160a01b0383166110375760405162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f2061646472657373000060448201526064016106d4565b6001600160a01b03821661108d5760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016106d4565b30600090815260208190526040902054600a54600c54908210159060ff161580156110b55750805b80156110d957506001600160a01b0384166000908152600e602052604090205460ff165b1561113e57600c805460ff19166001179055600a546110f790611374565b60065460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611131573d6000803e3d6000fd5b5050600c805460ff191690555b6001600160a01b0385166000908152600d602052604090205460ff168061117d57506001600160a01b0384166000908152600d602052604090205460ff165b156111925761118d8585856114e9565b61131b565b6001600160a01b0384166000908152600e602052604081205460ff16156111d557612710600954856111c49190611954565b6111ce9190611973565b9050611233565b6001600160a01b0386166000908152600e602052604090205460ff1680156112105750600c546001600160a01b038681166101009092041614155b1561123357612710600854856112269190611954565b6112309190611973565b90505b6001600160a01b0385166000908152600f602052604090205460ff166112f457600b548185611277886001600160a01b031660009081526020819052604090205490565b6112819190611888565b61128b9190611995565b11156112f45760405162461bcd60e51b815260206004820152603260248201527f5472616e7366657220616d6f756e742065786365656473207468652060746f6b60448201527132b72634b6b4ba2832b92bb0b63632ba301760711b60648201526084016106d4565b8015611305576113058630836114e9565b61131986866113148488611995565b6114e9565b505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113a9576113a96119ac565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561141c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144091906119c2565b81600181518110611453576114536119ac565b6001600160a01b039283166020918202929092010152600c5461147e91309161010090041684610de9565b600c5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906114bb9085906000908690309042906004016119df565b600060405180830381600087803b1580156114d557600080fd5b505af1158015611319573d6000803e3d6000fd5b6001600160a01b03831661154d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106d4565b6001600160a01b0382166115af5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106d4565b6001600160a01b038316600090815260208190526040902054818110156116275760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106d4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061165e908490611888565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116aa91815260200190565b60405180910390a3610fdb565b600060208083528351808285015260005b818110156116e4578581018301518582016040015282016116c8565b818111156116f6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610de657600080fd5b6000806040838503121561173457600080fd5b823561173f8161170c565b946020939093013593505050565b60006020828403121561175f57600080fd5b5035919050565b60008060006060848603121561177b57600080fd5b83356117868161170c565b925060208401356117968161170c565b929592945050506040919091013590565b600080604083850312156117ba57600080fd5b82356117c58161170c565b9150602083013580151581146117da57600080fd5b809150509250929050565b6000602082840312156117f757600080fd5b81356118028161170c565b9392505050565b6000806040838503121561181c57600080fd5b82356118278161170c565b915060208301356117da8161170c565b600181811c9082168061184b57607f821691505b6020821081141561186c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561189b5761189b611872565b500190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526027908201527f57616c6c657420697320616c7265616479207468652076616c7565206f6620276040820152667374617475732760c81b606082015260800190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600081600019048311821515161561196e5761196e611872565b500290565b60008261199057634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156119a7576119a7611872565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156119d457600080fd5b81516118028161170c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a2f5784516001600160a01b031683529383019391830191600101611a0a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b4998b8d0b881801bd1f2e2bb77b121d518e3bb6c451538dba5cbb5e23b3fa9964736f6c634300080a00330000000000000000000000007ecfe326ed45dd25a4b3720ba36ec664bdf69bc600000000000000000000000034531f3cf891ab5aee4afcc46492bc453d4d181d
Deployed Bytecode
0x6080604052600436106101d15760003560e01c8063715018a6116100f7578063a9059cbb11610095578063e708d84411610064578063e708d8441461054f578063f1f51f6e1461056f578063f2fde38b1461058f578063f887ea40146105af57600080fd5b8063a9059cbb146104d9578063bd218493146104f9578063c2257e681461050f578063dd62ed3e1461052f57600080fd5b806395d89b41116100d157806395d89b411461045457806398c09dbc146104695780639f26361e14610499578063a457c2d7146104b957600080fd5b8063715018a6146103f757806384c9d6341461040c5780638da5cb5b1461042257600080fd5b8063395093511161016f57806350d37cdd1161013e57806350d37cdd1461034157806352cd410a146103615780635c9a05b81461039157806370a08231146103c157600080fd5b806339509351146102cb578063454369c1146102eb578063467abe0a146103015780634f6eec5e1461032157600080fd5b806318160ddd116101ab57806318160ddd146102585780631d933a4a1461026d57806323b872dd1461028f578063313ce567146102af57600080fd5b80630445b667146101dd57806306fdde0314610206578063095ea7b31461022857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f3600a5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105d4565b6040516101fd91906116b7565b34801561023457600080fd5b50610248610243366004611721565b610666565b60405190151581526020016101fd565b34801561026457600080fd5b506002546101f3565b34801561027957600080fd5b5061028d61028836600461174d565b61067e565b005b34801561029b57600080fd5b506102486102aa366004611766565b610719565b3480156102bb57600080fd5b50604051601281526020016101fd565b3480156102d757600080fd5b506102486102e6366004611721565b61073d565b3480156102f757600080fd5b506101f360095481565b34801561030d57600080fd5b5061028d61031c36600461174d565b61075f565b34801561032d57600080fd5b5061028d61033c3660046117a7565b6107ee565b34801561034d57600080fd5b5061028d61035c3660046117a7565b6108fb565b34801561036d57600080fd5b5061024861037c3660046117e5565b600d6020526000908152604090205460ff1681565b34801561039d57600080fd5b506102486103ac3660046117e5565b600e6020526000908152604090205460ff1681565b3480156103cd57600080fd5b506101f36103dc3660046117e5565b6001600160a01b031660009081526020819052604090205490565b34801561040357600080fd5b5061028d6109c4565b34801561041857600080fd5b506101f360085481565b34801561042e57600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016101fd565b34801561046057600080fd5b5061021b6109d8565b34801561047557600080fd5b506102486104843660046117e5565b600f6020526000908152604090205460ff1681565b3480156104a557600080fd5b5061028d6104b436600461174d565b6109e7565b3480156104c557600080fd5b506102486104d4366004611721565b610aaf565b3480156104e557600080fd5b506102486104f4366004611721565b610b2a565b34801561050557600080fd5b506101f3600b5481565b34801561051b57600080fd5b5061028d61052a3660046117a7565b610b38565b34801561053b57600080fd5b506101f361054a366004611809565b610c01565b34801561055b57600080fd5b5061028d61056a36600461174d565b610c2c565b34801561057b57600080fd5b5061028d61058a3660046117e5565b610cf4565b34801561059b57600080fd5b5061028d6105aa3660046117e5565b610d70565b3480156105bb57600080fd5b50600c5461043c9061010090046001600160a01b031681565b6060600380546105e390611837565b80601f016020809104026020016040519081016040528092919081815260200182805461060f90611837565b801561065c5780601f106106315761010080835404028352916020019161065c565b820191906000526020600020905b81548152906001019060200180831161063f57829003601f168201915b5050505050905090565b600033610674818585610de9565b5060019392505050565b610686610f0d565b611f408111156106dd5760405162461bcd60e51b815260206004820181905260248201527f4d617820666565206c696d6974207265616368656420666f72202753656c6c2760448201526064015b60405180910390fd5b60098190556040518181527f495ee53ee22006979ebc689a00ed737d7c13b6419142f82dcaea4ed95ac1e780906020015b60405180910390a150565b600033610727858285610f67565b610732858585610fe1565b506001949350505050565b6000336106748185856107508383610c01565b61075a9190611888565b610de9565b610767610f0d565b611f408111156107b95760405162461bcd60e51b815260206004820152601f60248201527f4d617820666565206c696d6974207265616368656420666f722027427579270060448201526064016106d4565b60088190556040518181527f7c1445c98b278c9970d007fca6048704bcb25af7cc4a04eb56565d9a9f149ca39060200161070e565b6107f6610f0d565b6001600160a01b03821661081c5760405162461bcd60e51b81526004016106d4906118a0565b6001600160a01b0382166000908152600e602052604090205460ff16151581151514156108975760405162461bcd60e51b8152602060048201526024808201527f5061697220697320616c7265616479207468652076616c7565206f66202776616044820152636c75652760e01b60648201526084016106d4565b6001600160a01b0382166000818152600e6020908152604091829020805460ff19168515159081179091558251938452908301527f036ec357b1589d19ef97b24895409d8bddd5c552c1b6601089052d12fd80901991015b60405180910390a15050565b610903610f0d565b6001600160a01b0382166109295760405162461bcd60e51b81526004016106d4906118a0565b6001600160a01b0382166000908152600d602052604090205460ff16151581151514156109685760405162461bcd60e51b81526004016106d4906118c6565b6001600160a01b0382166000818152600d6020908152604091829020805460ff19168515159081179091558251938452908301527f437c058b19f0e29bbd65e1b03d0c97fac5d0adef2e4c7cbd74a3a99ab950839691016108ef565b6109cc610f0d565b6109d66000611322565b565b6060600480546105e390611837565b6109ef610f0d565b600254811115610a115760405162461bcd60e51b81526004016106d49061190d565b68056bc75e2d63100000811015610a7a5760405162461bcd60e51b815260206004820152602760248201527f416d6f756e742063616e6e6f74206265206c657373207468616e206031303060604482015266103a37b5b2b71760c91b60648201526084016106d4565b600a8190556040518181527fdc0e1857a52d77aeae7d67c2ef590eeb501519a07de8d4b8a436aad80437ee559060200161070e565b60003381610abd8286610c01565b905083811015610b1d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106d4565b6107328286868403610de9565b600033610674818585610fe1565b610b40610f0d565b6001600160a01b038216610b665760405162461bcd60e51b81526004016106d4906118a0565b6001600160a01b0382166000908152600f602052604090205460ff1615158115151415610ba55760405162461bcd60e51b81526004016106d4906118c6565b6001600160a01b0382166000818152600f6020908152604091829020805460ff19168515159081179091558251938452908301527f6f4fa3169f579919acc48649f61d516b93af2fa9bfd366bf276730554972041c91016108ef565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c34610f0d565b600254811115610c565760405162461bcd60e51b81526004016106d49061190d565b68056bc75e2d63100000811015610cbf5760405162461bcd60e51b815260206004820152602760248201527f4d696e696d756d20603130306020746f6b656e207065722077616c6c65742072604482015266195c5d5a5c995960ca1b60648201526084016106d4565b600b8190556040518181527f8db55ad0cf120daf7f6ca41d31df795f430f79e9d42c2846a4055bf65c117c209060200161070e565b610cfc610f0d565b6001600160a01b038116610d225760405162461bcd60e51b81526004016106d4906118a0565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f3c43b071b557e2ecf1ba7b8cce9f0fb99d15b4d7ba060a2788b8d0392b9fb8699060200161070e565b610d78610f0d565b6001600160a01b038116610ddd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b610de681611322565b50565b6001600160a01b038316610e4b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106d4565b6001600160a01b038216610eac5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106d4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d4565b6000610f738484610c01565b90506000198114610fdb5781811015610fce5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106d4565b610fdb8484848403610de9565b50505050565b6001600160a01b0383166110375760405162461bcd60e51b815260206004820152601e60248201527f7472616e736665722066726f6d20746865207a65726f2061646472657373000060448201526064016106d4565b6001600160a01b03821661108d5760405162461bcd60e51b815260206004820152601c60248201527f7472616e7366657220746f20746865207a65726f20616464726573730000000060448201526064016106d4565b30600090815260208190526040902054600a54600c54908210159060ff161580156110b55750805b80156110d957506001600160a01b0384166000908152600e602052604090205460ff165b1561113e57600c805460ff19166001179055600a546110f790611374565b60065460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611131573d6000803e3d6000fd5b5050600c805460ff191690555b6001600160a01b0385166000908152600d602052604090205460ff168061117d57506001600160a01b0384166000908152600d602052604090205460ff165b156111925761118d8585856114e9565b61131b565b6001600160a01b0384166000908152600e602052604081205460ff16156111d557612710600954856111c49190611954565b6111ce9190611973565b9050611233565b6001600160a01b0386166000908152600e602052604090205460ff1680156112105750600c546001600160a01b038681166101009092041614155b1561123357612710600854856112269190611954565b6112309190611973565b90505b6001600160a01b0385166000908152600f602052604090205460ff166112f457600b548185611277886001600160a01b031660009081526020819052604090205490565b6112819190611888565b61128b9190611995565b11156112f45760405162461bcd60e51b815260206004820152603260248201527f5472616e7366657220616d6f756e742065786365656473207468652060746f6b60448201527132b72634b6b4ba2832b92bb0b63632ba301760711b60648201526084016106d4565b8015611305576113058630836114e9565b61131986866113148488611995565b6114e9565b505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106113a9576113a96119ac565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561141c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144091906119c2565b81600181518110611453576114536119ac565b6001600160a01b039283166020918202929092010152600c5461147e91309161010090041684610de9565b600c5460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906114bb9085906000908690309042906004016119df565b600060405180830381600087803b1580156114d557600080fd5b505af1158015611319573d6000803e3d6000fd5b6001600160a01b03831661154d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106d4565b6001600160a01b0382166115af5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106d4565b6001600160a01b038316600090815260208190526040902054818110156116275760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106d4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061165e908490611888565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116aa91815260200190565b60405180910390a3610fdb565b600060208083528351808285015260005b818110156116e4578581018301518582016040015282016116c8565b818111156116f6576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610de657600080fd5b6000806040838503121561173457600080fd5b823561173f8161170c565b946020939093013593505050565b60006020828403121561175f57600080fd5b5035919050565b60008060006060848603121561177b57600080fd5b83356117868161170c565b925060208401356117968161170c565b929592945050506040919091013590565b600080604083850312156117ba57600080fd5b82356117c58161170c565b9150602083013580151581146117da57600080fd5b809150509250929050565b6000602082840312156117f757600080fd5b81356118028161170c565b9392505050565b6000806040838503121561181c57600080fd5b82356118278161170c565b915060208301356117da8161170c565b600181811c9082168061184b57607f821691505b6020821081141561186c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561189b5761189b611872565b500190565b6020808252600c908201526b5a65726f206164647265737360a01b604082015260600190565b60208082526027908201527f57616c6c657420697320616c7265616479207468652076616c7565206f6620276040820152667374617475732760c81b606082015260800190565b60208082526027908201527f416d6f756e742063616e6e6f74206265206f7665722074686520746f74616c2060408201526639bab838363c9760c91b606082015260800190565b600081600019048311821515161561196e5761196e611872565b500290565b60008261199057634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156119a7576119a7611872565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156119d457600080fd5b81516118028161170c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a2f5784516001600160a01b031683529383019391830191600101611a0a565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b4998b8d0b881801bd1f2e2bb77b121d518e3bb6c451538dba5cbb5e23b3fa9964736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007ecfe326ed45dd25a4b3720ba36ec664bdf69bc600000000000000000000000034531f3cf891ab5aee4afcc46492bc453d4d181d
-----Decoded View---------------
Arg [0] : owner_ (address): 0x7ECFe326eD45Dd25A4B3720Ba36ec664bDF69Bc6
Arg [1] : growth_ (address): 0x34531F3cf891ab5Aee4AfCC46492bC453D4D181D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007ecfe326ed45dd25a4b3720ba36ec664bdf69bc6
Arg [1] : 00000000000000000000000034531f3cf891ab5aee4afcc46492bc453d4d181d
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.