Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 17268631 | 1046 days ago | 0.1 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PEPESLUT
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-05-16
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// 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 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @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/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 (uint256);
}
// File: @openzeppelin/contracts/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) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/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 guidelines: functions revert instead
* of 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 {
using SafeMath for uint256;
mapping(address => bool) public _isEnemy;
bool public Pause = false;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
uint256 private _decimals;
string private _name;
string private _symbol;
uint256 public txFee;
uint256 public burnFee;
address public FeeAddress;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The defaut 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_,uint256 decimals_) {
_name = name_;
_symbol = symbol_;
_decimals = decimals_;
}
/**
* @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 (uint256) {
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(_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");
_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");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @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(!_isEnemy[sender] && !_isEnemy[recipient], 'Enemy address');
require(!Pause, 'Pause');
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
uint256 tempValue = amount;
if(txFee > 0 && sender != FeeAddress){
uint256 DenverDeflaionaryDecay = tempValue.div(uint256(100 / txFee));
_balances[FeeAddress] = _balances[FeeAddress].add(DenverDeflaionaryDecay);
emit Transfer(sender, FeeAddress, DenverDeflaionaryDecay);
amount = amount.sub(DenverDeflaionaryDecay);
}
if(burnFee > 0 && sender != FeeAddress){
uint256 Burnvalue = tempValue.div(uint256(100 / burnFee));
_totalSupply = _totalSupply.sub(Burnvalue);
emit Transfer(sender, address(0), Burnvalue);
amount = amount.sub(Burnvalue);
}
_balances[recipient] += amount;
emit Transfer(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:
*
* - 'to' 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);
}
/**
* @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");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(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 to 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 { }
}
// File: @openzeppelin/contracts/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 public _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @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 {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: eth-token-recover/contracts/TokenRecover.sol
pragma solidity ^0.8.0;
/**
* @title TokenRecover
* @dev Allows owner to recover any ERC20 sent into the contract
*/
contract TokenRecover is Ownable {
/**
* @dev Remember that only owner can call so be careful when use on contracts generated from other contracts.
* @param tokenAddress The token contract address
* @param tokenAmount Number of tokens to be sent
*/
function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
IERC20(tokenAddress).transfer(owner(), tokenAmount);
}
}
pragma solidity ^0.8.0;
contract PEPESLUT is ERC20,TokenRecover {
uint256 public Optimization = 20125312007681642820489604175259;
constructor(
string memory name_,
string memory symbol_,
uint256 decimals_,
uint256 initialBalance_,
uint256 _txFee,uint256 _burnFee,address _FeeAddress,
address tokenOwner,
address payable feeReceiver_
) payable ERC20(name_, symbol_, decimals_) {
txFee = _txFee;
burnFee = _burnFee;
FeeAddress = _FeeAddress;
payable(feeReceiver_).transfer(msg.value);
_owner = tokenOwner;
_mint(tokenOwner, initialBalance_*10**uint256(decimals_));
}
function updateFee(uint256 _txFee,uint256 _burnFee,address _FeeAddress)external onlyOwner{
txFee = _txFee;
burnFee = _burnFee;
FeeAddress = _FeeAddress;
}
function EnemyAddress(address account, bool value) external onlyOwner{
_isEnemy[account] = value;
}
function setPause(bool value) external onlyOwner{
Pause = value;
}
function mint(address account, uint256 amount) external onlyOwner {
super._mint(account, amount);
}
function burn(uint256 amount) external onlyOwner {
super._burn(_msgSender(), amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"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":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"EnemyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FeeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isEnemy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","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":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_txFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"address","name":"_FeeAddress","type":"address"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060408190526001805460ff191690556cfe0463ea11da307bcc3897159b600c5562001b94388190039081908339810160408190526200004091620002ed565b888888600662000051848262000449565b50600762000060838262000449565b50600555505060088590556009849055600a80546001600160a01b038086166001600160a01b031990921691909117909155604051908216903480156108fc02916000818181858888f19350505050158015620000c1573d6000803e3d6000fd5b50600b80546001600160a01b0319166001600160a01b0384161790556200010182620000ef89600a6200062a565b620000fb90896200063f565b62000110565b5050505050505050506200066f565b6001600160a01b0382166200016b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600460008282546200017f919062000659565b90915550506001600160a01b03821660009081526002602052604081208054839290620001ae90849062000659565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022557600080fd5b81516001600160401b0380821115620002425762000242620001fd565b604051601f8301601f19908116603f011681019082821181831017156200026d576200026d620001fd565b816040528381526020925086838588010111156200028a57600080fd5b600091505b83821015620002ae57858201830151818301840152908201906200028f565b600093810190920192909252949350505050565b6001600160a01b0381168114620002d857600080fd5b50565b8051620002e881620002c2565b919050565b60008060008060008060008060006101208a8c0312156200030d57600080fd5b89516001600160401b03808211156200032557600080fd5b620003338d838e0162000213565b9a5060208c01519150808211156200034a57600080fd5b50620003598c828d0162000213565b98505060408a0151965060608a0151955060808a0151945060a08a0151935060c08a01516200038881620002c2565b60e08b01519093506200039b81620002c2565b9150620003ac6101008b01620002db565b90509295985092959850929598565b600181811c90821680620003d057607f821691505b602082108103620003f157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f857600081815260208120601f850160051c81016020861015620004205750805b601f850160051c820191505b8181101562000441578281556001016200042c565b505050505050565b81516001600160401b03811115620004655762000465620001fd565b6200047d81620004768454620003bb565b84620003f7565b602080601f831160018114620004b557600084156200049c5750858301515b600019600386901b1c1916600185901b17855562000441565b600085815260208120601f198616915b82811015620004e657888601518255948401946001909101908401620004c5565b5085821015620005055787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200056c57816000190482111562000550576200055062000515565b808516156200055e57918102915b93841c939080029062000530565b509250929050565b600082620005855750600162000624565b81620005945750600062000624565b8160018114620005ad5760028114620005b857620005d8565b600191505062000624565b60ff841115620005cc57620005cc62000515565b50506001821b62000624565b5060208310610133831016604e8410600b8410161715620005fd575081810a62000624565b6200060983836200052b565b806000190482111562000620576200062062000515565b0290505b92915050565b600062000638838362000574565b9392505050565b808202811582820484141762000624576200062462000515565b8082018082111562000624576200062462000515565b611515806200067f6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806386923611116100f9578063aa797dbc11610097578063cf82046111610071578063cf8204611461038e578063dd62ed3e14610397578063f2fde38b146103d0578063fce589d8146103e357600080fd5b8063aa797dbc14610345578063b2bdfa7b14610368578063bedb86fb1461037b57600080fd5b80638da5cb5b116100d35780638da5cb5b1461030657806395d89b4114610317578063a457c2d71461031f578063a9059cbb1461033257600080fd5b806386923611146102cd578063875ae990146102e05780638980f11f146102f357600080fd5b806339509351116101665780636985a022116101405780636985a0221461026457806370a0823114610271578063715018a61461029a5780637b7e8bac146102a257600080fd5b8063395093511461022957806340c10f191461023c57806342966c681461025157600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806310c8aeac146101ef57806318160ddd1461020657806323b872dd1461020e578063313ce56714610221575b600080fd5b6101b66103ec565b6040516101c39190611207565b60405180910390f35b6101df6101da366004611271565b61047e565b60405190151581526020016101c3565b6101f8600c5481565b6040519081526020016101c3565b6004546101f8565b6101df61021c36600461129b565b610495565b6005546101f8565b6101df610237366004611271565b61054b565b61024f61024a366004611271565b610582565b005b61024f61025f3660046112d7565b6105ba565b6001546101df9060ff1681565b6101f861027f3660046112f0565b6001600160a01b031660009081526002602052604090205490565b61024f6105f1565b600a546102b5906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b61024f6102db366004611319565b610665565b61024f6102ee366004611350565b6106ba565b61024f610301366004611271565b61070e565b600b546001600160a01b03166102b5565b6101b66107cf565b6101df61032d366004611271565b6107de565b6101df610340366004611271565b610879565b6101df6103533660046112f0565b60006020819052908152604090205460ff1681565b600b546102b5906001600160a01b031681565b61024f610389366004611385565b610886565b6101f860085481565b6101f86103a53660046113a2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61024f6103de3660046112f0565b6108c3565b6101f860095481565b6060600680546103fb906113d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906113d5565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b600061048b3384846109ae565b5060015b92915050565b60006104a2848484610ad3565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561052c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610540853361053b8685611425565b6109ae565b506001949350505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161048b91859061053b908690611438565b600b546001600160a01b031633146105ac5760405162461bcd60e51b81526004016105239061144b565b6105b68282610eab565b5050565b600b546001600160a01b031633146105e45760405162461bcd60e51b81526004016105239061144b565b6105ee3382610f78565b50565b600b546001600160a01b0316331461061b5760405162461bcd60e51b81526004016105239061144b565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b600b546001600160a01b0316331461068f5760405162461bcd60e51b81526004016105239061144b565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600b546001600160a01b031633146106e45760405162461bcd60e51b81526004016105239061144b565b600892909255600955600a80546001600160a01b0319166001600160a01b03909216919091179055565b600b546001600160a01b031633146107385760405162461bcd60e51b81526004016105239061144b565b816001600160a01b031663a9059cbb610759600b546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156107a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ca9190611480565b505050565b6060600780546103fb906113d5565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156108605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610523565b61086f338561053b8685611425565b5060019392505050565b600061048b338484610ad3565b600b546001600160a01b031633146108b05760405162461bcd60e51b81526004016105239061144b565b6001805460ff1916911515919091179055565b600b546001600160a01b031633146108ed5760405162461bcd60e51b81526004016105239061144b565b6001600160a01b0381166109525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610523565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610a105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610523565b6001600160a01b038216610a715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610523565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610523565b6001600160a01b038216610b995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610523565b6001600160a01b03831660009081526020819052604090205460ff16158015610bdb57506001600160a01b03821660009081526020819052604090205460ff16155b610c175760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b6044820152606401610523565b60015460ff1615610c525760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b6044820152606401610523565b6001600160a01b03831660009081526002602052604090205481811015610cca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610523565b610cd48282611425565b6001600160a01b038516600090815260026020526040902055600854829015801590610d0e5750600a546001600160a01b03868116911614155b15610db1576000610d2e6008546064610d27919061149d565b83906110b5565b600a546001600160a01b0316600090815260026020526040902054909150610d5690826110fe565b600a80546001600160a01b03908116600090815260026020908152604091829020949094559154915184815291811692908916916000805160206114c0833981519152910160405180910390a3610dad848261115d565b9350505b6000600954118015610dd15750600a546001600160a01b03868116911614155b15610e3a576000610dea6009546064610d27919061149d565b600454909150610dfa908261115d565b6004556040518181526000906001600160a01b038816906000805160206114c08339815191529060200160405180910390a3610e36848261115d565b9350505b6001600160a01b03841660009081526002602052604081208054859290610e62908490611438565b92505081905550836001600160a01b0316856001600160a01b03166000805160206114c083398151915285604051610e9c91815260200190565b60405180910390a35050505050565b6001600160a01b038216610f015760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610523565b8060046000828254610f139190611438565b90915550506001600160a01b03821660009081526002602052604081208054839290610f40908490611438565b90915550506040518181526001600160a01b038316906000906000805160206114c08339815191529060200160405180910390a35050565b6001600160a01b038216610fd85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610523565b6001600160a01b0382166000908152600260205260409020548181101561104c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610523565b6110568282611425565b6001600160a01b03841660009081526002602052604081209190915560048054849290611084908490611425565b90915550506040518281526000906001600160a01b038516906000805160206114c083398151915290602001610ac6565b60006110f783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061119f565b9392505050565b60008061110b8385611438565b9050838110156110f75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610523565b60006110f783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111d6565b600081836111c05760405162461bcd60e51b81526004016105239190611207565b5060006111cd848661149d565b95945050505050565b600081848411156111fa5760405162461bcd60e51b81526004016105239190611207565b5060006111cd8486611425565b600060208083528351808285015260005b8181101561123457858101830151858201604001528201611218565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461126c57600080fd5b919050565b6000806040838503121561128457600080fd5b61128d83611255565b946020939093013593505050565b6000806000606084860312156112b057600080fd5b6112b984611255565b92506112c760208501611255565b9150604084013590509250925092565b6000602082840312156112e957600080fd5b5035919050565b60006020828403121561130257600080fd5b6110f782611255565b80151581146105ee57600080fd5b6000806040838503121561132c57600080fd5b61133583611255565b915060208301356113458161130b565b809150509250929050565b60008060006060848603121561136557600080fd5b833592506020840135915061137c60408501611255565b90509250925092565b60006020828403121561139757600080fd5b81356110f78161130b565b600080604083850312156113b557600080fd5b6113be83611255565b91506113cc60208401611255565b90509250929050565b600181811c908216806113e957607f821691505b60208210810361140957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561048f5761048f61140f565b8082018082111561048f5761048f61140f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561149257600080fd5b81516110f78161130b565b6000826114ba57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ea1169619e614f00e1091c7a4b017fa3b6e67ad573db2d6c2a37f77731e6af0764736f6c63430008110033000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000007681e642df8af2e0f4fc896041d7decc5b2c59be0000000000000000000000007681e642df8af2e0f4fc896041d7decc5b2c59be00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a00000000000000000000000000000000000000000000000000000000000000095045504520534c55540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000650534c5554530000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806386923611116100f9578063aa797dbc11610097578063cf82046111610071578063cf8204611461038e578063dd62ed3e14610397578063f2fde38b146103d0578063fce589d8146103e357600080fd5b8063aa797dbc14610345578063b2bdfa7b14610368578063bedb86fb1461037b57600080fd5b80638da5cb5b116100d35780638da5cb5b1461030657806395d89b4114610317578063a457c2d71461031f578063a9059cbb1461033257600080fd5b806386923611146102cd578063875ae990146102e05780638980f11f146102f357600080fd5b806339509351116101665780636985a022116101405780636985a0221461026457806370a0823114610271578063715018a61461029a5780637b7e8bac146102a257600080fd5b8063395093511461022957806340c10f191461023c57806342966c681461025157600080fd5b806306fdde03146101ae578063095ea7b3146101cc57806310c8aeac146101ef57806318160ddd1461020657806323b872dd1461020e578063313ce56714610221575b600080fd5b6101b66103ec565b6040516101c39190611207565b60405180910390f35b6101df6101da366004611271565b61047e565b60405190151581526020016101c3565b6101f8600c5481565b6040519081526020016101c3565b6004546101f8565b6101df61021c36600461129b565b610495565b6005546101f8565b6101df610237366004611271565b61054b565b61024f61024a366004611271565b610582565b005b61024f61025f3660046112d7565b6105ba565b6001546101df9060ff1681565b6101f861027f3660046112f0565b6001600160a01b031660009081526002602052604090205490565b61024f6105f1565b600a546102b5906001600160a01b031681565b6040516001600160a01b0390911681526020016101c3565b61024f6102db366004611319565b610665565b61024f6102ee366004611350565b6106ba565b61024f610301366004611271565b61070e565b600b546001600160a01b03166102b5565b6101b66107cf565b6101df61032d366004611271565b6107de565b6101df610340366004611271565b610879565b6101df6103533660046112f0565b60006020819052908152604090205460ff1681565b600b546102b5906001600160a01b031681565b61024f610389366004611385565b610886565b6101f860085481565b6101f86103a53660046113a2565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61024f6103de3660046112f0565b6108c3565b6101f860095481565b6060600680546103fb906113d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906113d5565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b600061048b3384846109ae565b5060015b92915050565b60006104a2848484610ad3565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561052c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610540853361053b8685611425565b6109ae565b506001949350505050565b3360008181526003602090815260408083206001600160a01b0387168452909152812054909161048b91859061053b908690611438565b600b546001600160a01b031633146105ac5760405162461bcd60e51b81526004016105239061144b565b6105b68282610eab565b5050565b600b546001600160a01b031633146105e45760405162461bcd60e51b81526004016105239061144b565b6105ee3382610f78565b50565b600b546001600160a01b0316331461061b5760405162461bcd60e51b81526004016105239061144b565b600b546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b80546001600160a01b0319169055565b600b546001600160a01b0316331461068f5760405162461bcd60e51b81526004016105239061144b565b6001600160a01b03919091166000908152602081905260409020805460ff1916911515919091179055565b600b546001600160a01b031633146106e45760405162461bcd60e51b81526004016105239061144b565b600892909255600955600a80546001600160a01b0319166001600160a01b03909216919091179055565b600b546001600160a01b031633146107385760405162461bcd60e51b81526004016105239061144b565b816001600160a01b031663a9059cbb610759600b546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156107a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ca9190611480565b505050565b6060600780546103fb906113d5565b3360009081526003602090815260408083206001600160a01b0386168452909152812054828110156108605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610523565b61086f338561053b8685611425565b5060019392505050565b600061048b338484610ad3565b600b546001600160a01b031633146108b05760405162461bcd60e51b81526004016105239061144b565b6001805460ff1916911515919091179055565b600b546001600160a01b031633146108ed5760405162461bcd60e51b81526004016105239061144b565b6001600160a01b0381166109525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610523565b600b546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610a105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610523565b6001600160a01b038216610a715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610523565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610b375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610523565b6001600160a01b038216610b995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610523565b6001600160a01b03831660009081526020819052604090205460ff16158015610bdb57506001600160a01b03821660009081526020819052604090205460ff16155b610c175760405162461bcd60e51b815260206004820152600d60248201526c456e656d79206164647265737360981b6044820152606401610523565b60015460ff1615610c525760405162461bcd60e51b8152602060048201526005602482015264506175736560d81b6044820152606401610523565b6001600160a01b03831660009081526002602052604090205481811015610cca5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610523565b610cd48282611425565b6001600160a01b038516600090815260026020526040902055600854829015801590610d0e5750600a546001600160a01b03868116911614155b15610db1576000610d2e6008546064610d27919061149d565b83906110b5565b600a546001600160a01b0316600090815260026020526040902054909150610d5690826110fe565b600a80546001600160a01b03908116600090815260026020908152604091829020949094559154915184815291811692908916916000805160206114c0833981519152910160405180910390a3610dad848261115d565b9350505b6000600954118015610dd15750600a546001600160a01b03868116911614155b15610e3a576000610dea6009546064610d27919061149d565b600454909150610dfa908261115d565b6004556040518181526000906001600160a01b038816906000805160206114c08339815191529060200160405180910390a3610e36848261115d565b9350505b6001600160a01b03841660009081526002602052604081208054859290610e62908490611438565b92505081905550836001600160a01b0316856001600160a01b03166000805160206114c083398151915285604051610e9c91815260200190565b60405180910390a35050505050565b6001600160a01b038216610f015760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610523565b8060046000828254610f139190611438565b90915550506001600160a01b03821660009081526002602052604081208054839290610f40908490611438565b90915550506040518181526001600160a01b038316906000906000805160206114c08339815191529060200160405180910390a35050565b6001600160a01b038216610fd85760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610523565b6001600160a01b0382166000908152600260205260409020548181101561104c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610523565b6110568282611425565b6001600160a01b03841660009081526002602052604081209190915560048054849290611084908490611425565b90915550506040518281526000906001600160a01b038516906000805160206114c083398151915290602001610ac6565b60006110f783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061119f565b9392505050565b60008061110b8385611438565b9050838110156110f75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610523565b60006110f783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506111d6565b600081836111c05760405162461bcd60e51b81526004016105239190611207565b5060006111cd848661149d565b95945050505050565b600081848411156111fa5760405162461bcd60e51b81526004016105239190611207565b5060006111cd8486611425565b600060208083528351808285015260005b8181101561123457858101830151858201604001528201611218565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461126c57600080fd5b919050565b6000806040838503121561128457600080fd5b61128d83611255565b946020939093013593505050565b6000806000606084860312156112b057600080fd5b6112b984611255565b92506112c760208501611255565b9150604084013590509250925092565b6000602082840312156112e957600080fd5b5035919050565b60006020828403121561130257600080fd5b6110f782611255565b80151581146105ee57600080fd5b6000806040838503121561132c57600080fd5b61133583611255565b915060208301356113458161130b565b809150509250929050565b60008060006060848603121561136557600080fd5b833592506020840135915061137c60408501611255565b90509250925092565b60006020828403121561139757600080fd5b81356110f78161130b565b600080604083850312156113b557600080fd5b6113be83611255565b91506113cc60208401611255565b90509250929050565b600181811c908216806113e957607f821691505b60208210810361140957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561048f5761048f61140f565b8082018082111561048f5761048f61140f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561149257600080fd5b81516110f78161130b565b6000826114ba57634e487b7160e01b600052601260045260246000fd5b50049056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220ea1169619e614f00e1091c7a4b017fa3b6e67ad573db2d6c2a37f77731e6af0764736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000007681e642df8af2e0f4fc896041d7decc5b2c59be0000000000000000000000007681e642df8af2e0f4fc896041d7decc5b2c59be00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a00000000000000000000000000000000000000000000000000000000000000095045504520534c55540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000650534c5554530000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): PEPE SLUT
Arg [1] : symbol_ (string): PSLUTS
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 1000000000
Arg [4] : _txFee (uint256): 4
Arg [5] : _burnFee (uint256): 1
Arg [6] : _FeeAddress (address): 0x7681e642df8AF2E0F4Fc896041d7dECC5b2c59bE
Arg [7] : tokenOwner (address): 0x7681e642df8AF2E0F4Fc896041d7dECC5b2c59bE
Arg [8] : feeReceiver_ (address): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 0000000000000000000000007681e642df8af2e0f4fc896041d7decc5b2c59be
Arg [7] : 0000000000000000000000007681e642df8af2e0f4fc896041d7decc5b2c59be
Arg [8] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 5045504520534c55540000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 50534c5554530000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
22115:1421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9079:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11395:175;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11395:175:0;1004:187:1;22164:62:0;;;;;;;;;1342:25:1;;;1330:2;1315:18;22164:62:0;1196:177:1;10272:112:0;10362:12;;10272:112;;12082:438;;;;;;:::i;:::-;;:::i;10091:106::-;10178:9;;10091:106;;12957:221;;;;;;:::i;:::-;;:::i;23281:117::-;;;;;;:::i;:::-;;:::i;:::-;;23414:105;;;;;;:::i;:::-;;:::i;8075:25::-;;;;;;;;;10457:131;;;;;;:::i;:::-;-1:-1:-1;;;;;10560:18:0;10531:7;10560:18;;;:9;:18;;;;;;;10457:131;20802:154;;;:::i;8461:25::-;;;;;-1:-1:-1;;;;;8461:25:0;;;;;;-1:-1:-1;;;;;2251:32:1;;;2233:51;;2221:2;2206:18;8461:25:0;2087:203:1;23048:117:0;;;;;;:::i;:::-;;:::i;22842:194::-;;;;;;:::i;:::-;;:::i;21899:164::-;;;;;;:::i;:::-;;:::i;20113:91::-;20188:6;;-1:-1:-1;;;;;20188:6:0;20113:91;;9314:108;;;:::i;13713:389::-;;;;;;:::i;:::-;;:::i;10821:181::-;;;;;;:::i;:::-;;:::i;8018:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;19900:21;;;;;-1:-1:-1;;;;;19900:21:0;;;23181:84;;;;;;:::i;:::-;;:::i;8401:20::-;;;;;;11075:155;;;;;;:::i;:::-;-1:-1:-1;;;;;11193:18:0;;;11164:7;11193:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11075:155;21123:252;;;;;;:::i;:::-;;:::i;8430:22::-;;;;;;9079:104;9133:13;9168:5;9161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9079:104;:::o;11395:175::-;11478:4;11497:39;6282:10;11520:7;11529:6;11497:8;:39::i;:::-;-1:-1:-1;11556:4:0;11395:175;;;;;:::o;12082:438::-;12188:4;12207:36;12217:6;12225:9;12236:6;12207:9;:36::i;:::-;-1:-1:-1;;;;;12287:19:0;;12260:24;12287:19;;;:11;:19;;;;;;;;6282:10;12287:33;;;;;;;;12341:26;;;;12333:79;;;;-1:-1:-1;;;12333:79:0;;4163:2:1;12333:79:0;;;4145:21:1;4202:2;4182:18;;;4175:30;4241:34;4221:18;;;4214:62;-1:-1:-1;;;4292:18:1;;;4285:38;4340:19;;12333:79:0;;;;;;;;;12425:57;12434:6;6282:10;12456:25;12475:6;12456:16;:25;:::i;:::-;12425:8;:57::i;:::-;-1:-1:-1;12506:4:0;;12082:438;-1:-1:-1;;;;12082:438:0:o;12957:221::-;6282:10;13045:4;13096:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13096:34:0;;;;;;;;;;13045:4;;13064:80;;13087:7;;13096:47;;13133:10;;13096:47;:::i;23281:117::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;23360:28:::1;23372:7;23381:6;23360:11;:28::i;:::-;23281:117:::0;;:::o;23414:105::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;23476:33:::1;6282:10:::0;23502:6:::1;23476:11;:33::i;:::-;23414:105:::0;:::o;20802:154::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;20895:6:::1;::::0;20874:40:::1;::::0;20911:1:::1;::::0;-1:-1:-1;;;;;20895:6:0::1;::::0;20874:40:::1;::::0;20911:1;;20874:40:::1;20927:6;:19:::0;;-1:-1:-1;;;;;;20927:19:0::1;::::0;;20802:154::o;23048:117::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23130:17:0;;;::::1;:8;:17:::0;;;::::1;::::0;;;;;;:25;;-1:-1:-1;;23130:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23048:117::o;22842:194::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;22944:5:::1;:14:::0;;;;22971:7:::1;:18:::0;23002:10:::1;:24:::0;;-1:-1:-1;;;;;;23002:24:0::1;-1:-1:-1::0;;;;;23002:24:0;;::::1;::::0;;;::::1;::::0;;22842:194::o;21899:164::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;22009:12:::1;-1:-1:-1::0;;;;;22002:29:0::1;;22032:7;20188:6:::0;;-1:-1:-1;;;;;20188:6:0;;20113:91;22032:7:::1;22002:51;::::0;-1:-1:-1;;;;;;22002:51:0::1;::::0;;;;;;-1:-1:-1;;;;;5318:32:1;;;22002:51:0::1;::::0;::::1;5300::1::0;5367:18;;;5360:34;;;5273:18;;22002:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21899:164:::0;;:::o;9314:108::-;9370:13;9405:7;9398:14;;;;;:::i;13713:389::-;6282:10;13806:4;13852:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13852:34:0;;;;;;;;;;13907:35;;;;13899:85;;;;-1:-1:-1;;;13899:85:0;;5857:2:1;13899:85:0;;;5839:21:1;5896:2;5876:18;;;5869:30;5935:34;5915:18;;;5908:62;-1:-1:-1;;;5986:18:1;;;5979:35;6031:19;;13899:85:0;5655:401:1;13899:85:0;13997:67;6282:10;14020:7;14029:34;14048:15;14029:16;:34;:::i;13997:67::-;-1:-1:-1;14088:4:0;;13713:389;-1:-1:-1;;;13713:389:0:o;10821:181::-;10907:4;10926:42;6282:10;10950:9;10961:6;10926:9;:42::i;23181:84::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;23242:5:::1;:13:::0;;-1:-1:-1;;23242:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23181:84::o;21123:252::-;20188:6;;-1:-1:-1;;;;;20188:6:0;6282:10;20349:23;20341:68;;;;-1:-1:-1;;;20341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21214:22:0;::::1;21206:73;;;::::0;-1:-1:-1;;;21206:73:0;;6263:2:1;21206:73:0::1;::::0;::::1;6245:21:1::0;6302:2;6282:18;;;6275:30;6341:34;6321:18;;;6314:62;-1:-1:-1;;;6392:18:1;;;6385:36;6438:19;;21206:73:0::1;6061:402:1::0;21206:73:0::1;21318:6;::::0;21297:38:::1;::::0;-1:-1:-1;;;;;21297:38:0;;::::1;::::0;21318:6:::1;::::0;21297:38:::1;::::0;21318:6:::1;::::0;21297:38:::1;21348:6;:17:::0;;-1:-1:-1;;;;;;21348:17:0::1;-1:-1:-1::0;;;;;21348:17:0;;;::::1;::::0;;;::::1;::::0;;21123:252::o;18127:358::-;-1:-1:-1;;;;;18231:19:0;;18223:68;;;;-1:-1:-1;;;18223:68:0;;6670:2:1;18223:68:0;;;6652:21:1;6709:2;6689:18;;;6682:30;6748:34;6728:18;;;6721:62;-1:-1:-1;;;6799:18:1;;;6792:34;6843:19;;18223:68:0;6468:400:1;18223:68:0;-1:-1:-1;;;;;18312:21:0;;18304:68;;;;-1:-1:-1;;;18304:68:0;;7075:2:1;18304:68:0;;;7057:21:1;7114:2;7094:18;;;7087:30;7153:34;7133:18;;;7126:62;-1:-1:-1;;;7204:18:1;;;7197:32;7246:19;;18304:68:0;6873:398:1;18304:68:0;-1:-1:-1;;;;;18389:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18443:32;;1342:25:1;;;18443:32:0;;1315:18:1;18443:32:0;;;;;;;;18127:358;;;:::o;14624:1502::-;-1:-1:-1;;;;;14732:20:0;;14724:70;;;;-1:-1:-1;;;14724:70:0;;7478:2:1;14724:70:0;;;7460:21:1;7517:2;7497:18;;;7490:30;7556:34;7536:18;;;7529:62;-1:-1:-1;;;7607:18:1;;;7600:35;7652:19;;14724:70:0;7276:401:1;14724:70:0;-1:-1:-1;;;;;14815:23:0;;14807:71;;;;-1:-1:-1;;;14807:71:0;;7884:2:1;14807:71:0;;;7866:21:1;7923:2;7903:18;;;7896:30;7962:34;7942:18;;;7935:62;-1:-1:-1;;;8013:18:1;;;8006:33;8056:19;;14807:71:0;7682:399:1;14807:71:0;-1:-1:-1;;;;;14904:16:0;;:8;:16;;;;;;;;;;;;;14903:17;:41;;;;-1:-1:-1;;;;;;14925:19:0;;:8;:19;;;;;;;;;;;;;14924:20;14903:41;14895:67;;;;-1:-1:-1;;;14895:67:0;;8288:2:1;14895:67:0;;;8270:21:1;8327:2;8307:18;;;8300:30;-1:-1:-1;;;8346:18:1;;;8339:43;8399:18;;14895:67:0;8086:337:1;14895:67:0;14992:5;;;;14991:6;14983:24;;;;-1:-1:-1;;;14983:24:0;;8630:2:1;14983:24:0;;;8612:21:1;8669:1;8649:18;;;8642:29;-1:-1:-1;;;8687:18:1;;;8680:35;8732:18;;14983:24:0;8428:328:1;14983:24:0;-1:-1:-1;;;;;15116:17:0;;15092:21;15116:17;;;:9;:17;;;;;;15154:23;;;;15146:74;;;;-1:-1:-1;;;15146:74:0;;8963:2:1;15146:74:0;;;8945:21:1;9002:2;8982:18;;;8975:30;9041:34;9021:18;;;9014:62;-1:-1:-1;;;9092:18:1;;;9085:36;9138:19;;15146:74:0;8761:402:1;15146:74:0;15253:22;15269:6;15253:13;:22;:::i;:::-;-1:-1:-1;;;;;15233:17:0;;;;;;:9;:17;;;;;:42;15334:5;;15312:6;;15334:9;;;;:33;;-1:-1:-1;15357:10:0;;-1:-1:-1;;;;;15347:20:0;;;15357:10;;15347:20;;15334:33;15331:362;;;15385:30;15418:35;15446:5;;15440:3;:11;;;;:::i;:::-;15418:9;;:13;:35::i;:::-;15504:10;;-1:-1:-1;;;;;15504:10:0;15494:21;;;;:9;:21;;;;;;15385:68;;-1:-1:-1;15494:49:0;;15385:68;15494:25;:49::i;:::-;15480:10;;;-1:-1:-1;;;;;15480:10:0;;;15470:21;;;;:9;:21;;;;;;;;;:73;;;;15582:10;;15565:52;;1342:25:1;;;15582:10:0;;;;15565:52;;;;-1:-1:-1;;;;;;;;;;;15565:52:0;1315:18:1;15565:52:0;;;;;;;15644:34;:6;15655:22;15644:10;:34::i;:::-;15634:44;;15368:325;15331:362;15730:1;15720:7;;:11;:35;;;;-1:-1:-1;15745:10:0;;-1:-1:-1;;;;;15735:20:0;;;15745:10;;15735:20;;15720:35;15717:296;;;15773:17;15793:37;15821:7;;15815:3;:13;;;;:::i;15793:37::-;15862:12;;15773:57;;-1:-1:-1;15862:27:0;;15773:57;15862:16;:27::i;:::-;15847:12;:42;15911:39;;1342:25:1;;;15936:1:0;;-1:-1:-1;;;;;15911:39:0;;;-1:-1:-1;;;;;;;;;;;15911:39:0;1330:2:1;1315:18;15911:39:0;;;;;;;15977:21;:6;15988:9;15977:10;:21::i;:::-;15967:31;;15756:257;15717:296;-1:-1:-1;;;;;16029:20:0;;;;;;:9;:20;;;;;:30;;16053:6;;16029:20;:30;;16053:6;;16029:30;:::i;:::-;;;;;;;;16098:9;-1:-1:-1;;;;;16081:35:0;16090:6;-1:-1:-1;;;;;16081:35:0;-1:-1:-1;;;;;;;;;;;16109:6:0;16081:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;16081:35:0;;;;;;;;14711:1415;;14624:1502;;;:::o;16430:354::-;-1:-1:-1;;;;;16516:21:0;;16508:65;;;;-1:-1:-1;;;16508:65:0;;9592:2:1;16508:65:0;;;9574:21:1;9631:2;9611:18;;;9604:30;9670:33;9650:18;;;9643:61;9721:18;;16508:65:0;9390:355:1;16508:65:0;16672:6;16656:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16691:18:0;;;;;;:9;:18;;;;;:28;;16713:6;;16691:18;:28;;16713:6;;16691:28;:::i;:::-;;;;-1:-1:-1;;16737:37:0;;1342:25:1;;;-1:-1:-1;;;;;16737:37:0;;;16754:1;;-1:-1:-1;;;;;;;;;;;16737:37:0;1330:2:1;1315:18;16737:37:0;;;;;;;16430:354;;:::o;17143:516::-;-1:-1:-1;;;;;17229:21:0;;17221:67;;;;-1:-1:-1;;;17221:67:0;;9952:2:1;17221:67:0;;;9934:21:1;9991:2;9971:18;;;9964:30;10030:34;10010:18;;;10003:62;-1:-1:-1;;;10081:18:1;;;10074:31;10122:19;;17221:67:0;9750:397:1;17221:67:0;-1:-1:-1;;;;;17396:18:0;;17371:22;17396:18;;;:9;:18;;;;;;17435:24;;;;17427:71;;;;-1:-1:-1;;;17427:71:0;;10354:2:1;17427:71:0;;;10336:21:1;10393:2;10373:18;;;10366:30;10432:34;10412:18;;;10405:62;-1:-1:-1;;;10483:18:1;;;10476:32;10525:19;;17427:71:0;10152:398:1;17427:71:0;17532:23;17549:6;17532:14;:23;:::i;:::-;-1:-1:-1;;;;;17511:18:0;;;;;;:9;:18;;;;;:44;;;;17568:12;:22;;17584:6;;17511:18;17568:22;;17584:6;;17568:22;:::i;:::-;;;;-1:-1:-1;;17612:37:0;;1342:25:1;;;17638:1:0;;-1:-1:-1;;;;;17612:37:0;;;-1:-1:-1;;;;;;;;;;;17612:37:0;1330:2:1;1315:18;17612:37:0;1196:177:1;1183:136:0;1241:7;1270:39;1274:1;1277;1270:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;1263:46;1183:136;-1:-1:-1;;;1183:136:0:o;107:191::-;165:7;;199:5;203:1;199;:5;:::i;:::-;187:17;;230:1;225;:6;;217:46;;;;-1:-1:-1;;;217:46:0;;10757:2:1;217:46:0;;;10739:21:1;10796:2;10776:18;;;10769:30;10835:29;10815:18;;;10808:57;10882:18;;217:46:0;10555:351:1;310:140:0;368:7;397:43;401:1;404;397:43;;;;;;;;;;;;;;;;;:3;:43::i;1331:290::-;1417:7;1454:12;1447:5;1439:28;;;;-1:-1:-1;;;1439:28:0;;;;;;;;:::i;:::-;-1:-1:-1;1480:9:0;1492:5;1496:1;1492;:5;:::i;:::-;1480:17;1331:290;-1:-1:-1;;;;;1331:290:0:o;462:202::-;548:7;586:12;578:6;;;;570:29;;;;-1:-1:-1;;;570:29:0;;;;;;;;:::i;:::-;-1:-1:-1;612:9:0;624:5;628:1;624;:5;:::i;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:180::-;1770:6;1823:2;1811:9;1802:7;1798:23;1794:32;1791:52;;;1839:1;1836;1829:12;1791:52;-1:-1:-1;1862:23:1;;1711:180;-1:-1:-1;1711:180:1:o;1896:186::-;1955:6;2008:2;1996:9;1987:7;1983:23;1979:32;1976:52;;;2024:1;2021;2014:12;1976:52;2047:29;2066:9;2047:29;:::i;2295:118::-;2381:5;2374:13;2367:21;2360:5;2357:32;2347:60;;2403:1;2400;2393:12;2418:315;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;;2662:2;2651:9;2647:18;2634:32;2675:28;2697:5;2675:28;:::i;:::-;2722:5;2712:15;;;2418:315;;;;;:::o;2738:322::-;2815:6;2823;2831;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;2936:9;2923:23;2913:33;;2993:2;2982:9;2978:18;2965:32;2955:42;;3016:38;3050:2;3039:9;3035:18;3016:38;:::i;:::-;3006:48;;2738:322;;;;;:::o;3065:241::-;3121:6;3174:2;3162:9;3153:7;3149:23;3145:32;3142:52;;;3190:1;3187;3180:12;3142:52;3229:9;3216:23;3248:28;3270:5;3248:28;:::i;3311:260::-;3379:6;3387;3440:2;3428:9;3419:7;3415:23;3411:32;3408:52;;;3456:1;3453;3446:12;3408:52;3479:29;3498:9;3479:29;:::i;:::-;3469:39;;3527:38;3561:2;3550:9;3546:18;3527:38;:::i;:::-;3517:48;;3311:260;;;;;:::o;3576:380::-;3655:1;3651:12;;;;3698;;;3719:61;;3773:4;3765:6;3761:17;3751:27;;3719:61;3826:2;3818:6;3815:14;3795:18;3792:38;3789:161;;3872:10;3867:3;3863:20;3860:1;3853:31;3907:4;3904:1;3897:15;3935:4;3932:1;3925:15;3789:161;;3576:380;;;:::o;4370:127::-;4431:10;4426:3;4422:20;4419:1;4412:31;4462:4;4459:1;4452:15;4486:4;4483:1;4476:15;4502:128;4569:9;;;4590:11;;;4587:37;;;4604:18;;:::i;4635:125::-;4700:9;;;4721:10;;;4718:36;;;4734:18;;:::i;4765:356::-;4967:2;4949:21;;;4986:18;;;4979:30;5045:34;5040:2;5025:18;;5018:62;5112:2;5097:18;;4765:356::o;5405:245::-;5472:6;5525:2;5513:9;5504:7;5500:23;5496:32;5493:52;;;5541:1;5538;5531:12;5493:52;5573:9;5567:16;5592:28;5614:5;5592:28;:::i;9168:217::-;9208:1;9234;9224:132;;9278:10;9273:3;9269:20;9266:1;9259:31;9313:4;9310:1;9303:15;9341:4;9338:1;9331:15;9224:132;-1:-1:-1;9370:9:1;;9168:217::o
Swarm Source
ipfs://ea1169619e614f00e1091c7a4b017fa3b6e67ad573db2d6c2a37f77731e6af07
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.