ERC-20
Overview
Max Total Supply
10,000,000 Frosted
Holders
1,001
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
547.144299034869904483 FrostedValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Frostedfrenz
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* ███████╗██████╗░░█████╗░░██████╗████████╗███████╗██████╗░███████╗██████╗░███████╗███╗░░██╗███████╗██╗░░░██╗ ██╔════╝██╔══██╗██╔══██╗██╔════╝╚══██╔══╝██╔════╝██╔══██╗██╔════╝██╔══██╗██╔════╝████╗░██║╚════██║╚██╗░██╔╝ █████╗░░██████╔╝██║░░██║╚█████╗░░░░██║░░░█████╗░░██║░░██║█████╗░░██████╔╝█████╗░░██╔██╗██║░░███╔═╝░╚████╔╝░ ██╔══╝░░██╔══██╗██║░░██║░╚═══██╗░░░██║░░░██╔══╝░░██║░░██║██╔══╝░░██╔══██╗██╔══╝░░██║╚████║██╔══╝░░░░╚██╔╝░░ ██║░░░░░██║░░██║╚█████╔╝██████╔╝░░░██║░░░███████╗██████╔╝██║░░░░░██║░░██║███████╗██║░╚███║███████╗░░░██║░░░ ╚═╝░░░░░╚═╝░░╚═╝░╚════╝░╚═════╝░░░░╚═╝░░░╚══════╝╚═════╝░╚═╝░░░░░╚═╝░░╚═╝╚══════╝╚═╝░░╚══╝╚══════╝░░░╚═╝░░░ https://x.com/frostedfrenz?s=21 https://frostedfrenzy.fun/ https://discord.com/invite/xYPvgBdz4V */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 internal _name; string internal _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract Frostedfrenz is Ownable, ERC20 { uint256 public immutable maxSupply = 10_000_000* (10 ** decimals()); uint16 public constant LIQUID_RATE = 100; uint16 public constant MAX_PERCENTAGE = 100; bool public initialized = false; address public uniswapV2Pair; address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minRuleLimit = 0; uint256 public maxRuleLimit = 0; mapping (address => bool) private excludedFees; string private constant NAME = unicode"Frostedfrenz"; string private constant SYMBOL = unicode"Frosted"; constructor() ERC20(NAME, SYMBOL) { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; excludedFees[msg.sender] = true; excludedFees[uniswapV2Pair] = true; // FOR Base // uniswapV2Pair = IUniswapV2Factory(0x8909Dc15e40173Ff4699343b6eB8132c65e18eC6).createPair(address(this), 0x4200000000000000000000000000000000000006); // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); } /** * @dev Sets the Uniswap V2 Pair address. Can only be called by the contract owner. * @param _uniswapV2Pair The address of the Uniswap V2 Pair. */ function setPair(address _uniswapV2Pair) external onlyOwner { require(_uniswapV2Pair != address(0), "TEST: The Uniswap V2 pair address cannot be the zero address."); uniswapV2Pair = _uniswapV2Pair; } function activate(string memory _uname, string memory _usymbol) external onlyOwner { _name = _uname; _symbol = _usymbol; } function setBot(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner { minRuleLimit = _minRuleLimit; maxRuleLimit = _maxRuleLimit; } function setAirdrop(address _address, bool permission) external onlyOwner { excludedFees[_address] = permission; } function Contract_Creation(address recipient, uint256 amount) external onlyOwner { require(recipient != address(0), "Invalid recipient address"); require(amount > 0, "Amount must be greater than zero"); uint256 scaledAmount = amount * (10 ** decimals()); _mint(recipient, scaledAmount); } function Airdrop(address[] memory recipients, uint256 amount) public onlyOwner { require(recipients.length > 0, "Recipients list cannot be empty"); require(amount > 0, "Amount must be greater than zero"); uint256 scaledAmount = amount * (10 ** decimals()); for (uint256 i = 0; i < recipients.length; i++) { require(recipients[i] != address(0), "Invalid recipient address"); _transfer(msg.sender, recipients[i], scaledAmount); } } // Adjusted random function to accept a seed function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require( initialized == true, "Contract: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = minRuleLimit; } else if (to == uniswapV2Pair) { if (excludedFees[from] == true) { _fee = 0; } else { _fee = maxRuleLimit; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"recipients","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Contract_Creation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002adf70882a22a58c45ec218d8e2b67f55e38fe23860d7e314407511e74000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0001000000000002000e00000000000200000000000103550000000100200190000000230000c13d000000000b01034f00000060011002700000023d021001970000008003000039000000400030043f000000040020008c0000065d0000413d00000000010b043b000000e001100270000002500010009c0000004a0000213d000002660010009c000000990000a13d000002670010009c000000b30000213d0000026d0010009c000001330000213d000002700010009c0000024c0000613d000002710010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d0000000001000412000e00000001001d000d00400000003d00000000010004150000000e0110008a000002840000013d0000000001000416000000000001004b0000065d0000c13d0000000c01000039000000e00010043f0000023e01000041000001000010043f0000016001000039000000400010043f0000000701000039000001200010043f0000023f01000041000001400010043f0000000006000411000000000100041a0000024002100197000000000226019f000000000020041b000000000200041400000241051001970000023d0020009c0000023d02008041000000c00120021000000242011001c70000800d020000390000000303000039000002430400004108f108e70000040f00000001002001900000065d0000613d000000e00500043d000002440050009c000000890000413d0000029901000041000000000010043f0000004101000039000000040010043f0000029a01000041000008f300010430000002510010009c000000a60000a13d000002520010009c000000c00000213d000002580010009c0000016a0000213d0000025b0010009c0000023a0000613d0000025c0010009c0000065d0000c13d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000800000001001d000002410010009c0000065d0000213d0000002401b00370000000000101043b000700000001001d0000000001000411000000000010043f0000000201000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b0000000802000029000000000020043f000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000101041a000000070310006c000001660000813d000000400100043d00000064021000390000028703000041000000000032043500000044021000390000028803000041000000000032043500000024021000390000002503000039000001c30000013d0000000404000039000000000104041a000000010210019000000001031002700000007f0330618f0000001f0030008c00000000010000390000000101002039000000000012004b000000cf0000613d0000029901000041000000000010043f0000002201000039000000040010043f0000029a01000041000008f300010430000002720010009c000001020000a13d000002730010009c000001850000213d000002760010009c000002550000613d000002770010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d0000000301000039000003e90000013d0000025d0010009c000001150000a13d0000025e0010009c000001ce0000213d000002610010009c000002600000613d000002620010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d000000000100041a000002510000013d000002680010009c000001f00000213d0000026b0010009c0000027c0000613d0000026c0010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d0000000601000039000000000101041a0000000801100270000002510000013d000002530010009c0000021a0000213d000002560010009c000002890000613d000002570010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d0000000001000412000a00000001001d000900000000003d00000000010004150000000a0110008a000002840000013d000000200030008c000000ef0000413d000700000003001d000800000005001d000000000040043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000245011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d00000008050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000404000039000000ef0000813d000000000002041b0000000102200039000000000012004b000000eb0000413d0000001f0050008c000002410000a13d000800000005001d000000000040043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000245011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d0000000806000029000002a102600198000000000101043b000003f60000c13d0000002003000039000004020000013d000002780010009c000003280000613d000002790010009c000003470000613d0000027a0010009c0000065d0000c13d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000201043b000002410020009c0000065d0000213d0000002401b00370000000000301043b0000000001000411000001680000013d000002630010009c0000037d0000613d000002640010009c000003820000613d000002650010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d000000000100041a00000241021001970000000005000411000000000052004b000003ed0000c13d0000024001100197000000000010041b00000000010004140000023d0010009c0000023d01008041000000c00110021000000242011001c70000800d0200003900000003030000390000024304000041000000000600001908f108e70000040f00000001002001900000065d0000613d0000000001000019000008f20001042e0000026e0010009c000003910000613d0000026f0010009c0000065d0000c13d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000800000001001d000002410010009c0000065d0000213d0000000001000411000000000010043f0000000201000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003900070000000b035308f108ec0000040f000000070300035f00000001002001900000065d0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000002401300370000000000101043b000700000001001d00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000101041a0000000702000029000000000021001a000004dd0000413d00000000032100190000000001000411000000080200002908f108670000040f000003a50000013d000002590010009c000003980000613d0000025a0010009c0000065d0000c13d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d000000000100041a00000241011001970000000002000411000000000021004b0000000001000039000000010100603908f107220000040f00000000010003670000000402100370000000000202043b0000000803000039000000000023041b0000002401100370000000000101043b0000000902000039000000000012041b0000000001000019000008f20001042e000002740010009c000003ad0000613d000002750010009c0000065d0000c13d000000640020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000800000001001d000002410010009c0000065d0000213d0000002401b00370000000000201043b000002410020009c0000065d0000213d0000004401b00370000000000301043b0000000801000029000700000003001d08f107350000040f0000000801000029000000000010043f0000000201000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000101041a000000070310006c000005660000813d000000400100043d0000006402100039000002930300004100000000003204350000004402100039000002940300004100000000003204350000002402100039000000280300003900000000003204350000024e0200004100000000002104350000000402100039000000200300003900000000003204350000023d0010009c0000023d01008041000000400110021000000289011001c7000008f3000104300000025f0010009c000003b20000613d000002600010009c0000065d0000c13d0000000001000416000000000001004b0000065d0000c13d0000000504000039000000000204041a000000010520019000000001012002700000007f0110618f0000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000000930000c13d000000800010043f000000000005004b0000045c0000613d000000000040043f000000000001004b000004610000613d00000284020000410000000004000019000000000502041a000000a003400039000000000053043500000001022000390000002004400039000000000014004b000001e80000413d000004610000013d000002690010009c0000023a0000613d0000026a0010009c0000065d0000c13d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000800000001001d000002410010009c0000065d0000213d0000002401b00370000000000201043b000000000002004b0000000001000039000000010100c039000700000002001d000000000012004b0000065d0000c13d000000000100041a00000241011001970000000002000411000000000021004b0000000001000039000000010100603908f107220000040f0000000801000029000000000010043f0000000a01000039000000200010043f0000004002000039000000000100001908f108bf0000040f000000000301041a000002a20230019700000007022001af000000000021041b0000000001000019000008f20001042e000002540010009c000003cf0000613d000002550010009c0000065d0000c13d000000240020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000601043b000002410060009c0000065d0000213d000000000100041a00000241021001970000000005000411000000000052004b000003ed0000c13d000000000006004b000004790000c13d0000024e01000041000000800010043f0000002001000039000000840010043f0000002601000039000000a40010043f0000027b01000041000000c40010043f0000027c01000041000000e40010043f0000027d01000041000008f3000104300000000001000416000000000001004b0000065d0000c13d0000006401000039000000800010043f0000027e01000041000008f20001042e000000000005004b0000000001000019000002450000613d000001000100043d0000000302500210000002a30220027f000002a302200167000000000121016f0000000102500210000000000121019f0000040f0000013d0000000001000416000000000001004b0000065d0000c13d0000000701000039000000000101041a0000024101100197000000800010043f0000027e01000041000008f20001042e0000000001000416000000000001004b0000065d0000c13d0000000601000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f0000027e01000041000008f20001042e000000240020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000002410010009c0000065d0000213d000000000200041a00000241022001970000000003000411000000000032004b000003ed0000c13d000000000001004b000004850000c13d0000024e01000041000000800010043f0000002001000039000000840010043f0000003d01000039000000a40010043f0000029001000041000000c40010043f0000029101000041000000e40010043f0000027d01000041000008f3000104300000000001000416000000000001004b0000065d0000c13d0000000001000412000c00000001001d000b00200000003d00000000010004150000000c0110008a000000050110021008f108d40000040f000000800010043f0000027e01000041000008f20001042e000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000401043b000002460040009c0000065d0000213d0000002301400039000000000021004b0000065d0000813d000000040540003900000000015b034f000000000301043b000002460030009c000000440000213d0000001f06300039000002a1066001970000003f06600039000002a1066001970000027f0060009c000000440000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b0000065d0000213d000000200450003900000000054b034f000002a1063001980000001f0730018f000000a004600039000002b30000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000002af0000c13d000000000007004b000002c00000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00330003900000000000304350000002403b00370000000000603043b000002460060009c0000065d0000213d0000002303600039000000000023004b0000065d0000813d000000040760003900000000037b034f000000000503043b000002460050009c000000440000213d0000001f03500039000002a1033001970000003f03300039000002a104300197000000400300043d0000000004430019000000000034004b00000000080000390000000108004039000002460040009c000000440000213d0000000100800190000000440000c13d000000400040043f000000000453043600000000065600190000002406600039000000000026004b0000065d0000213d000000200270003900000000062b034f000002a1075001980000001f0850018f0000000002740019000002ed0000613d000000000906034f000000000a040019000000009b09043c000000000aba043600000000002a004b000002e90000c13d000000000008004b000002fa0000613d000000000676034f0000000307800210000000000802043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f000000000062043500000000025400190000000000020435000000000200041a00000241022001970000000005000411000000000052004b000005690000c13d000000800500043d000002460050009c000000440000213d0000000402000039000000000702041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000000930000c13d000000200060008c000003200000413d000000000020043f0000001f075000390000000507700270000002800770009a000000200050008c00000281070040410000001f066000390000000506600270000002800660009a000000000067004b000003200000813d000000000007041b0000000107700039000000000067004b0000031c0000413d0000001f0050008c0000067e0000a13d000000000020043f000002a107500198000006890000c13d000000a0080000390000028106000041000006970000013d0000000001000416000000000001004b0000065d0000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000930000c13d000000800010043f000000000004004b000004630000613d000000000030043f000000000001004b0000000002000019000004680000613d00000281030000410000000002000019000000000403041a000000a005200039000000000045043500000001033000390000002002200039000000000012004b0000033f0000413d000004680000013d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000002460010009c0000065d0000213d0000002303100039000000000023004b0000065d0000813d000000040310003900000000033b034f000000000403043b000002460040009c000000440000213d00000005034002100000003f0530003900000295055001970000027f0050009c000000440000213d0000008005500039000000400050043f000000800040043f00000024011000390000000003130019000000000023004b0000065d0000213d000000000004004b0000036f0000613d000000a00200003900000000041b034f000000000404043b000002410040009c0000065d0000213d00000000024204360000002001100039000000000031004b000003670000413d0000002401b00370000000000101043b000000000200041a00000241022001970000000003000411000000000032004b000005690000c13d000000800200043d000000000002004b000005740000c13d000000400100043d0000004402100039000002a003000041000004cb0000013d0000000001000416000000000001004b0000065d0000c13d0000000801000039000003e90000013d000000240020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000002410010009c0000065d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000003e80000013d0000000001000416000000000001004b0000065d0000c13d0000001201000039000000800010043f0000027e01000041000008f20001042e000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000201043b000002410020009c0000065d0000213d0000002401b00370000000000301043b000000000100041108f107350000040f0000000101000039000000400200043d00000000001204350000023d0020009c0000023d02008041000000400120021000000286011001c7000008f20001042e0000000001000416000000000001004b0000065d0000c13d0000000901000039000003e90000013d000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000800000001001d000002410010009c0000065d0000213d0000002401b00370000000000101043b000000000200041a00000241022001970000000003000411000000000032004b000003ed0000c13d000000080000006b0000048e0000c13d0000024e01000041000000800010043f0000002001000039000000840010043f0000001901000039000000a40010043f0000028d01000041000000c40010043f0000028c01000041000008f300010430000000440020008c0000065d0000413d0000000001000416000000000001004b0000065d0000c13d0000000401b00370000000000101043b000002410010009c0000065d0000213d0000002402b00370000000000202043b000800000002001d000002410020009c0000065d0000213d000000000010043f0000000201000039000000200010043f0000004002000039000000000100001908f108bf0000040f0000000802000029000000000020043f000000200010043f0000000001000019000000400200003908f108bf0000040f000000000101041a000000800010043f0000027e01000041000008f20001042e0000024e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000029201000041000000c40010043f0000028c01000041000008f300010430000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000e0053000390000000005050433000000000051041b00000020033000390000000101100039000000000041004b000003fb0000c13d000000000062004b0000040c0000813d0000000302600210000000f80220018f000002a30220027f000002a302200167000000e0033000390000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000404000039000000000014041b000001200500043d000002460050009c000000440000213d0000000504000039000000000104041a000000010010019000000001031002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000121013f0000000100100190000000930000c13d000000200030008c0000043e0000413d000700000003001d000800000005001d000000000040043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000245011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d00000008050000290000001f025000390000000502200270000000200050008c0000000002004019000000000301043b00000007010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b00000005040000390000043e0000813d000000000002041b0000000102200039000000000012004b0000043a0000413d0000001f0050008c000004510000a13d000800000005001d000000000040043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000245011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d0000000806000029000002a102600198000000000101043b000004990000c13d0000014003000039000004a70000013d000000000005004b0000000001000019000004550000613d000001400100043d0000000302500210000002a30220027f000002a302200167000000000121016f0000000102500210000000000121019f000004b30000013d000002a202200197000000a00020043f000000000001004b000000a0030000390000008003006039000000600230008a000004690000013d000002a202200197000000a00020043f000000000001004b000000200200003900000000020060390000002002200039000000800100003908f107100000040f000000400100043d000800000001001d000000800200003908f106fb0000040f000000080200002900000000012100490000023d0010009c0000023d0100804100000060011002100000023d0020009c0000023d020080410000004002200210000000000121019f000008f20001042e0000024001100197000000000161019f000000000010041b00000000010004140000023d0010009c0000023d01008041000000c00110021000000242011001c70000800d02000039000000030300003900000243040000410000012e0000013d00000008011002100000028e011001970000000602000039000000000302041a0000028f03300197000000000113019f000000000012041b0000000001000019000008f20001042e000000000001004b000005360000c13d0000024e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000028b01000041000000c40010043f0000028c01000041000008f300010430000000010320008a0000000503300270000000000331001900000020040000390000000103300039000000000504001900000120044000390000000004040433000000000041041b00000020045000390000000101100039000000000031004b0000049e0000c13d0000014003500039000000000062004b000004b00000813d0000000302600210000000f80220018f000002a30220027f000002a3022001670000000003030433000000000223016f000000000021041b000000010160021000000001011001bf0000000504000039000000000014041b0000024701000041000000800010043f0000000603000039000000000103041a000002a201100197000000000013041b0000000702000039000000000102041a00000240011001970000dead011001bf000000000012041b000000a00000043f000000c00000043f0000000801000039000000000001041b0000000901000039000000000001041b0000000001000411000000000001004b000004d90000c13d000000400100043d00000044021000390000024d03000041000000000032043500000024021000390000001f0300003900000000003204350000024e0200004100000000002104350000000402100039000000200300003900000000003204350000023d0010009c0000023d0100804100000040011002100000024f011001c7000008f3000104300000000302000039000000000102041a000002480110009c000004e30000413d0000029901000041000000000010043f0000001101000039000000040010043f0000029a01000041000008f300010430000000000012041b0000000001000411000000000010043f0000000101000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000201041a000002480220009c000004dd0000813d000000000021041b0000024701000041000000400200043d00000000001204350000023d0020009c0000023d02008041000000400120021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000121019f00000245011001c70000800d0200003900000003030000390000024b040000410000000005000019000000000600041108f108e70000040f00000001002001900000065d0000613d0000000603000039000000000103041a000002a20110019700000001011001bf000000000013041b0000000001000411000000000010043f0000000a01000039000000200010043f0000004002000039000000000100001908f108bf0000040f000000000201041a000002a20220019700000001022001bf000000000021041b0000000601000039000000000101041a00000008011002700000024101100197000000000010043f0000000001000019000000400200003908f108bf0000040f000000000201041a000002a20220019700000001022001bf000000000021041b000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a000200443000000c00200043d0000004003000039000001c000300443000001e0002004430000010000100443000000030100003900000120001004430000024c01000041000008f20001042e0000028a031000d100000000011300d90000028a0010009c000004dd0000c13d0000000301000039000000000201041a000000000032001a000004dd0000413d000700000003001d0000000002320019000000000021041b0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000201041a0000000703000029000000000032001a000004dd0000413d0000000002320019000000000021041b000000400100043d00000000003104350000023d0010009c0000023d01008041000000400110021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000245011001c70000800d0200003900000003030000390000024b04000041000000000500001900000008060000290000012e0000013d00000008010000290000000002000411000001680000013d000000400100043d0000004402100039000002920300004100000000003204350000024e0200004100000000002104350000002402100039000000200300003900000000003204350000000402100039000004d30000013d000000000001004b0000057a0000c13d000000400100043d00000044021000390000028b030000410000056c0000013d0003028a001000d500000003011000f90000028a0010009c000004dd0000c13d0000000001000411000802410010019b000600000000001d00000006010000290000000501100210000000a0011000390000000001010433000702410010019c000006690000613d0000000602000039000000000202041a000000ff00200190000006700000613d000000000300041a00000008022002700000024102200198000005f40000613d0000000004000411000000000443013f00000241004001980000060e0000613d000000000113013f00000241001001980000060e0000613d000000080020006b0000000801000039000005fa0000c13d000000000101041a000000000001004b0000060e0000613d00000003021000b9000000030000006b000005a20000613d00000003032000fa000000000031004b000004dd0000c13d000000640220011a000000030120006b000004dd0000413d000400000002001d000500000001001d000000080000006b000006770000613d0000000701000039000000000101041a000202410010019c000006f10000613d0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000101041a00010004001000740000065f0000413d0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000201041a0000000403000029000000000032001a000004dd0000413d0000000002320019000000000021041b000000400100043d00000000003104350000023d0010009c0000023d01008041000000400110021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000245011001c70000800d0200003900000003030000390000024b040000410000000805000029000000020600002908f108e70000040f0000000100200190000006110000c13d0000065d0000013d0000024101300197000000080010006b0000060e0000613d000000070010006b0000060e0000613d000006ca0000013d000000070020006b0000060e0000c13d0000000801000029000000000010043f0000000a01000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000101041a000000ff001001900000000901000039000005990000613d000000080000006b000500030000002d000006770000613d0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000101041a00040005001000740000065f0000413d0000000801000029000000000010043f0000000101000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b0000000402000029000000000021041b0000000701000029000000000010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001002001900000065d0000613d000000000101043b000000000201041a0000000503000029000000000032001a000004dd0000413d0000000002320019000000000021041b000000400100043d00000000003104350000023d0010009c0000023d01008041000000400110021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000245011001c70000800d0200003900000003030000390000024b040000410000000805000029000000070600002908f108e70000040f00000001002001900000065d0000613d0000000602000029000600010020003d000000800100043d000000060010006b000005810000413d000001310000013d0000000001000019000008f300010430000000400100043d00000064021000390000029b03000041000000000032043500000044021000390000029c03000041000000000032043500000024021000390000002603000039000001c30000013d000000400100043d00000044021000390000028d03000041000000000032043500000024021000390000001903000039000004ce0000013d000000400100043d00000044021000390000029f03000041000000000032043500000024021000390000001c03000039000004ce0000013d000000400100043d00000064021000390000029d03000041000000000032043500000044021000390000029e03000041000000850000013d000000000005004b0000000006000019000006820000613d000000a00600043d0000000307500210000002a30770027f000002a307700167000000000676016f0000000105500210000000000556019f000006a20000013d00000281060000410000002009000039000000010870008a0000000508800270000002820880009a000000000a09001900000080099000390000000009090433000000000096041b0000002009a000390000000106600039000000000086004b0000068e0000c13d000000a008a00039000000000057004b000006a00000813d0000000307500210000000f80770018f000002a30770027f000002a3077001670000000008080433000000000778016f000000000076041b000000010550021000000001055001bf000000000052041b0000000005030433000002460050009c000000440000213d0000000502000039000000000702041a000000010070019000000001067002700000007f0660618f0000001f0060008c00000000080000390000000108002039000000000787013f0000000100700190000000930000c13d000000200060008c000006c20000413d000000000020043f0000001f075000390000000507700270000002830770009a000000200050008c00000284070040410000001f066000390000000506600270000002830660009a000000000067004b000006c20000813d000000000007041b0000000107700039000000000067004b000006be0000413d0000001f0050008c000006ce0000a13d000000000020043f000002a106500198000006d80000c13d00000020040000390000028401000041000006e40000013d000000400100043d000000440210003900000298030000410000056c0000013d000000000005004b0000000001000019000006d20000613d00000000010404330000000303500210000002a30330027f000002a303300167000000000331016f00000001015002100000048a0000013d00000284010000410000002004000039000000010760008a0000000507700270000002850770009a00000000083400190000000008080433000000000081041b00000020044000390000000101100039000000000071004b000006dd0000c13d000000000056004b000006ee0000813d0000000306500210000000f80660018f000002a30660027f000002a30660016700000000033400190000000003030433000000000363016f000000000031041b000000010100003900000001035002100000048a0000013d000000400100043d00000064021000390000029603000041000000000032043500000044021000390000029703000041000000000032043500000024021000390000002303000039000001c30000013d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b0000070a0000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000007030000413d000000000321001900000000000304350000001f02200039000002a1022001970000000001210019000000000001042d0000001f02200039000002a1022001970000000001120019000000000021004b00000000020000390000000102004039000002460010009c0000071c0000213d00000001002001900000071c0000c13d000000400010043f000000000001042d0000029901000041000000000010043f0000004101000039000000040010043f0000029a01000041000008f300010430000000000001004b000007250000613d000000000001042d000000400100043d0000004402100039000002920300004100000000003204350000024e020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000023d0010009c0000023d0100804100000040011002100000024f011001c7000008f300010430000700000000000200000000070100190000000601000039000000000101041a000000ff00100190000008500000613d0000000006020019000000000200041a000000080110027000000241011001980000000105000039000700000003001d000007ac0000613d000000000372013f0000024100300198000007d50000613d000000000262013f0000024100200198000007d50000613d0000024108700197000000000018004b000600000006001d000500000007001d000007be0000c13d00000008010000390000000704000029000000000101041a000000000001004b000007d50000613d00000000024100a9000000000004004b000007580000613d00000000034200d9000000000031004b000008610000c13d000000640120011a000000000414004b000008610000413d000700000004001d000000000008004b000008280000613d000300000001001d0000000701000039000000000101041a000202410010019c000008320000613d000400000008001d000000000080043f000000200050043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001030000390000000100200190000008260000613d000000000101043b000000000101041a00010003001000740000083c0000413d0000000401000029000000000010043f000000200030043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f0000000100200190000008260000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f0000000100200190000008260000613d000000000101043b000000000201041a0000000303000029000000000032001a0000000405000029000008610000413d0000000002320019000000000021041b000000400100043d00000000003104350000023d0010009c0000023d01008041000000400110021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000245011001c70000800d0200003900000003030000390000024b04000041000000020600002908f108e70000040f0000000507000029000000060600002900000001050000390000000100200190000007d50000c13d000008260000013d00000241012001970000024102700197000000000012004b000007d50000613d0000024102600197000000000012004b000007d50000613d000000400100043d0000004402100039000002980300004100000000003204350000024e02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000085b0000013d0000024102600197000000000012004b000007d50000c13d000400000008001d000000000080043f0000000a01000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f0000000507000029000000060600002900000001050000390000000100200190000008260000613d000000000101043b000000000101041a000000ff001001900000081f0000613d0000024101700198000008280000613d000502410060019c000008320000613d000600000001001d000000000010043f000000200050043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f00000001030000390000000100200190000008260000613d000000000101043b000000000101041a00040007001000740000083c0000413d0000000601000029000000000010043f000000200030043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f0000000100200190000008260000613d000000000101043b0000000402000029000000000021041b0000000501000029000000000010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f0000000100200190000008260000613d000000000101043b000000000201041a0000000703000029000000000032001a000008610000413d0000000002320019000000000021041b000000400100043d00000000003104350000023d0010009c0000023d01008041000000400110021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000245011001c70000800d0200003900000003030000390000024b040000410000000605000029000000050600002908f108e70000040f0000000100200190000008260000613d000000000001042d000000090100003900000007040000290000000408000029000000000101041a000000000001004b000007520000c13d000007d50000013d0000000001000019000008f300010430000000400100043d00000064021000390000029d03000041000000000032043500000044021000390000029e03000041000000000032043500000024021000390000002503000039000008450000013d000000400100043d00000064021000390000029603000041000000000032043500000044021000390000029703000041000000000032043500000024021000390000002303000039000008450000013d000000400100043d00000064021000390000029b03000041000000000032043500000044021000390000029c0300004100000000003204350000002402100039000000260300003900000000003204350000024e0200004100000000002104350000000402100039000000200300003900000000003204350000023d0010009c0000023d01008041000000400110021000000289011001c7000008f300010430000000400100043d00000044021000390000029f03000041000000000032043500000024021000390000001c0300003900000000003204350000024e0200004100000000002104350000000402100039000000200300003900000000003204350000023d0010009c0000023d0100804100000040011002100000024f011001c7000008f3000104300000029901000041000000000010043f0000001101000039000000040010043f0000029a01000041000008f30001043000030000000000020000024101100198000008a00000613d000200000003001d000302410020019c000008aa0000613d000100000001001d000000000010043f0000000201000039000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f000000010020019000000003030000290000089e0000613d000000000101043b000000000030043f000000200010043f00000000010004140000023d0010009c0000023d01008041000000c00110021000000249011001c7000080100200003908f108ec0000040f000000030600002900000001002001900000089e0000613d000000000101043b0000000202000029000000000021041b000000400100043d00000000002104350000023d0010009c0000023d01008041000000400110021000000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000245011001c70000800d020000390000000303000039000002a404000041000000010500002908f108e70000040f00000001002001900000089e0000613d000000000001042d0000000001000019000008f300010430000000400100043d0000006402100039000002a70300004100000000003204350000004402100039000002a803000041000000000032043500000024021000390000002403000039000008b30000013d000000400100043d0000006402100039000002a50300004100000000003204350000004402100039000002a60300004100000000003204350000002402100039000000220300003900000000003204350000024e0200004100000000002104350000000402100039000000200300003900000000003204350000023d0010009c0000023d01008041000000400110021000000289011001c7000008f300010430000000000001042f0000023d0010009c0000023d0100804100000040011002100000023d0020009c0000023d020080410000006002200210000000000112019f00000000020004140000023d0020009c0000023d02008041000000c002200210000000000112019f00000242011001c7000080100200003908f108ec0000040f0000000100200190000008d20000613d000000000101043b000000000001042d0000000001000019000008f300010430000002a90200004100000000002004430000000501100270000000000201003100000004002004430000000101010031000000240010044300000000010004140000023d0010009c0000023d01008041000000c001100210000002aa011001c7000080050200003908f108ec0000040f0000000100200190000008e60000613d000000000101043b000000000001042d000000000001042f000008ea002104210000000102000039000000000001042d0000000002000019000000000001042d000008ef002104230000000102000039000000000001042d0000000002000019000000000001042d000008f100000432000008f20001042e000008f30001043000000000000000000000000000000000000000000000000000000000ffffffff46726f737465646672656e7a000000000000000000000000000000000000000046726f7374656400000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000084595161401484a000000fffffffffffffffffffffffffffffffffffffffffff7ba6ae9ebfeb7b60000000200000000000000000000000000000000000040000000000000000000000000fffffffffffffffffffffffffffffffffffffffffff7ba6ae9ebfeb7b5ffffffddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000010000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000058a1aaad00000000000000000000000000000000000000000000000000000000985bdfd000000000000000000000000000000000000000000000000000000000bf0058cf00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000bf0058d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b715af7600000000000000000000000000000000000000000000000000000000985bdfd100000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000008187f515000000000000000000000000000000000000000000000000000000008ee6f96b000000000000000000000000000000000000000000000000000000008ee6f96c0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008187f516000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000058a1aaae0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000027c8f8340000000000000000000000000000000000000000000000000000000047062401000000000000000000000000000000000000000000000000000000004c255c96000000000000000000000000000000000000000000000000000000004c255c97000000000000000000000000000000000000000000000000000000004e148e1900000000000000000000000000000000000000000000000000000000470624020000000000000000000000000000000000000000000000000000000049bd5a5e00000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000027c8f835000000000000000000000000000000000000000000000000000000002b14ca5600000000000000000000000000000000000000000000000000000000158ef93d0000000000000000000000000000000000000000000000000000000021326f080000000000000000000000000000000000000000000000000000000021326f090000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000158ef93e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000008b3e41900000000000000000000000000000000000000000000000000000000095ea7b34f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e64fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c250036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0fc949c7b4a13586e39d89eead2f38644f9fb3efb5a0490b14f8fc0ceab44c24f0000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a7640000416d6f756e74206d7573742062652067726561746572207468616e207a65726f0000000000000000000000000000000000000064000000800000000000000000496e76616c696420726563697069656e742061646472657373000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff0000000000000000000000000000000000000000ff544553543a2054686520556e6973776170205632207061697220616464726573732063616e6e6f7420626520746865207a65726f20616464726573732e0000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472436f6e74726163743a2074726164696e67206973206e6f7420737461727465644e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164436f6e74726163743a207472616465206973206e6f74206f70656e2100000000526563697069656e7473206c6973742063616e6e6f7420626520656d70747900ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000daa63cf2cb8a6e03511d1832f2c733c73d07d8396f3d08a495f6da253448b4e8
[ 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.