ETH Price: $3,487.51 (-0.08%)

Token

Shiba Island Loot (SHILL)
 

Overview

Max Total Supply

10,000,000,000 SHILL

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
49,369,798.975527727449203682 SHILL

Value
$0.00
0xd203612eF8000D68e66f3181945754f6Ab396fEF
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:
ShibaIslandLoot

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion
File 1 of 7 : Shill.sol
// SPDX-License-Identifier: MIT
//
//     ▄▄▄▄▄▄▄ ▄▄   ▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄ 
//    █       █  █ █  █   █  ▄    █      █
//    █  ▄▄▄▄▄█  █▄█  █   █ █▄█   █  ▄   █
//    █ █▄▄▄▄▄█       █   █       █ █▄█  █
//    █▄▄▄▄▄  █   ▄   █   █  ▄   ██      █
//     ▄▄▄▄▄█ █  █ █  █   █ █▄█   █  ▄   █
//    █▄▄▄▄▄▄▄█▄▄█ █▄▄█▄▄▄█▄▄▄▄▄▄▄█▄█ █▄▄█
//  ▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄     ▄▄▄▄▄▄ ▄▄    ▄ ▄▄▄▄▄▄  
// █   █       █   █   █      █  █  █ █      █ 
// █   █  ▄▄▄▄▄█   █   █  ▄   █   █▄█ █  ▄    █
// █   █ █▄▄▄▄▄█   █   █ █▄█  █       █ █ █   █
// █   █▄▄▄▄▄  █   █▄▄▄█      █  ▄    █ █▄█   █
// █   █▄▄▄▄▄█ █       █  ▄   █ █ █   █       █
// █▄▄▄█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄█ █▄▄█▄█  █▄▄█▄▄▄▄▄▄█ 
//
// Shiba Island Loot ($SHILL) - Token Contract
//
// https://shibaisland.io
// https://t.me/shibaislandgame
// https://x.com/shibaislandgame
//
// with love,
// by INUGAMES (https://inu.games/)
// Community-Driven Crypto Games

pragma solidity 0.8.28;

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

import "./interfaces/IDEXFactory.sol";
import "./interfaces/IDEXRouter.sol";

contract ShibaIslandLoot is ERC20, Ownable {
    mapping (address => bool) public isExcludedFromFee;
    address payable public treasuryAddress;
    uint256 public buyFeePercent;
    uint256 public sellFeePercent;
    uint256 public collectedTaxThreshold;
    address public uniswapV2Pair;
    bool public autoTaxDistributionEnabled = true;
    bool private inInternalSwap;
    bool private _tradingOpen;
    IDEXRouter public uniswapV2Router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    modifier lockTheSwap {
        inInternalSwap = true;
        _;
        inInternalSwap = false;
    }

    constructor(address payable _treasuryAddress, uint256 _feePercent, string memory name, string memory symbol) ERC20(name, symbol) {
        treasuryAddress = _treasuryAddress;
        buyFeePercent = _feePercent;
        sellFeePercent = _feePercent;
        isExcludedFromFee[owner()] = true;
        isExcludedFromFee[address(this)] = true;
        isExcludedFromFee[_treasuryAddress] = true;

        _mint(msg.sender, 10_000_000_000 * 10 ** decimals());
        collectedTaxThreshold = _totalSupply / 3000;
        uniswapV2Pair = IDEXFactory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }

    function enableTrading() external onlyOwner {
        require(!_tradingOpen, "Trading is already open");
        _tradingOpen = true;
    }

    function _transfer(address from, address to, uint256 amount) internal override(ERC20) {
        require(from != address(0), "ERC20: transfer from invalid");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;
        address _uniswapV2Pair = uniswapV2Pair;
        if (!isExcludedFromFee[from] && !isExcludedFromFee[to]) {
            require(_tradingOpen, "Trading closed");
            bool _isTransfer = from != _uniswapV2Pair && to != _uniswapV2Pair;
            uint256 _feePercent;
            if (!inInternalSwap && !_isTransfer) {
                if (to == _uniswapV2Pair) {
                    _feePercent = sellFeePercent;
                } else {
                    _feePercent = buyFeePercent;
                }
                uint256 _collectedTaxThreshold = collectedTaxThreshold;
                taxAmount = amount * _feePercent / 100;
                uint256 contractBalance = balanceOf(address(this));
                if (from != _uniswapV2Pair && autoTaxDistributionEnabled && contractBalance > _collectedTaxThreshold) {
                    if (contractBalance > _collectedTaxThreshold * 20) contractBalance = _collectedTaxThreshold * 20;
                    _distributeTaxes(contractBalance);
                }
            }
        }

        _balances[from]= _balances[from] - amount;
        _balances[to]= _balances[to] + amount - taxAmount;

        emit Transfer(from, to, amount - taxAmount);

        if (taxAmount > 0) {
          _balances[address(this)]=_balances[address(this)] + taxAmount;
          emit Transfer(from, address(this), taxAmount);
        }
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function setAutoTaxDistributionEnabled(bool _enabled) external onlyOwner {
        autoTaxDistributionEnabled = _enabled;
    }

    function setFees(uint256 _buyFeePercent, uint256 _sellFeePercent) external onlyOwner{
        buyFeePercent = _buyFeePercent;
        sellFeePercent = _sellFeePercent;
    }

    function setExcludeFromFee(address _address, bool _excluded) external onlyOwner {
        isExcludedFromFee[_address] = _excluded;
    }

    function setTreasuryAddress(address payable _treasuryAddress) external onlyOwner {
        treasuryAddress = _treasuryAddress;
        isExcludedFromFee[_treasuryAddress] = true;
    }

    function setTaxThreshold(uint256 _newThreshold) external onlyOwner {
        collectedTaxThreshold = _newThreshold;
    }

    function distributeTaxes(uint256 amount) external onlyOwner {
        _distributeTaxes(amount);
    }

    function _distributeTaxes(uint256 amount) internal { 
        _swapTokensForEth(amount);
        uint256 contractETHBalance = address(this).balance;

        if (contractETHBalance > 0) {
            (bool sent, ) = treasuryAddress.call{value: contractETHBalance}("");
            require(sent, "Failed to send Eth");
        }
    }

    function recoverERC20(IERC20 token) external {
        require(msg.sender == treasuryAddress, "NOT_AUTHORIZED");
        uint256 balance = token.balanceOf(address(this));
        bool sent = token.transfer(msg.sender, balance);
        require(sent, "Failed to send token");
    }

    receive() external payable {}
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 4 of 7 : 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;
    }
}

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract ERC20 is IERC20 {
    mapping(address => uint256) internal _balances;

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

    uint256 internal _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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 pure returns (uint8) {
        return 18;
    }

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

    /**
     * @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 = msg.sender;
        _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 = msg.sender;
        _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 = msg.sender;
        _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 = msg.sender;
        _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 = msg.sender;
        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 {
        //overriden
    }

    /** @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");

        _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);
    }

    /**
     * @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);
            }
        }
    }
}

File 6 of 7 : IDEXFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IDEXFactory {
  function createPair(address tokenA, address tokenB) external returns (address pair);
  function getPair(address tokenA, address tokenB) external view returns (address pair);
}

File 7 of 7 : IDEXRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IDEXRouter {
  function factory() external pure returns (address);

  function WETH() external pure returns (address);

  function addLiquidity(
    address tokenA,
    address tokenB,
    uint256 amountADesired,
    uint256 amountBDesired,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  )
    external
    returns (
      uint256 amountA,
      uint256 amountB,
      uint256 liquidity
    );

  function addLiquidityETH(
    address token,
    uint256 amountTokenDesired,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  )
    external
    payable
    returns (
      uint256 amountToken,
      uint256 amountETH,
      uint256 liquidity
    );

  function swapExactTokensForTokensSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;

  function swapExactETHForTokensSupportingFeeOnTransferTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable;

  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;

  function removeLiquidity(
    address tokenA,
    address tokenB,
    uint256 liquidity,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountA, uint256 amountB);

  function swapExactTokensForTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function swapTokensForExactTokens(
    uint256 amountOut,
    uint256 amountInMax,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external returns (uint256[] memory amounts);

  function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_treasuryAddress","type":"address"},{"internalType":"uint256","name":"_feePercent","type":"uint256"},{"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":[],"name":"autoTaxDistributionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectedTaxThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"amount","type":"uint256"}],"name":"distributeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"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":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAutoTaxDistributionEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFeePercent","type":"uint256"},{"internalType":"uint256","name":"_sellFeePercent","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"setTaxThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600b805460ff60a01b1916600160a01b179055600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905534801561004957600080fd5b50604051611ec6380380611ec6833981016040819052610068916104e4565b8181600361007683826105f3565b50600461008382826105f3565b50505061009c6100976102fa60201b60201c565b6102fe565b600780546001600160a01b0319166001600160a01b038616179055600883905560098390556001600660006100d96005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935281832080548516600190811790915590881683529120805490921617905561015833610139601290565b61014490600a6107b0565b610153906402540be4006107c6565b610350565b610bb860025461016891906107dd565b600a55600c546040805163c45a015560e01b815290516001600160a01b039092169163c45a0155916004808201926020929091908290030181865afa1580156101b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101d991906107ff565b6001600160a01b031663c9c6539630600c60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061025f91906107ff565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156102ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102d091906107ff565b600b80546001600160a01b0319166001600160a01b03929092169190911790555061082f92505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166103aa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546103bc919061081c565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038116811461042857600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261045257600080fd5b81516001600160401b0381111561046b5761046b61042b565b604051601f8201601f19908116603f011681016001600160401b03811182821017156104995761049961042b565b6040528181528382016020018510156104b157600080fd5b60005b828110156104d0576020818601810151838301820152016104b4565b506000918101602001919091529392505050565b600080600080608085870312156104fa57600080fd5b845161050581610413565b6020860151604087015191955093506001600160401b0381111561052857600080fd5b61053487828801610441565b606087015190935090506001600160401b0381111561055257600080fd5b61055e87828801610441565b91505092959194509250565b600181811c9082168061057e57607f821691505b60208210810361059e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105ee57806000526020600020601f840160051c810160208510156105cb5750805b601f840160051c820191505b818110156105eb57600081556001016105d7565b50505b505050565b81516001600160401b0381111561060c5761060c61042b565b6106208161061a845461056a565b846105a4565b6020601f821160018114610654576000831561063c5750848201515b600019600385901b1c1916600184901b1784556105eb565b600084815260208120601f198516915b828110156106845787850151825560209485019460019092019101610664565b50848210156106a25786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6001815b6001841115610702578085048111156106e6576106e66106b1565b60018416156106f457908102905b60019390931c9280026106cb565b935093915050565b600082610719575060016107aa565b81610726575060006107aa565b816001811461073c576002811461074657610762565b60019150506107aa565b60ff841115610757576107576106b1565b50506001821b6107aa565b5060208310610133831016604e8410600b8410161715610785575081810a6107aa565b61079260001984846106c7565b80600019048211156107a6576107a66106b1565b0290505b92915050565b60006107bf60ff84168361070a565b9392505050565b80820281158282048414176107aa576107aa6106b1565b6000826107fa57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561081157600080fd5b81516107bf81610413565b808201808211156107aa576107aa6106b1565b6116888061083e6000396000f3fe6080604052600436106101d15760003560e01c80638a8c523c116100f7578063c5f956af11610095578063de03e5fe11610064578063de03e5fe14610540578063e0d30d9b14610561578063f2fde38b14610577578063faad1b121461059757600080fd5b8063c5f956af146104d4578063cb88a449146104f4578063cc3fdd4c1461050a578063dd62ed3e1461052057600080fd5b80639e8c708e116100d15780639e8c708e14610454578063a457c2d714610474578063a9059cbb14610494578063af9549e0146104b457600080fd5b80638a8c523c1461040c5780638da5cb5b1461042157806395d89b411461043f57600080fd5b806323f7ee191161016f5780635342acb41161013e5780635342acb4146103715780636605bfda146103a157806370a08231146103c1578063715018a6146103f757600080fd5b806323f7ee19146102f5578063313ce56714610315578063395093511461033157806349bd5a5e1461035157600080fd5b80630b78f9c0116101ab5780630b78f9c01461025a5780631694505e1461027a57806318160ddd146102b257806323b872dd146102d557600080fd5b806306fdde03146101dd57806307a212be14610208578063095ea7b31461022a57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105b7565b6040516101ff9190611307565b60405180910390f35b34801561021457600080fd5b50610228610223366004611355565b610649565b005b34801561023657600080fd5b5061024a610245366004611383565b610656565b60405190151581526020016101ff565b34801561026657600080fd5b506102286102753660046113af565b610670565b34801561028657600080fd5b50600c5461029a906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b3480156102be57600080fd5b506102c7610683565b6040519081526020016101ff565b3480156102e157600080fd5b5061024a6102f03660046113d1565b6106c1565b34801561030157600080fd5b50610228610310366004611355565b6106e5565b34801561032157600080fd5b50604051601281526020016101ff565b34801561033d57600080fd5b5061024a61034c366004611383565b6106f9565b34801561035d57600080fd5b50600b5461029a906001600160a01b031681565b34801561037d57600080fd5b5061024a61038c366004611412565b60066020526000908152604090205460ff1681565b3480156103ad57600080fd5b506102286103bc366004611412565b61071b565b3480156103cd57600080fd5b506102c76103dc366004611412565b6001600160a01b031660009081526020819052604090205490565b34801561040357600080fd5b5061022861075d565b34801561041857600080fd5b50610228610771565b34801561042d57600080fd5b506005546001600160a01b031661029a565b34801561044b57600080fd5b506101f26107ed565b34801561046057600080fd5b5061022861046f366004611412565b6107fc565b34801561048057600080fd5b5061024a61048f366004611383565b610974565b3480156104a057600080fd5b5061024a6104af366004611383565b6109ef565b3480156104c057600080fd5b506102286104cf366004611444565b6109fd565b3480156104e057600080fd5b5060075461029a906001600160a01b031681565b34801561050057600080fd5b506102c7600a5481565b34801561051657600080fd5b506102c760085481565b34801561052c57600080fd5b506102c761053b36600461147d565b610a30565b34801561054c57600080fd5b50600b5461024a90600160a01b900460ff1681565b34801561056d57600080fd5b506102c760095481565b34801561058357600080fd5b50610228610592366004611412565b610a5b565b3480156105a357600080fd5b506102286105b23660046114ab565b610ad1565b6060600380546105c6906114c8565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906114c8565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b610651610af7565b600a55565b600033610664818585610b51565b60019150505b92915050565b610678610af7565b600891909155600955565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546002546106bc9190611518565b905090565b6000336106cf858285610c75565b6106da858585610cef565b506001949350505050565b6106ed610af7565b6106f68161108f565b50565b60003361066481858561070c8383610a30565b610716919061152b565b610b51565b610723610af7565b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b610765610af7565b61076f600061113b565b565b610779610af7565b600b54600160b01b900460ff16156107d85760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b600b805460ff60b01b1916600160b01b179055565b6060600480546105c6906114c8565b6007546001600160a01b031633146108475760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016107cf565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b2919061153e565b60405163a9059cbb60e01b8152336004820152602481018290529091506000906001600160a01b0384169063a9059cbb906044016020604051808303816000875af1158015610905573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109299190611557565b90508061096f5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b732103a37b5b2b760611b60448201526064016107cf565b505050565b600033816109828286610a30565b9050838110156109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107cf565b6106da8286868403610b51565b600033610664818585610cef565b610a05610af7565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a63610af7565b6001600160a01b038116610ac85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cf565b6106f68161113b565b610ad9610af7565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b0316331461076f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107cf565b6001600160a01b038316610bb35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107cf565b6001600160a01b038216610c145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610c818484610a30565b90506000198114610ce95781811015610cdc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107cf565b610ce98484848403610b51565b50505050565b6001600160a01b038316610d455760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e736665722066726f6d20696e76616c69640000000060448201526064016107cf565b60008111610da75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107cf565b600b546001600160a01b038481166000908152600660205260408120549092919091169060ff16158015610df457506001600160a01b03841660009081526006602052604090205460ff16155b15610f5a57600b54600160b01b900460ff16610e435760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c818db1bdcd95960921b60448201526064016107cf565b6000816001600160a01b0316866001600160a01b031614158015610e795750816001600160a01b0316856001600160a01b031614155b600b54909150600090600160a81b900460ff16158015610e97575081155b15610f5757826001600160a01b0316866001600160a01b031603610ebe5750600954610ec3565b506008545b600a546064610ed28388611574565b610edc919061158b565b3060009081526020819052604081205491965050846001600160a01b0316896001600160a01b031614158015610f1b5750600b54600160a01b900460ff165b8015610f2657508181115b15610f5457610f36826014611574565b811115610f4b57610f48826014611574565b90505b610f548161108f565b50505b50505b6001600160a01b038516600090815260208190526040902054610f7e908490611518565b6001600160a01b0380871660009081526020819052604080822093909355908616815220548290610fb090859061152b565b610fba9190611518565b6001600160a01b0380861660008181526020819052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110048587611518565b60405190815260200160405180910390a38115611088573060009081526020819052604090205461103690839061152b565b3060008181526020818152604091829020939093555184815290916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050505050565b6110988161118d565b478015611137576007546040516000916001600160a01b03169083908381818185875af1925050503d80600081146110ec576040519150601f19603f3d011682016040523d82523d6000602084013e6110f1565b606091505b505090508061096f5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408ae8d60731b60448201526064016107cf565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111d5576111d56115ad565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561122e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125291906115c3565b81600181518110611265576112656115ad565b6001600160a01b039283166020918202929092010152600c5461128b9130911684610b51565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac947906112c49085906000908690309042906004016115e0565b600060405180830381600087803b1580156112de57600080fd5b505af11580156112f2573d6000803e3d6000fd5b5050600b805460ff60a81b1916905550505050565b602081526000825180602084015260005b818110156113355760208186018101516040868401015201611318565b506000604082850101526040601f19601f83011684010191505092915050565b60006020828403121561136757600080fd5b5035919050565b6001600160a01b03811681146106f657600080fd5b6000806040838503121561139657600080fd5b82356113a18161136e565b946020939093013593505050565b600080604083850312156113c257600080fd5b50508035926020909101359150565b6000806000606084860312156113e657600080fd5b83356113f18161136e565b925060208401356114018161136e565b929592945050506040919091013590565b60006020828403121561142457600080fd5b813561142f8161136e565b9392505050565b80151581146106f657600080fd5b6000806040838503121561145757600080fd5b82356114628161136e565b9150602083013561147281611436565b809150509250929050565b6000806040838503121561149057600080fd5b823561149b8161136e565b915060208301356114728161136e565b6000602082840312156114bd57600080fd5b813561142f81611436565b600181811c908216806114dc57607f821691505b6020821081036114fc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561066a5761066a611502565b8082018082111561066a5761066a611502565b60006020828403121561155057600080fd5b5051919050565b60006020828403121561156957600080fd5b815161142f81611436565b808202811582820484141761066a5761066a611502565b6000826115a857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156115d557600080fd5b815161142f8161136e565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156116325783516001600160a01b031683526020938401939092019160010161160b565b50506001600160a01b03959095166060840152505060800152939250505056fea264697066735822122022e6973ce0c9c29ff7fdda21002c78ce48d8910857b57af0e3633e2fe7190aef64736f6c634300081c00330000000000000000000000002ba39771c24f2ad73bc51bc678226d022453c48f0000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001153686962612049736c616e64204c6f6f7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494c4c000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80638a8c523c116100f7578063c5f956af11610095578063de03e5fe11610064578063de03e5fe14610540578063e0d30d9b14610561578063f2fde38b14610577578063faad1b121461059757600080fd5b8063c5f956af146104d4578063cb88a449146104f4578063cc3fdd4c1461050a578063dd62ed3e1461052057600080fd5b80639e8c708e116100d15780639e8c708e14610454578063a457c2d714610474578063a9059cbb14610494578063af9549e0146104b457600080fd5b80638a8c523c1461040c5780638da5cb5b1461042157806395d89b411461043f57600080fd5b806323f7ee191161016f5780635342acb41161013e5780635342acb4146103715780636605bfda146103a157806370a08231146103c1578063715018a6146103f757600080fd5b806323f7ee19146102f5578063313ce56714610315578063395093511461033157806349bd5a5e1461035157600080fd5b80630b78f9c0116101ab5780630b78f9c01461025a5780631694505e1461027a57806318160ddd146102b257806323b872dd146102d557600080fd5b806306fdde03146101dd57806307a212be14610208578063095ea7b31461022a57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105b7565b6040516101ff9190611307565b60405180910390f35b34801561021457600080fd5b50610228610223366004611355565b610649565b005b34801561023657600080fd5b5061024a610245366004611383565b610656565b60405190151581526020016101ff565b34801561026657600080fd5b506102286102753660046113af565b610670565b34801561028657600080fd5b50600c5461029a906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b3480156102be57600080fd5b506102c7610683565b6040519081526020016101ff565b3480156102e157600080fd5b5061024a6102f03660046113d1565b6106c1565b34801561030157600080fd5b50610228610310366004611355565b6106e5565b34801561032157600080fd5b50604051601281526020016101ff565b34801561033d57600080fd5b5061024a61034c366004611383565b6106f9565b34801561035d57600080fd5b50600b5461029a906001600160a01b031681565b34801561037d57600080fd5b5061024a61038c366004611412565b60066020526000908152604090205460ff1681565b3480156103ad57600080fd5b506102286103bc366004611412565b61071b565b3480156103cd57600080fd5b506102c76103dc366004611412565b6001600160a01b031660009081526020819052604090205490565b34801561040357600080fd5b5061022861075d565b34801561041857600080fd5b50610228610771565b34801561042d57600080fd5b506005546001600160a01b031661029a565b34801561044b57600080fd5b506101f26107ed565b34801561046057600080fd5b5061022861046f366004611412565b6107fc565b34801561048057600080fd5b5061024a61048f366004611383565b610974565b3480156104a057600080fd5b5061024a6104af366004611383565b6109ef565b3480156104c057600080fd5b506102286104cf366004611444565b6109fd565b3480156104e057600080fd5b5060075461029a906001600160a01b031681565b34801561050057600080fd5b506102c7600a5481565b34801561051657600080fd5b506102c760085481565b34801561052c57600080fd5b506102c761053b36600461147d565b610a30565b34801561054c57600080fd5b50600b5461024a90600160a01b900460ff1681565b34801561056d57600080fd5b506102c760095481565b34801561058357600080fd5b50610228610592366004611412565b610a5b565b3480156105a357600080fd5b506102286105b23660046114ab565b610ad1565b6060600380546105c6906114c8565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906114c8565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b610651610af7565b600a55565b600033610664818585610b51565b60019150505b92915050565b610678610af7565b600891909155600955565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546002546106bc9190611518565b905090565b6000336106cf858285610c75565b6106da858585610cef565b506001949350505050565b6106ed610af7565b6106f68161108f565b50565b60003361066481858561070c8383610a30565b610716919061152b565b610b51565b610723610af7565b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b610765610af7565b61076f600061113b565b565b610779610af7565b600b54600160b01b900460ff16156107d85760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064015b60405180910390fd5b600b805460ff60b01b1916600160b01b179055565b6060600480546105c6906114c8565b6007546001600160a01b031633146108475760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016107cf565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561088e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b2919061153e565b60405163a9059cbb60e01b8152336004820152602481018290529091506000906001600160a01b0384169063a9059cbb906044016020604051808303816000875af1158015610905573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109299190611557565b90508061096f5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b732103a37b5b2b760611b60448201526064016107cf565b505050565b600033816109828286610a30565b9050838110156109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107cf565b6106da8286868403610b51565b600033610664818585610cef565b610a05610af7565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a63610af7565b6001600160a01b038116610ac85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cf565b6106f68161113b565b610ad9610af7565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6005546001600160a01b0316331461076f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107cf565b6001600160a01b038316610bb35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107cf565b6001600160a01b038216610c145760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610c818484610a30565b90506000198114610ce95781811015610cdc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107cf565b610ce98484848403610b51565b50505050565b6001600160a01b038316610d455760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e736665722066726f6d20696e76616c69640000000060448201526064016107cf565b60008111610da75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016107cf565b600b546001600160a01b038481166000908152600660205260408120549092919091169060ff16158015610df457506001600160a01b03841660009081526006602052604090205460ff16155b15610f5a57600b54600160b01b900460ff16610e435760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c818db1bdcd95960921b60448201526064016107cf565b6000816001600160a01b0316866001600160a01b031614158015610e795750816001600160a01b0316856001600160a01b031614155b600b54909150600090600160a81b900460ff16158015610e97575081155b15610f5757826001600160a01b0316866001600160a01b031603610ebe5750600954610ec3565b506008545b600a546064610ed28388611574565b610edc919061158b565b3060009081526020819052604081205491965050846001600160a01b0316896001600160a01b031614158015610f1b5750600b54600160a01b900460ff165b8015610f2657508181115b15610f5457610f36826014611574565b811115610f4b57610f48826014611574565b90505b610f548161108f565b50505b50505b6001600160a01b038516600090815260208190526040902054610f7e908490611518565b6001600160a01b0380871660009081526020819052604080822093909355908616815220548290610fb090859061152b565b610fba9190611518565b6001600160a01b0380861660008181526020819052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6110048587611518565b60405190815260200160405180910390a38115611088573060009081526020819052604090205461103690839061152b565b3060008181526020818152604091829020939093555184815290916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050505050565b6110988161118d565b478015611137576007546040516000916001600160a01b03169083908381818185875af1925050503d80600081146110ec576040519150601f19603f3d011682016040523d82523d6000602084013e6110f1565b606091505b505090508061096f5760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408ae8d60731b60448201526064016107cf565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111d5576111d56115ad565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561122e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125291906115c3565b81600181518110611265576112656115ad565b6001600160a01b039283166020918202929092010152600c5461128b9130911684610b51565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac947906112c49085906000908690309042906004016115e0565b600060405180830381600087803b1580156112de57600080fd5b505af11580156112f2573d6000803e3d6000fd5b5050600b805460ff60a81b1916905550505050565b602081526000825180602084015260005b818110156113355760208186018101516040868401015201611318565b506000604082850101526040601f19601f83011684010191505092915050565b60006020828403121561136757600080fd5b5035919050565b6001600160a01b03811681146106f657600080fd5b6000806040838503121561139657600080fd5b82356113a18161136e565b946020939093013593505050565b600080604083850312156113c257600080fd5b50508035926020909101359150565b6000806000606084860312156113e657600080fd5b83356113f18161136e565b925060208401356114018161136e565b929592945050506040919091013590565b60006020828403121561142457600080fd5b813561142f8161136e565b9392505050565b80151581146106f657600080fd5b6000806040838503121561145757600080fd5b82356114628161136e565b9150602083013561147281611436565b809150509250929050565b6000806040838503121561149057600080fd5b823561149b8161136e565b915060208301356114728161136e565b6000602082840312156114bd57600080fd5b813561142f81611436565b600181811c908216806114dc57607f821691505b6020821081036114fc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561066a5761066a611502565b8082018082111561066a5761066a611502565b60006020828403121561155057600080fd5b5051919050565b60006020828403121561156957600080fd5b815161142f81611436565b808202811582820484141761066a5761066a611502565b6000826115a857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156115d557600080fd5b815161142f8161136e565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156116325783516001600160a01b031683526020938401939092019160010161160b565b50506001600160a01b03959095166060840152505060800152939250505056fea264697066735822122022e6973ce0c9c29ff7fdda21002c78ce48d8910857b57af0e3633e2fe7190aef64736f6c634300081c0033

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

0000000000000000000000002ba39771c24f2ad73bc51bc678226d022453c48f0000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000001153686962612049736c616e64204c6f6f7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055348494c4c000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _treasuryAddress (address): 0x2Ba39771c24f2Ad73bc51bc678226D022453c48f
Arg [1] : _feePercent (uint256): 35
Arg [2] : name (string): Shiba Island Loot
Arg [3] : symbol (string): SHILL

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000002ba39771c24f2ad73bc51bc678226d022453c48f
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 53686962612049736c616e64204c6f6f74000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 5348494c4c000000000000000000000000000000000000000000000000000000


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.