ETH Price: $2,603.48 (-0.29%)

Token

Pigachu (PIGA)
 

Overview

Max Total Supply

100,000,000 PIGA

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
518,511.73931493 PIGA

Value
$0.00
0x45b3f1ff9fbf648c7c6e3347bad58a69198218de
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Pigachu

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 6 : Pigachu.sol
// SPDX-License-Identifier: MIT

/**

TG : https://t.me/pigachucoin
Twitter : http://www.twitter.com/pigachucoineth
Website : https://pigachucoin.com

**/

pragma solidity 0.8.18;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

interface IFactory{
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline) external;
}


library Address{
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

contract Pigachu is ERC20, Ownable{  
    using Address for address payable;

    mapping (address user => bool status) public exemptFee;
    mapping (address user => bool status) public isBlacklisted;

    IRouter public router;
    address public pair;
    address public marketingWallet;

    bool private swapping;
    bool public swapEnabled;
    bool public tradingEnabled;

    uint256 public swapThreshold = 2_000_000 * 10**9;    //treshold
    uint256 public maxWallet = 10_000_000 * 10**9;    //maxwallet

    struct Taxes {
        uint128 buy;
        uint128 sell;
    }

    Taxes public taxes = Taxes(20, 28);  //taxes

    modifier mutexLock() {
        if (!swapping) {
            swapping = true;
            _;
            swapping = false;
        }
    }

    constructor(address _router, address _marketingWallet, string memory _name, string memory _symbol) ERC20(_name, _symbol) {
        _mint(msg.sender, 100_000_000 * 10 ** 9);  //totalsupply

        router = IRouter(_router);
        pair = IFactory(router.factory()).createPair(address(this), router.WETH());

        marketingWallet = _marketingWallet;

        exemptFee[address(this)] = true;
        exemptFee[msg.sender] = true;
        exemptFee[_marketingWallet] = true;

        _approve(address(this), _router, type(uint256).max);
    }

    function decimals() public override pure returns(uint8){
        return 9;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");

        if (swapping || exemptFee[sender] || exemptFee[recipient]) {
            super._transfer(sender, recipient, amount);
            return;
        }

        else{
            require(tradingEnabled, "Trading not enabled");
            require(!isBlacklisted[sender] && !isBlacklisted[recipient], "Blacklisted address");
            if (recipient != pair) {
                require(balanceOf(recipient) + amount <= maxWallet, "Wallet limit exceeded");
            }
        }

        uint256 fees;

        if(recipient == pair) fees = amount * taxes.sell / 100;
        else if(sender == pair) fees = amount * taxes.buy / 100;

        if (swapEnabled && sender != pair) swapFees();

        super._transfer(sender, recipient, amount - fees);
        if(fees > 0){
            super._transfer(sender, address(this), fees);
        }
    }

    function swapFees() private mutexLock {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance >= swapThreshold) {
            uint256 initialBalance = address(this).balance;
            swapTokensForEth(swapThreshold);
            uint256 deltaBalance = address(this).balance - initialBalance;
            payable(marketingWallet).sendValue(deltaBalance);
        }
    }


    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount, 0, path, address(this), block.timestamp);
    }

    function setSwapEnabled(bool status) external onlyOwner {
        swapEnabled = status;
    }

    function setSwapTreshhold(uint256 amount) external onlyOwner {
        swapThreshold = amount * 10 ** decimals();
    }

    function setTaxes(uint128 _buyTax, uint128 _sellTax) external onlyOwner {
        taxes = Taxes(_buyTax, _sellTax);
    }

    function setRouterAndPair(address newRouter, address newPair) external onlyOwner{
        router = IRouter(newRouter);
        pair = newPair;
        _approve(address(this), address(newRouter), type(uint256).max);
    }

    function setTradingStatus(bool status) external onlyOwner{
        tradingEnabled = status;
        swapEnabled = status;
    }

    function setMaxWallet(uint256 _maxWallet) external onlyOwner{
        maxWallet = _maxWallet * 10 ** decimals();
    }

    function setMarketingWallet(address newWallet) external onlyOwner{
        marketingWallet = newWallet;
    }

    function setExemptFee(address _address, bool state) external onlyOwner {
        exemptFee[_address] = state;
    }

    function bulkExemptFee(address[] memory accounts, bool state) external onlyOwner{
        for(uint256 i = 0; i < accounts.length; i++){
            exemptFee[accounts[i]] = state;
        }
    }

    function setBlacklist(address[] memory accounts, bool status) external onlyOwner{
        for(uint256 i = 0; i < accounts.length; i++){
            isBlacklisted[accounts[i]] = status;
        }
    }

    function rescueETH(uint256 weiAmount) external onlyOwner{
        payable(msg.sender).sendValue(weiAmount);
    }

    function rescueERC20(address tokenAdd, uint256 amount) external onlyOwner{
        IERC20(tokenAdd).transfer(msg.sender, amount);
    }

    // fallbacks
    receive() external payable {}

}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 4 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"state","type":"bool"}],"name":"bulkExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"user","type":"address"}],"name":"exemptFee","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","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":"user","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAdd","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"},{"internalType":"address","name":"newPair","type":"address"}],"name":"setRouterAndPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_buyTax","type":"uint128"},{"internalType":"uint128","name":"_sellTax","type":"uint128"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint128","name":"buy","type":"uint128"},{"internalType":"uint128","name":"sell","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

66071afd498d0000600b55662386f26fc10000600c5560c06040526014608052601c60a052701c00000000000000000000000000000014600d553480156200004657600080fd5b5060405162002601380380620026018339810160408190526200006991620005e5565b8181600362000079838262000703565b50600462000088828262000703565b505050620000a56200009f620002b960201b60201c565b620002bd565b620000b93367016345785d8a00006200030f565b600880546001600160a01b0319166001600160a01b0386169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000113573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001399190620007cf565b6001600160a01b031663c9c6539630600860009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c29190620007cf565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000210573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002369190620007cf565b600980546001600160a01b039283166001600160a01b031991821617909155600a8054928616929091168217905530600081815260066020526040808220805460ff19908116600190811790925533845282842080548216831790559483529120805490931617909155620002af9085600019620003d6565b505050506200081c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200036b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b80600260008282546200037f9190620007f4565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166200043a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000362565b6001600160a01b0382166200049d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000362565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b80516001600160a01b03811681146200051b57600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200054857600080fd5b81516001600160401b038082111562000565576200056562000520565b604051601f8301601f19908116603f0116810190828211818310171562000590576200059062000520565b81604052838152602092508683858801011115620005ad57600080fd5b600091505b83821015620005d15785820183015181830184015290820190620005b2565b600093810190920192909252949350505050565b60008060008060808587031215620005fc57600080fd5b620006078562000503565b9350620006176020860162000503565b60408601519093506001600160401b03808211156200063557600080fd5b620006438883890162000536565b935060608701519150808211156200065a57600080fd5b50620006698782880162000536565b91505092959194509250565b600181811c908216806200068a57607f821691505b602082108103620006ab57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004fe57600081815260208120601f850160051c81016020861015620006da5750805b601f850160051c820191505b81811015620006fb57828155600101620006e6565b505050505050565b81516001600160401b038111156200071f576200071f62000520565b620007378162000730845462000675565b84620006b1565b602080601f8311600181146200076f5760008415620007565750858301515b600019600386901b1c1916600185901b178555620006fb565b600085815260208120601f198616915b82811015620007a0578886015182559484019460019091019084016200077f565b5085821015620007bf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007e257600080fd5b620007ed8262000503565b9392505050565b808201808211156200081657634e487b7160e01b600052601160045260246000fd5b92915050565b611dd5806200082c6000396000f3fe6080604052600436106102535760003560e01c8063715018a611610138578063a9059cbb116100b0578063e01af92c1161007f578063f887ea4011610064578063f887ea4014610718578063f8b45b0514610738578063fe575a871461074e57600080fd5b8063e01af92c146106d8578063f2fde38b146106f857600080fd5b8063a9059cbb14610622578063b5d7ab9a14610642578063c5d32bb214610662578063dd62ed3e1461069257600080fd5b80638da5cb5b116101075780639e252f00116100ec5780639e252f00146105c2578063a457c2d7146105e2578063a8aa1b311461060257600080fd5b80638da5cb5b1461058f57806395d89b41146105ad57600080fd5b8063715018a6146104c5578063728f8eea146104da57806375f0a874146105375780638cd4426d1461056f57600080fd5b8063313ce567116101cb5780634ada218b1161019a5780635d098b381161017f5780635d098b381461044e5780636ddd17131461046e57806370a082311461048f57600080fd5b80634ada218b1461040d5780635d0044ca1461042e57600080fd5b8063313ce56714610391578063379ba1d9146103ad57806339509351146103cd5780634a14c4c6146103ed57600080fd5b80630e375a5c1161022257806318160ddd1161020757806318160ddd1461033c57806323b872dd14610351578063255f40b61461037157600080fd5b80630e375a5c146102fc5780630e85d1e31461031c57600080fd5b80630445b6671461025f57806304fb2ebe1461028857806306fdde03146102aa578063095ea7b3146102cc57600080fd5b3661025a57005b600080fd5b34801561026b57600080fd5b50610275600b5481565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a336600461184e565b61077e565b005b3480156102b657600080fd5b506102bf6107c1565b60405161027f9190611881565b3480156102d857600080fd5b506102ec6102e73660046118ef565b610853565b604051901515815260200161027f565b34801561030857600080fd5b506102a861031736600461194a565b61086d565b34801561032857600080fd5b506102a861033736600461194a565b6108e1565b34801561034857600080fd5b50600254610275565b34801561035d57600080fd5b506102ec61036c366004611a21565b610950565b34801561037d57600080fd5b506102a861038c366004611a62565b610974565b34801561039d57600080fd5b506040516009815260200161027f565b3480156103b957600080fd5b506102a86103c8366004611a9b565b6109ca565b3480156103d957600080fd5b506102ec6103e83660046118ef565b610a1c565b3480156103f957600080fd5b506102a8610408366004611abf565b610a5b565b34801561041957600080fd5b50600a546102ec90600160b01b900460ff1681565b34801561043a57600080fd5b506102a8610449366004611aed565b610a8e565b34801561045a57600080fd5b506102a8610469366004611b06565b610ab2565b34801561047a57600080fd5b50600a546102ec90600160a81b900460ff1681565b34801561049b57600080fd5b506102756104aa366004611b06565b6001600160a01b031660009081526020819052604090205490565b3480156104d157600080fd5b506102a8610ae9565b3480156104e657600080fd5b50600d5461050e906fffffffffffffffffffffffffffffffff80821691600160801b90041682565b604080516fffffffffffffffffffffffffffffffff93841681529290911660208301520161027f565b34801561054357600080fd5b50600a54610557906001600160a01b031681565b6040516001600160a01b03909116815260200161027f565b34801561057b57600080fd5b506102a861058a3660046118ef565b610afd565b34801561059b57600080fd5b506005546001600160a01b0316610557565b3480156105b957600080fd5b506102bf610b8f565b3480156105ce57600080fd5b506102a86105dd366004611aed565b610b9e565b3480156105ee57600080fd5b506102ec6105fd3660046118ef565b610bb3565b34801561060e57600080fd5b50600954610557906001600160a01b031681565b34801561062e57600080fd5b506102ec61063d3660046118ef565b610c62565b34801561064e57600080fd5b506102a861065d366004611aed565b610c70565b34801561066e57600080fd5b506102ec61067d366004611b06565b60066020526000908152604090205460ff1681565b34801561069e57600080fd5b506102756106ad366004611a62565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102a86106f3366004611a9b565b610c94565b34801561070457600080fd5b506102a8610713366004611b06565b610cba565b34801561072457600080fd5b50600854610557906001600160a01b031681565b34801561074457600080fd5b50610275600c5481565b34801561075a57600080fd5b506102ec610769366004611b06565b60076020526000908152604090205460ff1681565b610786610d47565b604080518082019091526fffffffffffffffffffffffffffffffff928316808252919092166020909201829052600160801b90910217600d55565b6060600380546107d090611b23565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90611b23565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600033610861818585610da1565b60019150505b92915050565b610875610d47565b60005b82518110156108dc57816006600085848151811061089857610898611b5d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108d481611b89565b915050610878565b505050565b6108e9610d47565b60005b82518110156108dc57816007600085848151811061090c5761090c611b5d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094881611b89565b9150506108ec565b60003361095e858285610ef9565b610969858585610f8b565b506001949350505050565b61097c610d47565b600880546001600160a01b0380851673ffffffffffffffffffffffffffffffffffffffff199283161790925560098054928416929091169190911790556109c63083600019610da1565b5050565b6109d2610d47565b600a80547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16600160b01b92151592830260ff60a81b191617600160a81b92909202919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108619082908690610a56908790611ba2565b610da1565b610a63610d47565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b610a96610d47565b610aa26009600a611c99565b610aac9082611ca8565b600c5550565b610aba610d47565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610af1610d47565b610afb60006112cc565b565b610b05610d47565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dc9190611cbf565b6060600480546107d090611b23565b610ba6610d47565b610bb0338261132b565b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109698286868403610da1565b600033610861818585610f8b565b610c78610d47565b610c846009600a611c99565b610c8e9082611ca8565b600b5550565b610c9c610d47565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b610cc2610d47565b6001600160a01b038116610d3e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c4c565b610bb0816112cc565b6005546001600160a01b03163314610afb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c4c565b6001600160a01b038316610e1c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b038216610e985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610f855781811015610f785760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c4c565b610f858484848403610da1565b50505050565b600081116110015760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610c4c565b600a54600160a01b900460ff168061103157506001600160a01b03831660009081526006602052604090205460ff165b8061105457506001600160a01b03821660009081526006602052604090205460ff165b15611064576108dc838383611444565b600a54600160b01b900460ff166110bd5760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206e6f7420656e61626c6564000000000000000000000000006044820152606401610c4c565b6001600160a01b03831660009081526007602052604090205460ff161580156110ff57506001600160a01b03821660009081526007602052604090205460ff16155b61114b5760405162461bcd60e51b815260206004820152601360248201527f426c61636b6c69737465642061646472657373000000000000000000000000006044820152606401610c4c565b6009546001600160a01b038381169116146111db57600c5481611183846001600160a01b031660009081526020819052604090205490565b61118d9190611ba2565b11156111db5760405162461bcd60e51b815260206004820152601560248201527f57616c6c6574206c696d697420657863656564656400000000000000000000006044820152606401610c4c565b6009546000906001600160a01b039081169084160361122e57600d5460649061121d90600160801b90046fffffffffffffffffffffffffffffffff1684611ca8565b6112279190611cdc565b9050611273565b6009546001600160a01b039081169085160361127357600d54606490611266906fffffffffffffffffffffffffffffffff1684611ca8565b6112709190611cdc565b90505b600a54600160a81b900460ff16801561129a57506009546001600160a01b03858116911614155b156112a7576112a7611631565b6112bb84846112b68486611cfe565b611444565b8015610f8557610f85843083611444565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8047101561137b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c4c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113c8576040519150601f19603f3d011682016040523d82523d6000602084013e6113cd565b606091505b50509050806108dc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c4c565b6001600160a01b0383166114c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b03821661153c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b038316600090815260208190526040902054818110156115cb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f85565b600a54600160a01b900460ff16610afb57600a805460ff60a01b1916600160a01b179055306000908152602081905260408120549050600b5481106116a657600b54479061167e906116b6565b600061168a8247611cfe565b600a549091506116a3906001600160a01b03168261132b565b50505b50600a805460ff60a01b19169055565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106116eb576116eb611b5d565b6001600160a01b03928316602091820292909201810191909152600854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561175d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117819190611d11565b8160018151811061179457611794611b5d565b6001600160a01b0392831660209182029290920101526008546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906117f3908590600090869030904290600401611d2e565b600060405180830381600087803b15801561180d57600080fd5b505af1158015611821573d6000803e3d6000fd5b505050505050565b80356fffffffffffffffffffffffffffffffff8116811461184957600080fd5b919050565b6000806040838503121561186157600080fd5b61186a83611829565b915061187860208401611829565b90509250929050565b600060208083528351808285015260005b818110156118ae57858101830151858201604001528201611892565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bb057600080fd5b8035611849816118cf565b6000806040838503121561190257600080fd5b823561190d816118cf565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610bb057600080fd5b803561184981611931565b6000806040838503121561195d57600080fd5b823567ffffffffffffffff8082111561197557600080fd5b818501915085601f83011261198957600080fd5b813560208282111561199d5761199d61191b565b8160051b604051601f19603f830116810181811086821117156119c2576119c261191b565b6040529283528183019350848101820192898411156119e057600080fd5b948201945b83861015611a05576119f6866118e4565b855294820194938201936119e5565b9650611a14905087820161193f565b9450505050509250929050565b600080600060608486031215611a3657600080fd5b8335611a41816118cf565b92506020840135611a51816118cf565b929592945050506040919091013590565b60008060408385031215611a7557600080fd5b8235611a80816118cf565b91506020830135611a90816118cf565b809150509250929050565b600060208284031215611aad57600080fd5b8135611ab881611931565b9392505050565b60008060408385031215611ad257600080fd5b8235611add816118cf565b91506020830135611a9081611931565b600060208284031215611aff57600080fd5b5035919050565b600060208284031215611b1857600080fd5b8135611ab8816118cf565b600181811c90821680611b3757607f821691505b602082108103611b5757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611b9b57611b9b611b73565b5060010190565b8082018082111561086757610867611b73565b600181815b80851115611bf0578160001904821115611bd657611bd6611b73565b80851615611be357918102915b93841c9390800290611bba565b509250929050565b600082611c0757506001610867565b81611c1457506000610867565b8160018114611c2a5760028114611c3457611c50565b6001915050610867565b60ff841115611c4557611c45611b73565b50506001821b610867565b5060208310610133831016604e8410600b8410161715611c73575081810a610867565b611c7d8383611bb5565b8060001904821115611c9157611c91611b73565b029392505050565b6000611ab860ff841683611bf8565b808202811582820484141761086757610867611b73565b600060208284031215611cd157600080fd5b8151611ab881611931565b600082611cf957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561086757610867611b73565b600060208284031215611d2357600080fd5b8151611ab8816118cf565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d7e5784516001600160a01b031683529383019391830191600101611d59565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200a7d45ed29b71044f90a8ed452ed3dea13a2811f70235a86b6f362ffac3195f464736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b60b970c6fb8806a1e57d93393326fb458569f78000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000007506967616368750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045049474100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102535760003560e01c8063715018a611610138578063a9059cbb116100b0578063e01af92c1161007f578063f887ea4011610064578063f887ea4014610718578063f8b45b0514610738578063fe575a871461074e57600080fd5b8063e01af92c146106d8578063f2fde38b146106f857600080fd5b8063a9059cbb14610622578063b5d7ab9a14610642578063c5d32bb214610662578063dd62ed3e1461069257600080fd5b80638da5cb5b116101075780639e252f00116100ec5780639e252f00146105c2578063a457c2d7146105e2578063a8aa1b311461060257600080fd5b80638da5cb5b1461058f57806395d89b41146105ad57600080fd5b8063715018a6146104c5578063728f8eea146104da57806375f0a874146105375780638cd4426d1461056f57600080fd5b8063313ce567116101cb5780634ada218b1161019a5780635d098b381161017f5780635d098b381461044e5780636ddd17131461046e57806370a082311461048f57600080fd5b80634ada218b1461040d5780635d0044ca1461042e57600080fd5b8063313ce56714610391578063379ba1d9146103ad57806339509351146103cd5780634a14c4c6146103ed57600080fd5b80630e375a5c1161022257806318160ddd1161020757806318160ddd1461033c57806323b872dd14610351578063255f40b61461037157600080fd5b80630e375a5c146102fc5780630e85d1e31461031c57600080fd5b80630445b6671461025f57806304fb2ebe1461028857806306fdde03146102aa578063095ea7b3146102cc57600080fd5b3661025a57005b600080fd5b34801561026b57600080fd5b50610275600b5481565b6040519081526020015b60405180910390f35b34801561029457600080fd5b506102a86102a336600461184e565b61077e565b005b3480156102b657600080fd5b506102bf6107c1565b60405161027f9190611881565b3480156102d857600080fd5b506102ec6102e73660046118ef565b610853565b604051901515815260200161027f565b34801561030857600080fd5b506102a861031736600461194a565b61086d565b34801561032857600080fd5b506102a861033736600461194a565b6108e1565b34801561034857600080fd5b50600254610275565b34801561035d57600080fd5b506102ec61036c366004611a21565b610950565b34801561037d57600080fd5b506102a861038c366004611a62565b610974565b34801561039d57600080fd5b506040516009815260200161027f565b3480156103b957600080fd5b506102a86103c8366004611a9b565b6109ca565b3480156103d957600080fd5b506102ec6103e83660046118ef565b610a1c565b3480156103f957600080fd5b506102a8610408366004611abf565b610a5b565b34801561041957600080fd5b50600a546102ec90600160b01b900460ff1681565b34801561043a57600080fd5b506102a8610449366004611aed565b610a8e565b34801561045a57600080fd5b506102a8610469366004611b06565b610ab2565b34801561047a57600080fd5b50600a546102ec90600160a81b900460ff1681565b34801561049b57600080fd5b506102756104aa366004611b06565b6001600160a01b031660009081526020819052604090205490565b3480156104d157600080fd5b506102a8610ae9565b3480156104e657600080fd5b50600d5461050e906fffffffffffffffffffffffffffffffff80821691600160801b90041682565b604080516fffffffffffffffffffffffffffffffff93841681529290911660208301520161027f565b34801561054357600080fd5b50600a54610557906001600160a01b031681565b6040516001600160a01b03909116815260200161027f565b34801561057b57600080fd5b506102a861058a3660046118ef565b610afd565b34801561059b57600080fd5b506005546001600160a01b0316610557565b3480156105b957600080fd5b506102bf610b8f565b3480156105ce57600080fd5b506102a86105dd366004611aed565b610b9e565b3480156105ee57600080fd5b506102ec6105fd3660046118ef565b610bb3565b34801561060e57600080fd5b50600954610557906001600160a01b031681565b34801561062e57600080fd5b506102ec61063d3660046118ef565b610c62565b34801561064e57600080fd5b506102a861065d366004611aed565b610c70565b34801561066e57600080fd5b506102ec61067d366004611b06565b60066020526000908152604090205460ff1681565b34801561069e57600080fd5b506102756106ad366004611a62565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e457600080fd5b506102a86106f3366004611a9b565b610c94565b34801561070457600080fd5b506102a8610713366004611b06565b610cba565b34801561072457600080fd5b50600854610557906001600160a01b031681565b34801561074457600080fd5b50610275600c5481565b34801561075a57600080fd5b506102ec610769366004611b06565b60076020526000908152604090205460ff1681565b610786610d47565b604080518082019091526fffffffffffffffffffffffffffffffff928316808252919092166020909201829052600160801b90910217600d55565b6060600380546107d090611b23565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90611b23565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600033610861818585610da1565b60019150505b92915050565b610875610d47565b60005b82518110156108dc57816006600085848151811061089857610898611b5d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806108d481611b89565b915050610878565b505050565b6108e9610d47565b60005b82518110156108dc57816007600085848151811061090c5761090c611b5d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094881611b89565b9150506108ec565b60003361095e858285610ef9565b610969858585610f8b565b506001949350505050565b61097c610d47565b600880546001600160a01b0380851673ffffffffffffffffffffffffffffffffffffffff199283161790925560098054928416929091169190911790556109c63083600019610da1565b5050565b6109d2610d47565b600a80547fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff16600160b01b92151592830260ff60a81b191617600160a81b92909202919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906108619082908690610a56908790611ba2565b610da1565b610a63610d47565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b610a96610d47565b610aa26009600a611c99565b610aac9082611ca8565b600c5550565b610aba610d47565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610af1610d47565b610afb60006112cc565b565b610b05610d47565b6040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018290526001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015610b6b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dc9190611cbf565b6060600480546107d090611b23565b610ba6610d47565b610bb0338261132b565b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610c555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6109698286868403610da1565b600033610861818585610f8b565b610c78610d47565b610c846009600a611c99565b610c8e9082611ca8565b600b5550565b610c9c610d47565b600a8054911515600160a81b0260ff60a81b19909216919091179055565b610cc2610d47565b6001600160a01b038116610d3e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610c4c565b610bb0816112cc565b6005546001600160a01b03163314610afb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c4c565b6001600160a01b038316610e1c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b038216610e985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610f855781811015610f785760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610c4c565b610f858484848403610da1565b50505050565b600081116110015760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610c4c565b600a54600160a01b900460ff168061103157506001600160a01b03831660009081526006602052604090205460ff165b8061105457506001600160a01b03821660009081526006602052604090205460ff165b15611064576108dc838383611444565b600a54600160b01b900460ff166110bd5760405162461bcd60e51b815260206004820152601360248201527f54726164696e67206e6f7420656e61626c6564000000000000000000000000006044820152606401610c4c565b6001600160a01b03831660009081526007602052604090205460ff161580156110ff57506001600160a01b03821660009081526007602052604090205460ff16155b61114b5760405162461bcd60e51b815260206004820152601360248201527f426c61636b6c69737465642061646472657373000000000000000000000000006044820152606401610c4c565b6009546001600160a01b038381169116146111db57600c5481611183846001600160a01b031660009081526020819052604090205490565b61118d9190611ba2565b11156111db5760405162461bcd60e51b815260206004820152601560248201527f57616c6c6574206c696d697420657863656564656400000000000000000000006044820152606401610c4c565b6009546000906001600160a01b039081169084160361122e57600d5460649061121d90600160801b90046fffffffffffffffffffffffffffffffff1684611ca8565b6112279190611cdc565b9050611273565b6009546001600160a01b039081169085160361127357600d54606490611266906fffffffffffffffffffffffffffffffff1684611ca8565b6112709190611cdc565b90505b600a54600160a81b900460ff16801561129a57506009546001600160a01b03858116911614155b156112a7576112a7611631565b6112bb84846112b68486611cfe565b611444565b8015610f8557610f85843083611444565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8047101561137b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c4c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113c8576040519150601f19603f3d011682016040523d82523d6000602084013e6113cd565b606091505b50509050806108dc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c4c565b6001600160a01b0383166114c05760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b03821661153c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b038316600090815260208190526040902054818110156115cb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610c4c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610f85565b600a54600160a01b900460ff16610afb57600a805460ff60a01b1916600160a01b179055306000908152602081905260408120549050600b5481106116a657600b54479061167e906116b6565b600061168a8247611cfe565b600a549091506116a3906001600160a01b03168261132b565b50505b50600a805460ff60a01b19169055565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106116eb576116eb611b5d565b6001600160a01b03928316602091820292909201810191909152600854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561175d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117819190611d11565b8160018151811061179457611794611b5d565b6001600160a01b0392831660209182029290920101526008546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac947906117f3908590600090869030904290600401611d2e565b600060405180830381600087803b15801561180d57600080fd5b505af1158015611821573d6000803e3d6000fd5b505050505050565b80356fffffffffffffffffffffffffffffffff8116811461184957600080fd5b919050565b6000806040838503121561186157600080fd5b61186a83611829565b915061187860208401611829565b90509250929050565b600060208083528351808285015260005b818110156118ae57858101830151858201604001528201611892565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bb057600080fd5b8035611849816118cf565b6000806040838503121561190257600080fd5b823561190d816118cf565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610bb057600080fd5b803561184981611931565b6000806040838503121561195d57600080fd5b823567ffffffffffffffff8082111561197557600080fd5b818501915085601f83011261198957600080fd5b813560208282111561199d5761199d61191b565b8160051b604051601f19603f830116810181811086821117156119c2576119c261191b565b6040529283528183019350848101820192898411156119e057600080fd5b948201945b83861015611a05576119f6866118e4565b855294820194938201936119e5565b9650611a14905087820161193f565b9450505050509250929050565b600080600060608486031215611a3657600080fd5b8335611a41816118cf565b92506020840135611a51816118cf565b929592945050506040919091013590565b60008060408385031215611a7557600080fd5b8235611a80816118cf565b91506020830135611a90816118cf565b809150509250929050565b600060208284031215611aad57600080fd5b8135611ab881611931565b9392505050565b60008060408385031215611ad257600080fd5b8235611add816118cf565b91506020830135611a9081611931565b600060208284031215611aff57600080fd5b5035919050565b600060208284031215611b1857600080fd5b8135611ab8816118cf565b600181811c90821680611b3757607f821691505b602082108103611b5757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611b9b57611b9b611b73565b5060010190565b8082018082111561086757610867611b73565b600181815b80851115611bf0578160001904821115611bd657611bd6611b73565b80851615611be357918102915b93841c9390800290611bba565b509250929050565b600082611c0757506001610867565b81611c1457506000610867565b8160018114611c2a5760028114611c3457611c50565b6001915050610867565b60ff841115611c4557611c45611b73565b50506001821b610867565b5060208310610133831016604e8410600b8410161715611c73575081810a610867565b611c7d8383611bb5565b8060001904821115611c9157611c91611b73565b029392505050565b6000611ab860ff841683611bf8565b808202811582820484141761086757610867611b73565b600060208284031215611cd157600080fd5b8151611ab881611931565b600082611cf957634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561086757610867611b73565b600060208284031215611d2357600080fd5b8151611ab8816118cf565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d7e5784516001600160a01b031683529383019391830191600101611d59565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200a7d45ed29b71044f90a8ed452ed3dea13a2811f70235a86b6f362ffac3195f464736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000b60b970c6fb8806a1e57d93393326fb458569f78000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000007506967616368750000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045049474100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _marketingWallet (address): 0xb60b970C6Fb8806A1e57d93393326Fb458569F78
Arg [2] : _name (string): Pigachu
Arg [3] : _symbol (string): PIGA

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000b60b970c6fb8806a1e57d93393326fb458569f78
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 5069676163687500000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5049474100000000000000000000000000000000000000000000000000000000


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.