ERC-20
Overview
Max Total Supply
420,000,000,000,000 GARY
Holders
235
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.540763886915804116 GARYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GARY
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-17 */ // SPDX-License-Identifier: MIT /* Probably N0thing ♥ Website: https://www.GaryCashToken.io Twitter: https://twitter.com/GaryCashToken ,;;;;;;, ,;;;'""`;;\ ,;;;/ .'`',;\ ,;;;;/ | \|_ /;;;;; \ / .\ ,;;;;;;| '. \/_/ /;;;;;;;| \ _,.---._ /;;;;;;;;| ; _.---.,_ .;;/ `.;;;;;;;;;| ;' \;;, .;;;/ `;;;;;;;;;.._ .' \;;;. /;;;;| _;-"` `"-;_ |;;;;\ |;;;;;|.---. .' __.-"```"-.__ '. .---.|;;;;;| |;;;;;| `\/ .'/__\ /__\'. \/` |;;;;;| |;;;;;| |_/ // \\ // \\ \_| |;;;;;| |;;;;;| |/ |/ || || \| \| |;;;;;| \;;;;| __ || _ .-.\| |/.-. _ || __ |;;;;/ \;;;| / _\|/ = /_$_\ /_$_\ = \|/_ \ |;;;/ \;;/ |`.- ` ` ` ` -.`| \;;/ _|;' \ | _ _ _ _ | / ';|_ / .\ \\_ ( '--'( )'--' ) _// /. \ \/_/ \_/| /_ | | _\ |\_/ \_\/ | /|\\ \ / //|\ | | | \'._'-'_.'/ | | | ; '-.```.-' ; | | \ ``` / | __ ; '.-$GARY-.' ; __ /\ \_ __..--\ `-$$$-' /--..__ _/ /\ \_'/\`''---''`..;;;;.'.__, ,__.',;;;;..`''---''`/\'_/ '-.__'';;;;;;;;;;;,,'._ _.',,;;;;;;;;;;;''__.-' ``''--; ;;;;;;;;..`"`..;;;;;;;; ;--''`` _ .-. /,;;;;;;;';;;;;;;;;';;;;;;;,\ _.-' `\ .' /_ /,;;;;;;'/| ;;;;;;; |\';;;;;;,\ `\ '-'| / ) /,;;;;;',' | ;;;;;;; | ',';;;;;,\ \ .'-./ `'-..-' /,;;;;',' | ;;;;;;; | ',';;;;,\ `"` | ;;;',' | ;;;;;;; | , ', ;;;'| _\__.-' .-. ; ;;;;;;; ; |'-. '-.__/_ / .\ ( ) \';;;;;'/ | | /. \ \/_/ (` `) \';;;'/ '-._| \_\/ '-/ \-' '._.' ` """ /.`\ \|_/ */ // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; 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: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (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/[email protected]/utils/Context.sol // 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; } } // File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/GARY_FINISH.sol pragma solidity ^0.8.0; contract GARY is ERC20, Ownable { uint256 private constant _totalSupply = 420000000000000 * 10**18; bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor() ERC20("GARY", "GARY") { _mint(msg.sender, _totalSupply); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040805180820182526004808252634741525960e01b60208084018281528551808701909652928552840152815191929162000051916003916200036c565b508051620000679060049060208401906200036c565b505050620000846200007e620000a460201b60201c565b620000a8565b6200009e336d14b5253145b397d6545100000000620000fa565b62000530565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200012c5760405162461bcd60e51b8152600401620001239062000469565b60405180910390fd5b6200013a60008383620001bc565b80600260008282546200014e9190620004ce565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001a2908590620004c5565b60405180910390a3620001b8600083836200033d565b5050565b6001600160a01b03821660009081526009602052604090205460ff16158015620001ff57506001600160a01b03831660009081526009602052604090205460ff16155b6200021e5760405162461bcd60e51b81526004016200012390620004a0565b6008546001600160a01b031662000298576200023962000342565b6001600160a01b0316836001600160a01b031614806200027357506200025e62000342565b6001600160a01b0316826001600160a01b0316145b620002925760405162461bcd60e51b8152600401620001239062000432565b6200033d565b600554600160a01b900460ff168015620002bf57506008546001600160a01b038481169116145b156200033d5760065481620002df846200035160201b6200046e1760201c565b620002eb9190620004ce565b111580156200031e5750600754816200030f846200035160201b6200046e1760201c565b6200031b9190620004ce565b10155b6200033d5760405162461bcd60e51b8152600401620001239062000412565b505050565b6005546001600160a01b031690565b6001600160a01b031660009081526020819052604090205490565b8280546200037a90620004f3565b90600052602060002090601f0160209004810192826200039e5760008555620003e9565b82601f10620003b957805160ff1916838001178555620003e9565b82800160010185558215620003e9579182015b82811115620003e9578251825591602001919060010190620003cc565b50620003f7929150620003fb565b5090565b5b80821115620003f75760008155600101620003fc565b602080825260069082015265119bdc989a5960d21b604082015260600190565b60208082526016908201527f74726164696e67206973206e6f74207374617274656400000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60008219821115620004ee57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200050857607f821691505b602082108114156200052a57634e487b7160e01b600052602260045260246000fd5b50919050565b610eb180620005406000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461024d57806395d89b4114610255578063a457c2d71461025d578063a9059cbb14610270578063dd62ed3e14610283578063f2fde38b1461029657610137565b806349bd5a5e1461020d57806370a0823114610222578063715018a614610235578063860a32ec1461023d57806389f9a1d31461024557610137565b806323b872dd116100ff57806323b872dd146101aa578063313ce567146101bd57806339509351146101d25780633aa633aa146101e5578063404e5129146101fa57610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461017a57806318160ddd1461018d5780631ab99e12146101a2575b600080fd5b6101446102a9565b6040516101519190610af2565b60405180910390f35b61016d610168366004610a69565b61033b565b6040516101519190610ae7565b61016d6101883660046109b2565b61035d565b610195610372565b6040516101519190610e05565b610195610378565b61016d6101b8366004610a05565b61037e565b6101c56103ac565b6040516101519190610e0e565b61016d6101e0366004610a69565b6103b1565b6101f86101f3366004610a92565b6103dd565b005b6101f8610208366004610a40565b61042c565b61021561045f565b6040516101519190610ad3565b6101956102303660046109b2565b61046e565b6101f861048d565b61016d6104a1565b6101956104b1565b6102156104b7565b6101446104c6565b61016d61026b366004610a69565b6104d5565b61016d61027e366004610a69565b610526565b6101956102913660046109d3565b61053e565b6101f86102a43660046109b2565b610569565b6060600380546102b890610e40565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610e40565b80156103315780601f1061030657610100808354040283529160200191610331565b820191906000526020600020905b81548152906001019060200180831161031457829003601f168201915b5050505050905090565b6000806103466105a3565b90506103538185856105a7565b5060019392505050565b60096020526000908152604090205460ff1681565b60025490565b60075481565b6000806103896105a3565b905061039685828561065b565b6103a18585856106a5565b506001949350505050565b601290565b6000806103bc6105a3565b90506103538185856103ce858961053e565b6103d89190610e1c565b6105a7565b6103e56107a6565b60058054941515600160a01b0260ff60a01b1990951694909417909355600880546001600160a01b039093166001600160a01b031990931692909217909155600655600755565b6104346107a6565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6008546001600160a01b031681565b6001600160a01b0381166000908152602081905260409020545b919050565b6104956107a6565b61049f60006107e5565b565b600554600160a01b900460ff1681565b60065481565b6005546001600160a01b031690565b6060600480546102b890610e40565b6000806104e06105a3565b905060006104ee828661053e565b9050838110156105195760405162461bcd60e51b815260040161051090610d9b565b60405180910390fd5b6103a182868684036105a7565b6000806105316105a3565b90506103538185856106a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105716107a6565b6001600160a01b0381166105975760405162461bcd60e51b815260040161051090610b88565b6105a0816107e5565b50565b3390565b6001600160a01b0383166105cd5760405162461bcd60e51b815260040161051090610d57565b6001600160a01b0382166105f35760405162461bcd60e51b815260040161051090610bce565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061064e908590610e05565b60405180910390a3505050565b6000610667848461053e565b9050600019811461069f57818110156106925760405162461bcd60e51b815260040161051090610c10565b61069f84848484036105a7565b50505050565b6001600160a01b0383166106cb5760405162461bcd60e51b815260040161051090610d12565b6001600160a01b0382166106f15760405162461bcd60e51b815260040161051090610b45565b6106fc838383610837565b6001600160a01b038316600090815260208190526040902054818110156107355760405162461bcd60e51b815260040161051090610c47565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610793908690610e05565b60405180910390a361069f848484610986565b6107ae6105a3565b6001600160a01b03166107bf6104b7565b6001600160a01b03161461049f5760405162461bcd60e51b815260040161051090610cad565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526009602052604090205460ff1615801561087957506001600160a01b03831660009081526009602052604090205460ff16155b6108955760405162461bcd60e51b815260040161051090610de0565b6008546001600160a01b0316610905576108ad6104b7565b6001600160a01b0316836001600160a01b031614806108e457506108cf6104b7565b6001600160a01b0316826001600160a01b0316145b6109005760405162461bcd60e51b815260040161051090610ce2565b610986565b600554600160a01b900460ff16801561092b57506008546001600160a01b038481169116145b15610986576006548161093d8461046e565b6109479190610e1c565b1115801561096a57506007548161095d8461046e565b6109679190610e1c565b10155b6109865760405162461bcd60e51b815260040161051090610c8d565b505050565b80356001600160a01b038116811461048857600080fd5b8035801515811461048857600080fd5b6000602082840312156109c3578081fd5b6109cc8261098b565b9392505050565b600080604083850312156109e5578081fd5b6109ee8361098b565b91506109fc6020840161098b565b90509250929050565b600080600060608486031215610a19578081fd5b610a228461098b565b9250610a306020850161098b565b9150604084013590509250925092565b60008060408385031215610a52578182fd5b610a5b8361098b565b91506109fc602084016109a2565b60008060408385031215610a7b578182fd5b610a848361098b565b946020939093013593505050565b60008060008060808587031215610aa7578081fd5b610ab0856109a2565b9350610abe6020860161098b565b93969395505050506040820135916060013590565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b1e57858101830151858201604001528201610b02565b81811115610b2f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610e3b57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610e5457607f821691505b60208210811415610e7557634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220e015211fe08a8cd703b35e527fc403f849aa8de83dd21b4f4c0e16924774561d64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461024d57806395d89b4114610255578063a457c2d71461025d578063a9059cbb14610270578063dd62ed3e14610283578063f2fde38b1461029657610137565b806349bd5a5e1461020d57806370a0823114610222578063715018a614610235578063860a32ec1461023d57806389f9a1d31461024557610137565b806323b872dd116100ff57806323b872dd146101aa578063313ce567146101bd57806339509351146101d25780633aa633aa146101e5578063404e5129146101fa57610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461017a57806318160ddd1461018d5780631ab99e12146101a2575b600080fd5b6101446102a9565b6040516101519190610af2565b60405180910390f35b61016d610168366004610a69565b61033b565b6040516101519190610ae7565b61016d6101883660046109b2565b61035d565b610195610372565b6040516101519190610e05565b610195610378565b61016d6101b8366004610a05565b61037e565b6101c56103ac565b6040516101519190610e0e565b61016d6101e0366004610a69565b6103b1565b6101f86101f3366004610a92565b6103dd565b005b6101f8610208366004610a40565b61042c565b61021561045f565b6040516101519190610ad3565b6101956102303660046109b2565b61046e565b6101f861048d565b61016d6104a1565b6101956104b1565b6102156104b7565b6101446104c6565b61016d61026b366004610a69565b6104d5565b61016d61027e366004610a69565b610526565b6101956102913660046109d3565b61053e565b6101f86102a43660046109b2565b610569565b6060600380546102b890610e40565b80601f01602080910402602001604051908101604052809291908181526020018280546102e490610e40565b80156103315780601f1061030657610100808354040283529160200191610331565b820191906000526020600020905b81548152906001019060200180831161031457829003601f168201915b5050505050905090565b6000806103466105a3565b90506103538185856105a7565b5060019392505050565b60096020526000908152604090205460ff1681565b60025490565b60075481565b6000806103896105a3565b905061039685828561065b565b6103a18585856106a5565b506001949350505050565b601290565b6000806103bc6105a3565b90506103538185856103ce858961053e565b6103d89190610e1c565b6105a7565b6103e56107a6565b60058054941515600160a01b0260ff60a01b1990951694909417909355600880546001600160a01b039093166001600160a01b031990931692909217909155600655600755565b6104346107a6565b6001600160a01b03919091166000908152600960205260409020805460ff1916911515919091179055565b6008546001600160a01b031681565b6001600160a01b0381166000908152602081905260409020545b919050565b6104956107a6565b61049f60006107e5565b565b600554600160a01b900460ff1681565b60065481565b6005546001600160a01b031690565b6060600480546102b890610e40565b6000806104e06105a3565b905060006104ee828661053e565b9050838110156105195760405162461bcd60e51b815260040161051090610d9b565b60405180910390fd5b6103a182868684036105a7565b6000806105316105a3565b90506103538185856106a5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105716107a6565b6001600160a01b0381166105975760405162461bcd60e51b815260040161051090610b88565b6105a0816107e5565b50565b3390565b6001600160a01b0383166105cd5760405162461bcd60e51b815260040161051090610d57565b6001600160a01b0382166105f35760405162461bcd60e51b815260040161051090610bce565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061064e908590610e05565b60405180910390a3505050565b6000610667848461053e565b9050600019811461069f57818110156106925760405162461bcd60e51b815260040161051090610c10565b61069f84848484036105a7565b50505050565b6001600160a01b0383166106cb5760405162461bcd60e51b815260040161051090610d12565b6001600160a01b0382166106f15760405162461bcd60e51b815260040161051090610b45565b6106fc838383610837565b6001600160a01b038316600090815260208190526040902054818110156107355760405162461bcd60e51b815260040161051090610c47565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610793908690610e05565b60405180910390a361069f848484610986565b6107ae6105a3565b6001600160a01b03166107bf6104b7565b6001600160a01b03161461049f5760405162461bcd60e51b815260040161051090610cad565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526009602052604090205460ff1615801561087957506001600160a01b03831660009081526009602052604090205460ff16155b6108955760405162461bcd60e51b815260040161051090610de0565b6008546001600160a01b0316610905576108ad6104b7565b6001600160a01b0316836001600160a01b031614806108e457506108cf6104b7565b6001600160a01b0316826001600160a01b0316145b6109005760405162461bcd60e51b815260040161051090610ce2565b610986565b600554600160a01b900460ff16801561092b57506008546001600160a01b038481169116145b15610986576006548161093d8461046e565b6109479190610e1c565b1115801561096a57506007548161095d8461046e565b6109679190610e1c565b10155b6109865760405162461bcd60e51b815260040161051090610c8d565b505050565b80356001600160a01b038116811461048857600080fd5b8035801515811461048857600080fd5b6000602082840312156109c3578081fd5b6109cc8261098b565b9392505050565b600080604083850312156109e5578081fd5b6109ee8361098b565b91506109fc6020840161098b565b90509250929050565b600080600060608486031215610a19578081fd5b610a228461098b565b9250610a306020850161098b565b9150604084013590509250925092565b60008060408385031215610a52578182fd5b610a5b8361098b565b91506109fc602084016109a2565b60008060408385031215610a7b578182fd5b610a848361098b565b946020939093013593505050565b60008060008060808587031215610aa7578081fd5b610ab0856109a2565b9350610abe6020860161098b565b93969395505050506040820135916060013590565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b1e57858101830151858201604001528201610b02565b81811115610b2f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b602080825260069082015265119bdc989a5960d21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610e3b57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610e5457607f821691505b60208210811415610e7557634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220e015211fe08a8cd703b35e527fc403f849aa8de83dd21b4f4c0e16924774561d64736f6c63430008000033
Deployed Bytecode Sourcemap
26146:1347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12373:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14733:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26398:42::-;;;;;;:::i;:::-;;:::i;13502:108::-;;;:::i;:::-;;;;;;;:::i;26323:31::-;;;:::i;15514:261::-;;;;;;:::i;:::-;;:::i;13344:93::-;;;:::i;:::-;;;;;;;:::i;16184:238::-;;;;;;:::i;:::-;;:::i;26688:285::-;;;;;;:::i;:::-;;:::i;:::-;;26549:131;;;;;;:::i;:::-;;:::i;26362:28::-;;;:::i;:::-;;;;;;;:::i;13673:127::-;;;;;;:::i;:::-;;:::i;25248:103::-;;;:::i;26257:19::-;;;:::i;26284:31::-;;;:::i;24607:87::-;;;:::i;12592:104::-;;;:::i;16925:436::-;;;;;;:::i;:::-;;:::i;14006:193::-;;;;;;:::i;:::-;;:::i;14262:151::-;;;;;;:::i;:::-;;:::i;25506:201::-;;;;;;:::i;:::-;;:::i;12373:100::-;12427:13;12460:5;12453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12373:100;:::o;14733:201::-;14816:4;14833:13;14849:12;:10;:12::i;:::-;14833:28;;14872:32;14881:5;14888:7;14897:6;14872:8;:32::i;:::-;-1:-1:-1;14922:4:0;;14733:201;-1:-1:-1;;;14733:201:0:o;26398:42::-;;;;;;;;;;;;;;;:::o;13502:108::-;13590:12;;13502:108;:::o;26323:31::-;;;;:::o;15514:261::-;15611:4;15628:15;15646:12;:10;:12::i;:::-;15628:30;;15669:38;15685:4;15691:7;15700:6;15669:15;:38::i;:::-;15718:27;15728:4;15734:2;15738:6;15718:9;:27::i;:::-;-1:-1:-1;15763:4:0;;15514:261;-1:-1:-1;;;;15514:261:0:o;13344:93::-;13427:2;13344:93;:::o;16184:238::-;16272:4;16289:13;16305:12;:10;:12::i;:::-;16289:28;;16328:64;16337:5;16344:7;16381:10;16353:25;16363:5;16370:7;16353:9;:25::i;:::-;:38;;;;:::i;:::-;16328:8;:64::i;26688:285::-;24493:13;:11;:13::i;:::-;26824:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;26824:18:0::1;-1:-1:-1::0;;;;26824:18:0;;::::1;::::0;;;::::1;::::0;;;26849:13:::1;:30:::0;;-1:-1:-1;;;;;26849:30:0;;::::1;-1:-1:-1::0;;;;;;26849:30:0;;::::1;::::0;;;::::1;::::0;;;26886:16:::1;:36:::0;26929:16:::1;:36:::0;26688:285::o;26549:131::-;24493:13;:11;:13::i;:::-;-1:-1:-1;;;;;26634:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;26634:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26549:131::o;26362:28::-;;;-1:-1:-1;;;;;26362:28:0;;:::o;13673:127::-;-1:-1:-1;;;;;13774:18:0;;13747:7;13774:18;;;;;;;;;;;13673:127;;;;:::o;25248:103::-;24493:13;:11;:13::i;:::-;25313:30:::1;25340:1;25313:18;:30::i;:::-;25248:103::o:0;26257:19::-;;;-1:-1:-1;;;26257:19:0;;;;;:::o;26284:31::-;;;;:::o;24607:87::-;24680:6;;-1:-1:-1;;;;;24680:6:0;24607:87;:::o;12592:104::-;12648:13;12681:7;12674:14;;;;;:::i;16925:436::-;17018:4;17035:13;17051:12;:10;:12::i;:::-;17035:28;;17074:24;17101:25;17111:5;17118:7;17101:9;:25::i;:::-;17074:52;;17165:15;17145:16;:35;;17137:85;;;;-1:-1:-1;;;17137:85:0;;;;;;;:::i;:::-;;;;;;;;;17258:60;17267:5;17274:7;17302:15;17283:16;:34;17258:8;:60::i;14006:193::-;14085:4;14102:13;14118:12;:10;:12::i;:::-;14102:28;;14141;14151:5;14158:2;14162:6;14141:9;:28::i;14262:151::-;-1:-1:-1;;;;;14378:18:0;;;14351:7;14378:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14262:151::o;25506:201::-;24493:13;:11;:13::i;:::-;-1:-1:-1;;;;;25595:22:0;::::1;25587:73;;;;-1:-1:-1::0;;;25587:73:0::1;;;;;;;:::i;:::-;25671:28;25690:8;25671:18;:28::i;:::-;25506:201:::0;:::o;10005:98::-;10085:10;10005:98;:::o;20918:346::-;-1:-1:-1;;;;;21020:19:0;;21012:68;;;;-1:-1:-1;;;21012:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21099:21:0;;21091:68;;;;-1:-1:-1;;;21091:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21172:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21224:32;;;;;21202:6;;21224:32;:::i;:::-;;;;;;;;20918:346;;;:::o;21555:419::-;21656:24;21683:25;21693:5;21700:7;21683:9;:25::i;:::-;21656:52;;-1:-1:-1;;21723:16:0;:37;21719:248;;21805:6;21785:16;:26;;21777:68;;;;-1:-1:-1;;;21777:68:0;;;;;;;:::i;:::-;21889:51;21898:5;21905:7;21933:6;21914:16;:25;21889:8;:51::i;:::-;21555:419;;;;:::o;17831:806::-;-1:-1:-1;;;;;17928:18:0;;17920:68;;;;-1:-1:-1;;;17920:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18007:16:0;;17999:64;;;;-1:-1:-1;;;17999:64:0;;;;;;;:::i;:::-;18076:38;18097:4;18103:2;18107:6;18076:20;:38::i;:::-;-1:-1:-1;;;;;18149:15:0;;18127:19;18149:15;;;;;;;;;;;18183:21;;;;18175:72;;;;-1:-1:-1;;;18175:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18283:15:0;;;:9;:15;;;;;;;;;;;18301:20;;;18283:38;;18501:13;;;;;;;;;;:23;;;;;;18553:26;;;;;;18315:6;;18553:26;:::i;:::-;;;;;;;;18592:37;18612:4;18618:2;18622:6;18592:19;:37::i;24772:132::-;24847:12;:10;:12::i;:::-;-1:-1:-1;;;;;24836:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24836:23:0;;24828:68;;;;-1:-1:-1;;;24828:68:0;;;;;;;:::i;25867:191::-;25960:6;;;-1:-1:-1;;;;;25977:17:0;;;-1:-1:-1;;;;;;25977:17:0;;;;;;;26010:40;;25960:6;;;25977:17;25960:6;;26010:40;;25941:16;;26010:40;25867:191;;:::o;26981:509::-;-1:-1:-1;;;;;27117:14:0;;;;;;:10;:14;;;;;;;;27116:15;:36;;;;-1:-1:-1;;;;;;27136:16:0;;;;;;:10;:16;;;;;;;;27135:17;27116:36;27108:60;;;;-1:-1:-1;;;27108:60:0;;;;;;;:::i;:::-;27181:13;;-1:-1:-1;;;;;27181:13:0;27177:128;;27233:7;:5;:7::i;:::-;-1:-1:-1;;;;;27225:15:0;:4;-1:-1:-1;;;;;27225:15:0;;:32;;;;27250:7;:5;:7::i;:::-;-1:-1:-1;;;;;27244:13:0;:2;-1:-1:-1;;;;;27244:13:0;;27225:32;27217:67;;;;-1:-1:-1;;;27217:67:0;;;;;;;:::i;:::-;27291:7;;27177:128;27317:7;;-1:-1:-1;;;27317:7:0;;;;:32;;;;-1:-1:-1;27336:13:0;;-1:-1:-1;;;;;27328:21:0;;;27336:13;;27328:21;27317:32;27313:172;;;27398:16;;27388:6;27366:19;27382:2;27366:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;27450:16;;27440:6;27418:19;27434:2;27418:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;27366:100;27358:119;;;;-1:-1:-1;;;27358:119:0;;;;;;;:::i;:::-;26981:509;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:162;261:20;;317:13;;310:21;300:32;;290:2;;346:1;343;336:12;361:198;;473:2;461:9;452:7;448:23;444:32;441:2;;;494:6;486;479:22;441:2;522:31;543:9;522:31;:::i;:::-;512:41;431:128;-1:-1:-1;;;431:128:1:o;564:274::-;;;693:2;681:9;672:7;668:23;664:32;661:2;;;714:6;706;699:22;661:2;742:31;763:9;742:31;:::i;:::-;732:41;;792:40;828:2;817:9;813:18;792:40;:::i;:::-;782:50;;651:187;;;;;:::o;843:342::-;;;;989:2;977:9;968:7;964:23;960:32;957:2;;;1010:6;1002;995:22;957:2;1038:31;1059:9;1038:31;:::i;:::-;1028:41;;1088:40;1124:2;1113:9;1109:18;1088:40;:::i;:::-;1078:50;;1175:2;1164:9;1160:18;1147:32;1137:42;;947:238;;;;;:::o;1190:268::-;;;1316:2;1304:9;1295:7;1291:23;1287:32;1284:2;;;1337:6;1329;1322:22;1284:2;1365:31;1386:9;1365:31;:::i;:::-;1355:41;;1415:37;1448:2;1437:9;1433:18;1415:37;:::i;1463:266::-;;;1592:2;1580:9;1571:7;1567:23;1563:32;1560:2;;;1613:6;1605;1598:22;1560:2;1641:31;1662:9;1641:31;:::i;:::-;1631:41;1719:2;1704:18;;;;1691:32;;-1:-1:-1;;;1550:179:1:o;1734:405::-;;;;;1894:3;1882:9;1873:7;1869:23;1865:33;1862:2;;;1916:6;1908;1901:22;1862:2;1944:28;1962:9;1944:28;:::i;:::-;1934:38;;1991:40;2027:2;2016:9;2012:18;1991:40;:::i;:::-;1852:287;;1981:50;;-1:-1:-1;;;;2078:2:1;2063:18;;2050:32;;2129:2;2114:18;2101:32;;1852:287::o;2144:203::-;-1:-1:-1;;;;;2308:32:1;;;;2290:51;;2278:2;2263:18;;2245:102::o;2352:187::-;2517:14;;2510:22;2492:41;;2480:2;2465:18;;2447:92::o;2544:603::-;;2685:2;2714;2703:9;2696:21;2746:6;2740:13;2789:6;2784:2;2773:9;2769:18;2762:34;2814:4;2827:140;2841:6;2838:1;2835:13;2827:140;;;2936:14;;;2932:23;;2926:30;2902:17;;;2921:2;2898:26;2891:66;2856:10;;2827:140;;;2985:6;2982:1;2979:13;2976:2;;;3055:4;3050:2;3041:6;3030:9;3026:22;3022:31;3015:45;2976:2;-1:-1:-1;3131:2:1;3110:15;-1:-1:-1;;3106:29:1;3091:45;;;;3138:2;3087:54;;2665:482;-1:-1:-1;;;2665:482:1:o;3152:399::-;3354:2;3336:21;;;3393:2;3373:18;;;3366:30;3432:34;3427:2;3412:18;;3405:62;-1:-1:-1;;;3498:2:1;3483:18;;3476:33;3541:3;3526:19;;3326:225::o;3556:402::-;3758:2;3740:21;;;3797:2;3777:18;;;3770:30;3836:34;3831:2;3816:18;;3809:62;-1:-1:-1;;;3902:2:1;3887:18;;3880:36;3948:3;3933:19;;3730:228::o;3963:398::-;4165:2;4147:21;;;4204:2;4184:18;;;4177:30;4243:34;4238:2;4223:18;;4216:62;-1:-1:-1;;;4309:2:1;4294:18;;4287:32;4351:3;4336:19;;4137:224::o;4366:353::-;4568:2;4550:21;;;4607:2;4587:18;;;4580:30;4646:31;4641:2;4626:18;;4619:59;4710:2;4695:18;;4540:179::o;4724:402::-;4926:2;4908:21;;;4965:2;4945:18;;;4938:30;5004:34;4999:2;4984:18;;4977:62;-1:-1:-1;;;5070:2:1;5055:18;;5048:36;5116:3;5101:19;;4898:228::o;5131:329::-;5333:2;5315:21;;;5372:1;5352:18;;;5345:29;-1:-1:-1;;;5405:2:1;5390:18;;5383:36;5451:2;5436:18;;5305:155::o;5465:356::-;5667:2;5649:21;;;5686:18;;;5679:30;5745:34;5740:2;5725:18;;5718:62;5812:2;5797:18;;5639:182::o;5826:346::-;6028:2;6010:21;;;6067:2;6047:18;;;6040:30;-1:-1:-1;;;6101:2:1;6086:18;;6079:52;6163:2;6148:18;;6000:172::o;6177:401::-;6379:2;6361:21;;;6418:2;6398:18;;;6391:30;6457:34;6452:2;6437:18;;6430:62;-1:-1:-1;;;6523:2:1;6508:18;;6501:35;6568:3;6553:19;;6351:227::o;6583:400::-;6785:2;6767:21;;;6824:2;6804:18;;;6797:30;6863:34;6858:2;6843:18;;6836:62;-1:-1:-1;;;6929:2:1;6914:18;;6907:34;6973:3;6958:19;;6757:226::o;6988:401::-;7190:2;7172:21;;;7229:2;7209:18;;;7202:30;7268:34;7263:2;7248:18;;7241:62;-1:-1:-1;;;7334:2:1;7319:18;;7312:35;7379:3;7364:19;;7162:227::o;7394:335::-;7596:2;7578:21;;;7635:2;7615:18;;;7608:30;-1:-1:-1;;;7669:2:1;7654:18;;7647:41;7720:2;7705:18;;7568:161::o;7734:177::-;7880:25;;;7868:2;7853:18;;7835:76::o;7916:184::-;8088:4;8076:17;;;;8058:36;;8046:2;8031:18;;8013:87::o;8105:229::-;;8176:1;8172:6;8169:1;8166:13;8163:2;;;-1:-1:-1;;;8202:33:1;;8258:4;8255:1;8248:15;8288:4;8209:3;8276:17;8163:2;-1:-1:-1;8319:9:1;;8153:181::o;8339:380::-;8424:1;8414:12;;8471:1;8461:12;;;8482:2;;8536:4;8528:6;8524:17;8514:27;;8482:2;8589;8581:6;8578:14;8558:18;8555:38;8552:2;;;8635:10;8630:3;8626:20;8623:1;8616:31;8670:4;8667:1;8660:15;8698:4;8695:1;8688:15;8552:2;;8394:325;;;:::o
Swarm Source
ipfs://e015211fe08a8cd703b35e527fc403f849aa8de83dd21b4f4c0e16924774561d
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.