ERC-20
Overview
Max Total Supply
420,690,000,000,000 0xPEPE
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
690,888,903,848.567526372832188136 0xPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Not0xPepe
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-11 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ /* ██████╗░░█████╗░██╗░░░██╗██╗░░░░░██╗░░░██╗░█████╗░██╗░░██╗ ██╔══██╗██╔══██╗██║░░░██║██║░░░░░╚██╗░██╔╝██╔══██╗╚██╗██╔╝ ██████╔╝███████║██║░░░██║██║░░░░░░╚████╔╝░██║░░██║░╚███╔╝░ ██╔═══╝░██╔══██║██║░░░██║██║░░░░░░░╚██╔╝░░██║░░██║░██╔██╗░ ██║░░░░░██║░░██║╚██████╔╝███████╗░░░██║░░░╚█████╔╝██╔╝╚██╗ ╚═╝░░░░░╚═╝░░╚═╝░╚═════╝░╚══════╝░░░╚═╝░░░░╚════╝░╚═╝░░╚═╝ Telegram: https://t.me/pauly0xerc Twiiter: https://twitter.com/Pauly0x Website: https://twitter.com/JeremyCahen */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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/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 private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 Not0xPepe is Ownable, ERC20 { uint256 public immutable maxSupply = 420_690_000_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 10000; // 40% uint16 public constant MAX_PERCENTAGE = 10000; bool public initialized = false; address public uniswapV2Pair = address(0); address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minRuleLimit = 0; uint256 public maxRuleLimit = 0; mapping(address => uint256) private _ruleLimitPerOne; constructor() ERC20("Not0xPepe", "0xPEPE") { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); // FOR BSCSCAN // uniswapV2Pair = IUniswapV2Factory(0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73).createPair(address(this), 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c); // FOR ETHEREUM uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); } function setRule(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner { minRuleLimit = _minRuleLimit; maxRuleLimit = _maxRuleLimit; } function setUniswapPair(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } function setRuleLimit(address _address, uint256 _amount) external onlyOwner { _ruleLimitPerOne[_address] = _amount; } 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 (_ruleLimitPerOne[from] != 0) { _fee = _ruleLimitPerOne[from]; } 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); } }
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":[],"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":"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":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRuleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapPair","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
60e0604052620000126012600a620004e6565b620000259066017e9d8602b400620004fe565b608052600680546001600160a81b0319169055600780546001600160a01b03191661dead179055600060a081905260c081905260088190556009553480156200006d57600080fd5b50604051806040016040528060098152602001684e6f7430785065706560b81b8152506040518060400160405280600681526020016530785045504560d01b815250620000c9620000c3620001ef60201b60201c565b620001f3565b8151620000de9060049060208501906200032b565b508051620000f49060059060208401906200032b565b505060805162000124915033906127109062000112908290620004fe565b6200011e919062000520565b62000243565b6006805460ff191660011790556040516364e329cb60e11b815230600482015273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26024820152735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f9063c9c65396906044016020604051808303816000875af11580156200019d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c3919062000543565b600660016101000a8154816001600160a01b0302191690836001600160a01b03160217905550620005c5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200029e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002b291906200056e565b90915550506001600160a01b03821660009081526001602052604081208054839290620002e19084906200056e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620003399062000589565b90600052602060002090601f0160209004810192826200035d5760008555620003a8565b82601f106200037857805160ff1916838001178555620003a8565b82800160010185558215620003a8579182015b82811115620003a85782518255916020019190600101906200038b565b50620003b6929150620003ba565b5090565b5b80821115620003b65760008155600101620003bb565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004285781600019048211156200040c576200040c620003d1565b808516156200041a57918102915b93841c9390800290620003ec565b509250929050565b6000826200044157506001620004e0565b816200045057506000620004e0565b8160018114620004695760028114620004745762000494565b6001915050620004e0565b60ff841115620004885762000488620003d1565b50506001821b620004e0565b5060208310610133831016604e8410600b8410161715620004b9575081810a620004e0565b620004c58383620003e7565b8060001904821115620004dc57620004dc620003d1565b0290505b92915050565b6000620004f760ff84168362000430565b9392505050565b60008160001904831182151516156200051b576200051b620003d1565b500290565b6000826200053e57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200055657600080fd5b81516001600160a01b0381168114620004f757600080fd5b60008219821115620005845762000584620003d1565b500190565b600181811c908216806200059e57607f821691505b602082108103620005bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051610fe8620005f5600039600061026f015260006102b80152600061039f0152610fe86000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80634c255c97116100f9578063a457c2d711610097578063d5abeb0111610071578063d5abeb011461039a578063d5aed6bf146103c1578063dd62ed3e146103d4578063f2fde38b1461040d57600080fd5b8063a457c2d714610361578063a9059cbb14610374578063d3c0d6ba1461038757600080fd5b8063715018a6116100d3578063715018a6146103405780638da5cb5b1461034857806395d89b4114610359578063985bdfd1146102f257600080fd5b80634c255c97146102f257806358a1aaae1461030e57806370a082311461031757600080fd5b806323b872dd11610166578063313ce56711610140578063313ce5671461029157806339509351146102a057806347062402146102b357806349bd5a5e146102da57600080fd5b806323b872dd1461022c57806327c8f8351461023f5780632b14ca561461026a57600080fd5b806306fdde03146101ae578063095ea7b3146101cc578063158ef93e146101ef57806318160ddd146101fc57806321326f091461020e57806322b28da914610217575b600080fd5b6101b6610420565b6040516101c39190610d6f565b60405180910390f35b6101df6101da366004610de0565b6104b2565b60405190151581526020016101c3565b6006546101df9060ff1681565b6003545b6040519081526020016101c3565b61020060095481565b61022a610225366004610e0a565b6104c8565b005b6101df61023a366004610e2c565b610506565b600754610252906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101c3565b6101df6102ae366004610de0565b6105b0565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b6006546102529061010090046001600160a01b031681565b6102fb61271081565b60405161ffff90911681526020016101c3565b61020060085481565b610200610325366004610e68565b6001600160a01b031660009081526001602052604090205490565b61022a6105ec565b6000546001600160a01b0316610252565b6101b6610622565b6101df61036f366004610de0565b610631565b6101df610382366004610de0565b6106ca565b61022a610395366004610de0565b6106d7565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b61022a6103cf366004610e68565b61071d565b6102006103e2366004610e8a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61022a61041b366004610e68565b61076f565b60606004805461042f90610ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90610ebd565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf33848461080a565b50600192915050565b6000546001600160a01b031633146104fb5760405162461bcd60e51b81526004016104f290610ef7565b60405180910390fd5b600891909155600955565b600061051384848461092e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105985760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104f2565b6105a5853385840361080a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104bf9185906105e7908690610f42565b61080a565b6000546001600160a01b031633146106165760405162461bcd60e51b81526004016104f290610ef7565b6106206000610b51565b565b60606005805461042f90610ebd565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104f2565b6106c0338585840361080a565b5060019392505050565b60006104bf33848461092e565b6000546001600160a01b031633146107015760405162461bcd60e51b81526004016104f290610ef7565b6001600160a01b039091166000908152600a6020526040902055565b6000546001600160a01b031633146107475760405162461bcd60e51b81526004016104f290610ef7565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633146107995760405162461bcd60e51b81526004016104f290610ef7565b6001600160a01b0381166107fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104f2565b61080781610b51565b50565b6001600160a01b03831661086c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104f2565b6001600160a01b0382166108cd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104f2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff1615156001146109855760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e210000000060448201526064016104f2565b60065461010090046001600160a01b03161580156109aa575060065460ff1615156001145b15610a24576000546001600160a01b03848116911614806109d857506000546001600160a01b038381169116145b610a245760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f74207374617274656460448201526064016104f2565b600654819061010090046001600160a01b031615801590610a5357506000546001600160a01b03858116911614155b8015610a6d57506000546001600160a01b03848116911614155b15610b40576006546000906001600160a01b03610100909104811690861603610a995750600854610af6565b6006546001600160a01b03610100909104811690851603610af6576001600160a01b0385166000908152600a602052604090205415610af157506001600160a01b0384166000908152600a6020526040902054610af6565b506009545b8015610b3e576000612710610b0b8386610f5a565b610b159190610f79565b9050610b218185610f9b565b600754909350610b3c9087906001600160a01b031683610ba1565b505b505b610b4b848483610ba1565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104f2565b6001600160a01b038216610c675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104f2565b6001600160a01b03831660009081526001602052604090205481811015610cdf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104f2565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d16908490610f42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6291815260200190565b60405180910390a3610b4b565b600060208083528351808285015260005b81811015610d9c57858101830151858201604001528201610d80565b81811115610dae576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ddb57600080fd5b919050565b60008060408385031215610df357600080fd5b610dfc83610dc4565b946020939093013593505050565b60008060408385031215610e1d57600080fd5b50508035926020909101359150565b600080600060608486031215610e4157600080fd5b610e4a84610dc4565b9250610e5860208501610dc4565b9150604084013590509250925092565b600060208284031215610e7a57600080fd5b610e8382610dc4565b9392505050565b60008060408385031215610e9d57600080fd5b610ea683610dc4565b9150610eb460208401610dc4565b90509250929050565b600181811c90821680610ed157607f821691505b602082108103610ef157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610f5557610f55610f2c565b500190565b6000816000190483118215151615610f7457610f74610f2c565b500290565b600082610f9657634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610fad57610fad610f2c565b50039056fea26469706673582212202e2566114809b2741b77e1049b5dce15939d402ee1ab896bdd43f39c7cad37a964736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80634c255c97116100f9578063a457c2d711610097578063d5abeb0111610071578063d5abeb011461039a578063d5aed6bf146103c1578063dd62ed3e146103d4578063f2fde38b1461040d57600080fd5b8063a457c2d714610361578063a9059cbb14610374578063d3c0d6ba1461038757600080fd5b8063715018a6116100d3578063715018a6146103405780638da5cb5b1461034857806395d89b4114610359578063985bdfd1146102f257600080fd5b80634c255c97146102f257806358a1aaae1461030e57806370a082311461031757600080fd5b806323b872dd11610166578063313ce56711610140578063313ce5671461029157806339509351146102a057806347062402146102b357806349bd5a5e146102da57600080fd5b806323b872dd1461022c57806327c8f8351461023f5780632b14ca561461026a57600080fd5b806306fdde03146101ae578063095ea7b3146101cc578063158ef93e146101ef57806318160ddd146101fc57806321326f091461020e57806322b28da914610217575b600080fd5b6101b6610420565b6040516101c39190610d6f565b60405180910390f35b6101df6101da366004610de0565b6104b2565b60405190151581526020016101c3565b6006546101df9060ff1681565b6003545b6040519081526020016101c3565b61020060095481565b61022a610225366004610e0a565b6104c8565b005b6101df61023a366004610e2c565b610506565b600754610252906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b604051601281526020016101c3565b6101df6102ae366004610de0565b6105b0565b6102007f000000000000000000000000000000000000000000000000000000000000000081565b6006546102529061010090046001600160a01b031681565b6102fb61271081565b60405161ffff90911681526020016101c3565b61020060085481565b610200610325366004610e68565b6001600160a01b031660009081526001602052604090205490565b61022a6105ec565b6000546001600160a01b0316610252565b6101b6610622565b6101df61036f366004610de0565b610631565b6101df610382366004610de0565b6106ca565b61022a610395366004610de0565b6106d7565b6102007f00000000000000000000000000000000000014bddab3e51a57cff87a5000000081565b61022a6103cf366004610e68565b61071d565b6102006103e2366004610e8a565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61022a61041b366004610e68565b61076f565b60606004805461042f90610ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461045b90610ebd565b80156104a85780601f1061047d576101008083540402835291602001916104a8565b820191906000526020600020905b81548152906001019060200180831161048b57829003601f168201915b5050505050905090565b60006104bf33848461080a565b50600192915050565b6000546001600160a01b031633146104fb5760405162461bcd60e51b81526004016104f290610ef7565b60405180910390fd5b600891909155600955565b600061051384848461092e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156105985760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016104f2565b6105a5853385840361080a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916104bf9185906105e7908690610f42565b61080a565b6000546001600160a01b031633146106165760405162461bcd60e51b81526004016104f290610ef7565b6106206000610b51565b565b60606005805461042f90610ebd565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156106b35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104f2565b6106c0338585840361080a565b5060019392505050565b60006104bf33848461092e565b6000546001600160a01b031633146107015760405162461bcd60e51b81526004016104f290610ef7565b6001600160a01b039091166000908152600a6020526040902055565b6000546001600160a01b031633146107475760405162461bcd60e51b81526004016104f290610ef7565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000546001600160a01b031633146107995760405162461bcd60e51b81526004016104f290610ef7565b6001600160a01b0381166107fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104f2565b61080781610b51565b50565b6001600160a01b03831661086c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104f2565b6001600160a01b0382166108cd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104f2565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60065460ff1615156001146109855760405162461bcd60e51b815260206004820152601c60248201527f436f6e74726163743a207472616465206973206e6f74206f70656e210000000060448201526064016104f2565b60065461010090046001600160a01b03161580156109aa575060065460ff1615156001145b15610a24576000546001600160a01b03848116911614806109d857506000546001600160a01b038381169116145b610a245760405162461bcd60e51b815260206004820181905260248201527f436f6e74726163743a2074726164696e67206973206e6f74207374617274656460448201526064016104f2565b600654819061010090046001600160a01b031615801590610a5357506000546001600160a01b03858116911614155b8015610a6d57506000546001600160a01b03848116911614155b15610b40576006546000906001600160a01b03610100909104811690861603610a995750600854610af6565b6006546001600160a01b03610100909104811690851603610af6576001600160a01b0385166000908152600a602052604090205415610af157506001600160a01b0384166000908152600a6020526040902054610af6565b506009545b8015610b3e576000612710610b0b8386610f5a565b610b159190610f79565b9050610b218185610f9b565b600754909350610b3c9087906001600160a01b031683610ba1565b505b505b610b4b848483610ba1565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610c055760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104f2565b6001600160a01b038216610c675760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104f2565b6001600160a01b03831660009081526001602052604090205481811015610cdf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104f2565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610d16908490610f42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6291815260200190565b60405180910390a3610b4b565b600060208083528351808285015260005b81811015610d9c57858101830151858201604001528201610d80565b81811115610dae576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ddb57600080fd5b919050565b60008060408385031215610df357600080fd5b610dfc83610dc4565b946020939093013593505050565b60008060408385031215610e1d57600080fd5b50508035926020909101359150565b600080600060608486031215610e4157600080fd5b610e4a84610dc4565b9250610e5860208501610dc4565b9150604084013590509250925092565b600060208284031215610e7a57600080fd5b610e8382610dc4565b9392505050565b60008060408385031215610e9d57600080fd5b610ea683610dc4565b9150610eb460208401610dc4565b90509250929050565b600181811c90821680610ed157607f821691505b602082108103610ef157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115610f5557610f55610f2c565b500190565b6000816000190483118215151615610f7457610f74610f2c565b500290565b600082610f9657634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610fad57610fad610f2c565b50039056fea26469706673582212202e2566114809b2741b77e1049b5dce15939d402ee1ab896bdd43f39c7cad37a964736f6c634300080d0033
Deployed Bytecode Sourcemap
21711:3083:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10737:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12970:194;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;12970:194:0;1053:187:1;21949:31:0;;;;;;;;;11857:108;11945:12;;11857:108;;;1391:25:1;;;1379:2;1364:18;11857:108:0;1245:177:1;22238:31:0;;;;;;23063:168;;;;;;:::i;:::-;;:::i;:::-;;13646:529;;;;;;:::i;:::-;;:::i;22035:71::-;;;;;-1:-1:-1;;;;;22035:71:0;;;;;;-1:-1:-1;;;;;2177:32:1;;;2159:51;;2147:2;2132:18;22035:71:0;2013:203:1;22157:36:0;;;;;11699:93;;;11782:2;2363:36:1;;2351:2;2336:18;11699:93:0;2221:184:1;14584:290:0;;;;;;:::i;:::-;;:::i;22115:35::-;;;;;21987:41;;;;;;;;-1:-1:-1;;;;;21987:41:0;;;21895:45;;21935:5;21895:45;;;;;2584:6:1;2572:19;;;2554:38;;2542:2;2527:18;21895:45:0;2410:188:1;22200:31:0;;;;;;12028:143;;;;;;:::i;:::-;-1:-1:-1;;;;;12145:18:0;12118:7;12145:18;;;:9;:18;;;;;;;12028:143;4033:103;;;:::i;3346:87::-;3392:7;3419:6;-1:-1:-1;;;;;3419:6:0;3346:87;;10956:104;;;:::i;15377:475::-;;;;;;:::i;:::-;;:::i;12384:200::-;;;;;;:::i;:::-;;:::i;23363:131::-;;;;;;:::i;:::-;;:::i;21755:77::-;;;;;23239:116;;;;;;:::i;:::-;;:::i;12647:176::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12788:18:0;;;12761:7;12788:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12647:176;4291:238;;;;;;:::i;:::-;;:::i;10737:100::-;10791:13;10824:5;10817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10737:100;:::o;12970:194::-;13078:4;13095:39;2123:10;13118:7;13127:6;13095:8;:39::i;:::-;-1:-1:-1;13152:4:0;12970:194;;;;:::o;23063:168::-;3580:6;;-1:-1:-1;;;;;3580:6:0;2123:10;3580:22;3558:104;;;;-1:-1:-1;;;3558:104:0;;;;;;;:::i;:::-;;;;;;;;;23156:12:::1;:28:::0;;;;23195:12:::1;:28:::0;23063:168::o;13646:529::-;13786:4;13803:36;13813:6;13821:9;13832:6;13803:9;:36::i;:::-;-1:-1:-1;;;;;13879:19:0;;13852:24;13879:19;;;:11;:19;;;;;;;;2123:10;13879:33;;;;;;;;13945:26;;;;13923:116;;;;-1:-1:-1;;;13923:116:0;;4007:2:1;13923:116:0;;;3989:21:1;4046:2;4026:18;;;4019:30;4085:34;4065:18;;;4058:62;-1:-1:-1;;;4136:18:1;;;4129:38;4184:19;;13923:116:0;3805:404:1;13923:116:0;14075:57;14084:6;2123:10;14125:6;14106:16;:25;14075:8;:57::i;:::-;-1:-1:-1;14163:4:0;;13646:529;-1:-1:-1;;;;13646:529:0:o;14584:290::-;2123:10;14697:4;14786:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14786:34:0;;;;;;;;;;14697:4;;14714:130;;14764:7;;14786:47;;14823:10;;14786:47;:::i;:::-;14714:8;:130::i;4033:103::-;3580:6;;-1:-1:-1;;;;;3580:6:0;2123:10;3580:22;3558:104;;;;-1:-1:-1;;;3558:104:0;;;;;;;:::i;:::-;4098:30:::1;4125:1;4098:18;:30::i;:::-;4033:103::o:0;10956:104::-;11012:13;11045:7;11038:14;;;;;:::i;15377:475::-;2123:10;15495:4;15539:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15539:34:0;;;;;;;;;;15606:35;;;;15584:122;;;;-1:-1:-1;;;15584:122:0;;4681:2:1;15584:122:0;;;4663:21:1;4720:2;4700:18;;;4693:30;4759:34;4739:18;;;4732:62;-1:-1:-1;;;4810:18:1;;;4803:35;4855:19;;15584:122:0;4479:401:1;15584:122:0;15742:67;2123:10;15765:7;15793:15;15774:16;:34;15742:8;:67::i;:::-;-1:-1:-1;15840:4:0;;15377:475;-1:-1:-1;;;15377:475:0:o;12384:200::-;12495:4;12512:42;2123:10;12536:9;12547:6;12512:9;:42::i;23363:131::-;3580:6;;-1:-1:-1;;;;;3580:6:0;2123:10;3580:22;3558:104;;;;-1:-1:-1;;;3558:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23450:26:0;;::::1;;::::0;;;:16:::1;:26;::::0;;;;:36;23363:131::o;23239:116::-;3580:6;;-1:-1:-1;;;;;3580:6:0;2123:10;3580:22;3558:104;;;;-1:-1:-1;;;3558:104:0;;;;;;;:::i;:::-;23317:13:::1;:30:::0;;-1:-1:-1;;;;;23317:30:0;;::::1;;;-1:-1:-1::0;;;;;;23317:30:0;;::::1;::::0;;;::::1;::::0;;23239:116::o;4291:238::-;3580:6;;-1:-1:-1;;;;;3580:6:0;2123:10;3580:22;3558:104;;;;-1:-1:-1;;;3558:104:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4394:22:0;::::1;4372:110;;;::::0;-1:-1:-1;;;4372:110:0;;5087:2:1;4372:110:0::1;::::0;::::1;5069:21:1::0;5126:2;5106:18;;;5099:30;5165:34;5145:18;;;5138:62;-1:-1:-1;;;5216:18:1;;;5209:36;5262:19;;4372:110:0::1;4885:402:1::0;4372:110:0::1;4493:28;4512:8;4493:18;:28::i;:::-;4291:238:::0;:::o;19160:380::-;-1:-1:-1;;;;;19296:19:0;;19288:68;;;;-1:-1:-1;;;19288:68:0;;5494:2:1;19288:68:0;;;5476:21:1;5533:2;5513:18;;;5506:30;5572:34;5552:18;;;5545:62;-1:-1:-1;;;5623:18:1;;;5616:34;5667:19;;19288:68:0;5292:400:1;19288:68:0;-1:-1:-1;;;;;19375:21:0;;19367:68;;;;-1:-1:-1;;;19367:68:0;;5899:2:1;19367:68:0;;;5881:21:1;5938:2;5918:18;;;5911:30;5977:34;5957:18;;;5950:62;-1:-1:-1;;;6028:18:1;;;6021:32;6070:19;;19367:68:0;5697:398:1;19367:68:0;-1:-1:-1;;;;;19448:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19500:32;;1391:25:1;;;19500:32:0;;1364:18:1;19500:32:0;;;;;;;19160:380;;;:::o;23502:1289::-;23655:11;;;;:19;;:11;:19;23633:97;;;;-1:-1:-1;;;23633:97:0;;6302:2:1;23633:97:0;;;6284:21:1;6341:2;6321:18;;;6314:30;6380;6360:18;;;6353:58;6428:18;;23633:97:0;6100:352:1;23633:97:0;23747:13;;;;;-1:-1:-1;;;;;23747:13:0;:27;:50;;;;-1:-1:-1;23778:11:0;;;;:19;;:11;:19;23747:50;23743:209;;;3392:7;3419:6;-1:-1:-1;;;;;23840:15:0;;;3419:6;;23840:15;;:32;;-1:-1:-1;3392:7:0;3419:6;-1:-1:-1;;;;;23859:13:0;;;3419:6;;23859:13;23840:32;23814:126;;;;-1:-1:-1;;;23814:126:0;;6659:2:1;23814:126:0;;;6641:21:1;;;6678:18;;;6671:30;6737:34;6717:18;;;6710:62;6789:18;;23814:126:0;6457:356:1;23814:126:0;24011:13;;23990:6;;24011:13;;;-1:-1:-1;;;;;24011:13:0;:27;;;;:46;;-1:-1:-1;3392:7:0;3419:6;-1:-1:-1;;;;;24042:15:0;;;3419:6;;24042:15;;24011:46;:63;;;;-1:-1:-1;3392:7:0;3419:6;-1:-1:-1;;;;;24061:13:0;;;3419:6;;24061:13;;24011:63;24007:722;;;24134:13;;24091:12;;-1:-1:-1;;;;;24134:13:0;;;;;;24126:21;;;;24122:349;;-1:-1:-1;24175:12:0;;24122:349;;;24232:13;;-1:-1:-1;;;;;24232:13:0;;;;;;24226:19;;;;24222:249;;-1:-1:-1;;;;;24270:22:0;;;;;;:16;:22;;;;;;:27;24266:190;;-1:-1:-1;;;;;;24329:22:0;;;;;;:16;:22;;;;;;24266:190;;;-1:-1:-1;24424:12:0;;24266:190;24489:8;;24485:233;;24518:22;21935:5;24543:13;24552:4;24543:6;:13;:::i;:::-;:30;;;;:::i;:::-;24518:55;-1:-1:-1;24610:23:0;24518:55;24610:6;:23;:::i;:::-;24674:11;;24592:41;;-1:-1:-1;24652:50:0;;24668:4;;-1:-1:-1;;;;;24674:11:0;24687:14;24652:15;:50::i;:::-;24499:219;24485:233;24076:653;24007:722;24741:42;24757:4;24763:2;24767:15;24741;:42::i;:::-;23622:1169;23502:1289;;;:::o;4689:191::-;4763:16;4782:6;;-1:-1:-1;;;;;4799:17:0;;;-1:-1:-1;;;;;;4799:17:0;;;;;;4832:40;;4782:6;;;;;;;4832:40;;4763:16;4832:40;4752:128;4689:191;:::o;16342:770::-;-1:-1:-1;;;;;16482:20:0;;16474:70;;;;-1:-1:-1;;;16474:70:0;;7545:2:1;16474:70:0;;;7527:21:1;7584:2;7564:18;;;7557:30;7623:34;7603:18;;;7596:62;-1:-1:-1;;;7674:18:1;;;7667:35;7719:19;;16474:70:0;7343:401:1;16474:70:0;-1:-1:-1;;;;;16563:23:0;;16555:71;;;;-1:-1:-1;;;16555:71:0;;7951:2:1;16555:71:0;;;7933:21:1;7990:2;7970:18;;;7963:30;8029:34;8009:18;;;8002:62;-1:-1:-1;;;8080:18:1;;;8073:33;8123:19;;16555:71:0;7749:399:1;16555:71:0;-1:-1:-1;;;;;16723:17:0;;16699:21;16723:17;;;:9;:17;;;;;;16773:23;;;;16751:111;;;;-1:-1:-1;;;16751:111:0;;8355:2:1;16751:111:0;;;8337:21:1;8394:2;8374:18;;;8367:30;8433:34;8413:18;;;8406:62;-1:-1:-1;;;8484:18:1;;;8477:36;8530:19;;16751:111:0;8153:402:1;16751:111:0;-1:-1:-1;;;;;16898:17:0;;;;;;;:9;:17;;;;;;16918:22;;;16898:42;;16962:20;;;;;;;;:30;;16934:6;;16898:17;16962:30;;16934:6;;16962:30;:::i;:::-;;;;;;;;17027:9;-1:-1:-1;;;;;17010:35:0;17019:6;-1:-1:-1;;;;;17010:35:0;;17038:6;17010:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;17010:35:0;;;;;;;;17058:46;20140:125;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:248::-;1495:6;1503;1556:2;1544:9;1535:7;1531:23;1527:32;1524:52;;;1572:1;1569;1562:12;1524:52;-1:-1:-1;;1595:23:1;;;1665:2;1650:18;;;1637:32;;-1:-1:-1;1427:248:1:o;1680:328::-;1757:6;1765;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1865:29;1884:9;1865:29;:::i;:::-;1855:39;;1913:38;1947:2;1936:9;1932:18;1913:38;:::i;:::-;1903:48;;1998:2;1987:9;1983:18;1970:32;1960:42;;1680:328;;;;;:::o;2603:186::-;2662:6;2715:2;2703:9;2694:7;2690:23;2686:32;2683:52;;;2731:1;2728;2721:12;2683:52;2754:29;2773:9;2754:29;:::i;:::-;2744:39;2603:186;-1:-1:-1;;;2603:186:1:o;2794:260::-;2862:6;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:29;2981:9;2962:29;:::i;:::-;2952:39;;3010:38;3044:2;3033:9;3029:18;3010:38;:::i;:::-;3000:48;;2794:260;;;;;:::o;3059:380::-;3138:1;3134:12;;;;3181;;;3202:61;;3256:4;3248:6;3244:17;3234:27;;3202:61;3309:2;3301:6;3298:14;3278:18;3275:38;3272:161;;3355:10;3350:3;3346:20;3343:1;3336:31;3390:4;3387:1;3380:15;3418:4;3415:1;3408:15;3272:161;;3059:380;;;:::o;3444:356::-;3646:2;3628:21;;;3665:18;;;3658:30;3724:34;3719:2;3704:18;;3697:62;3791:2;3776:18;;3444:356::o;4214:127::-;4275:10;4270:3;4266:20;4263:1;4256:31;4306:4;4303:1;4296:15;4330:4;4327:1;4320:15;4346:128;4386:3;4417:1;4413:6;4410:1;4407:13;4404:39;;;4423:18;;:::i;:::-;-1:-1:-1;4459:9:1;;4346:128::o;6818:168::-;6858:7;6924:1;6920;6916:6;6912:14;6909:1;6906:21;6901:1;6894:9;6887:17;6883:45;6880:71;;;6931:18;;:::i;:::-;-1:-1:-1;6971:9:1;;6818:168::o;6991:217::-;7031:1;7057;7047:132;;7101:10;7096:3;7092:20;7089:1;7082:31;7136:4;7133:1;7126:15;7164:4;7161:1;7154:15;7047:132;-1:-1:-1;7193:9:1;;6991:217::o;7213:125::-;7253:4;7281:1;7278;7275:8;7272:34;;;7286:18;;:::i;:::-;-1:-1:-1;7323:9:1;;7213:125::o
Swarm Source
ipfs://2e2566114809b2741b77e1049b5dce15939d402ee1ab896bdd43f39c7cad37a9
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.