ETH Price: $2,610.25 (+0.39%)
Gas: 2 Gwei

Token

Shruba (SHRUBA)
 

Overview

Max Total Supply

100,000,000 SHRUBA

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
468,255.175440309593355737 SHRUBA

Value
$0.00
0xe83aFF34066298F2B78883BB40E97BCd5c32feF2
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:
Shruba

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 6 of 6: SHRUBA.sol
// File: Context.sol


// 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: Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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: IERC20.sol


// 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: IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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: token.sol




pragma solidity 0.8.6;





contract Shruba is IERC20Metadata, Ownable, ERC20 {
    /**
     * Sniper Bot and Malicious Actor Protection during the launch stage:
     * The AIX token employs strategies against sniper bots and malicious users:
     *
     * 1. Selling Fee:
     * - Temporarily sets a 100% selling fee to prevent buying from sniper-bots.
     * - After the launch, disabled by the owner, this cannot be reactivated.
     *
     * 2. Blacklist:
     * - During the launch addresses can be blacklisted.
     * - After the launch, blacklisting is permanently disabled.
     *
     * These mechanisms promote price stability and protect genuine investors.
     *
     * After the launch stage:
     * - Users cannot be blacklisted.
     * - buyFee and sellFee must be <= 5%.
     */

    /// @notice Emitted when a liquidity pool pair is updated.
    event LPPairSet(address indexed pair, bool enabled);

    /// @notice Emitted when an account is marked or unmarked as a liquidity holder (treasury, staking, etc).
    event LiquidityHolderSet(address indexed account, bool flag);

    /// @notice Emitted (once) when fees are locked forever.
    event FeesLockedForever();

    /// @notice Emitted (once) when sniper bot protection is disabled forever.
    event SniperBotProtectionDisabledForever();

    event BlacklistSet(address indexed account, bool flag);

    /// @notice Emitted (once) when blacklist add is restricted forever.
    event BlacklistAddRestrictedForever();

    event BuyFeeNumeratorSet(uint256 value);
    event SellFeeNumeratorSet(uint256 value);
    event TreasurySet(address treasury);
    event BuyFeePaid(address indexed from, address indexed to, uint256 amount);
    event SellFeePaid(address indexed from, address indexed to, uint256 amount);

    /**
     * @dev Struct to group account-specific flags to optimize storage usage.
     * This design pattern leverages Solidity's storage layout, where multiple
     * state variables of the same type are packed into a single storage slot
     * to minimize gas costs.
     *
     *   +-------------------- bytes32 slot ------------------------------+
     *   | 0 | 0 | 0 | ... | isBlackListed | isLiquidityHolder | isLPPool |
     *   +----------------------------------------------------------------+
     *
     * For a deeper understanding of storage packing and its benefits, you can refer to:
     * - https://docs.soliditylang.org/en/latest/internals/layout_in_storage.html
     * - https://dev.to/web3_ruud/advance-soliditymastering-storage-slot-c38
     */
    struct AccountInfo {
        bool isLPPool;
        bool isLiquidityHolder;
        bool isBlackListed;
    }
    mapping (address => AccountInfo) public accountInfo;

    string constant private _name = "Shruba";
    string constant private _symbol = "SHRUBA";
    uint256 constant private TOTAL_SUPPLY = 100_000_000 * (10 ** 18);

    uint256 constant public DENOMINATOR = 10000;
    uint256 constant public MAX_BUY_FEE_NUMERATOR = 10000;  // 1%
    uint256 constant public MAX_SELL_FEE_NUMERATOR = 10000;  // 2%
    uint256 public buyFeeNumerator;
    uint256 public _sellFeeNumerator;
    address public treasury;
    bool public feesAreLockedForever;
    bool public sniperBotProtectionDisabledForever;
    bool public blacklistAddRestrictedForever;

    constructor(
        address _treasury,
        uint256 _buyFeeNumeratorValue,
        uint256 _sellFeeNumeratorValue
    ) Ownable() ERC20(_name, _symbol) {
        _mint(msg.sender, TOTAL_SUPPLY);
        setLiquidityHolder(msg.sender, true);
        setLiquidityHolder(_treasury, true);
        setTreasury(_treasury);
        setBuyFeeNumerator(_buyFeeNumeratorValue);
        setSellFeeNumerator(_sellFeeNumeratorValue);
    }

    function setTreasury(address _treasury) public onlyOwner {
        require(_treasury != address(0), "Treasury address cannot be zero");
        treasury = _treasury;
        emit TreasurySet(_treasury);
    }

    function lockFeesForever() external onlyOwner {
        require(!feesAreLockedForever, "already set");
        feesAreLockedForever = true;
        emit FeesLockedForever();
    }

    function restrictBlacklistAddForever() external onlyOwner {
        require(!blacklistAddRestrictedForever, "already set");
        blacklistAddRestrictedForever = true;
        emit BlacklistAddRestrictedForever();
    }

    function setLpPair(address pair, bool enabled) external onlyOwner {
        accountInfo[pair].isLPPool = enabled;
        emit LPPairSet(pair, enabled);
    }

    function setBlacklisted(address account, bool isBlacklisted) external onlyOwner {
        if (isBlacklisted) {
            require(!blacklistAddRestrictedForever, "Blacklist add restricted forever");
        }
        accountInfo[account].isBlackListed = isBlacklisted;
        emit BlacklistSet(account, isBlacklisted);
    }

    function setBuyFeeNumerator(uint256 value) public onlyOwner {
        require(!feesAreLockedForever, "Fees are locked forever");
        require(value <= MAX_BUY_FEE_NUMERATOR, "Exceeds maximum buy fee");
        buyFeeNumerator = value;
        emit BuyFeeNumeratorSet(value);
    }

    function setSellFeeNumerator(uint256 value) public onlyOwner {
        require(!feesAreLockedForever, "Fees are locked forever");
        require(value <= MAX_SELL_FEE_NUMERATOR, "Exceeds maximum buy fee");
        _sellFeeNumerator = value;
        emit SellFeeNumeratorSet(value);
    }

    function sellFeeNumerator() public view returns(uint256) {
        if (sniperBotProtectionDisabledForever) {
            return _sellFeeNumerator;
        }
        return DENOMINATOR;  // 100% to prevent sniper bots from buying
    }

    function disableSniperBotProtectionForever() external onlyOwner {
        require(!sniperBotProtectionDisabledForever, "already set");
        sniperBotProtectionDisabledForever = true;
        emit SniperBotProtectionDisabledForever();
    }

    function setLiquidityHolder(address account, bool flag) public onlyOwner {
        accountInfo[account].isLiquidityHolder = flag;
        emit LiquidityHolderSet(account, flag);
    }

    function _hasLimits(AccountInfo memory fromInfo, AccountInfo memory toInfo) internal pure returns(bool) {
        return !fromInfo.isLiquidityHolder && !toInfo.isLiquidityHolder;
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        AccountInfo memory fromInfo = accountInfo[from];
        AccountInfo memory toInfo = accountInfo[to];

        require(!fromInfo.isBlackListed && !toInfo.isBlackListed, "Blacklisted");

        if (!_hasLimits(fromInfo, toInfo) ||
            (fromInfo.isLPPool && toInfo.isLPPool)  // no fee for transferring between pools
        ) {
            super._transfer(from, to, amount);
            return;
        }

        if (fromInfo.isLPPool) {
            // buy
            uint256 buyFeeAmount = amount * buyFeeNumerator / DENOMINATOR;
            emit BuyFeePaid(from, treasury, buyFeeAmount);
            super._transfer(from, treasury, buyFeeAmount);
            unchecked {  // underflow is not possible
                amount -= buyFeeAmount;
            }
        } else if (toInfo.isLPPool) {
            // sell
            uint256 sellFeeAmount = amount * sellFeeNumerator() / DENOMINATOR;
            emit SellFeePaid(from, treasury, sellFeeAmount);
            super._transfer(from, treasury, sellFeeAmount);
            unchecked {  // underflow is not possible
                amount -= sellFeeAmount;
            }
        } else {
            // no fees for usual transfers
        }

        super._transfer(from, to, amount);
    }
}

File 1 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;
    }
}

File 2 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 "./IERC20Metadata.sol";
import "../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 3 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 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: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"uint256","name":"_buyFeeNumeratorValue","type":"uint256"},{"internalType":"uint256","name":"_sellFeeNumeratorValue","type":"uint256"}],"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":[],"name":"BlacklistAddRestrictedForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"BlacklistSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BuyFeeNumeratorSet","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":"amount","type":"uint256"}],"name":"BuyFeePaid","type":"event"},{"anonymous":false,"inputs":[],"name":"FeesLockedForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"LPPairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"LiquidityHolderSet","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SellFeeNumeratorSet","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":"amount","type":"uint256"}],"name":"SellFeePaid","type":"event"},{"anonymous":false,"inputs":[],"name":"SniperBotProtectionDisabledForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"treasury","type":"address"}],"name":"TreasurySet","type":"event"},{"inputs":[],"name":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfo","outputs":[{"internalType":"bool","name":"isLPPool","type":"bool"},{"internalType":"bool","name":"isLiquidityHolder","type":"bool"},{"internalType":"bool","name":"isBlackListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistAddRestrictedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableSniperBotProtectionForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesAreLockedForever","outputs":[{"internalType":"bool","name":"","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":[],"name":"lockFeesForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictBlacklistAddForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBuyFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setLpPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSellFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sniperBotProtectionDisabledForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001ca738038062001ca7833981016040819052620000349162000649565b6040518060400160405280600681526020016553687275626160d01b8152506040518060400160405280600681526020016553485255424160d01b8152506200008c620000866200011b60201b60201c565b6200011f565b8151620000a1906004906020850190620005a3565b508051620000b7906005906020840190620005a3565b505050620000d7336a52b7d2dcc80cd2e40000006200016f60201b60201c565b620000e433600162000238565b620000f183600162000238565b620000fc83620002ae565b620001078262000365565b620001128162000455565b505050620006f2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001cb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060036000828254620001df91906200068e565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6200024262000545565b6001600160a01b0382166000818152600660205260409081902080548415156101000261ff0019909116179055517f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b90620002a290841515815260200190565b60405180910390a25050565b620002b862000545565b6001600160a01b038116620003105760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f006044820152606401620001c2565b600980546001600160a01b0319166001600160a01b0383169081179091556040519081527f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f906020015b60405180910390a150565b6200036f62000545565b600954600160a01b900460ff1615620003cb5760405162461bcd60e51b815260206004820152601760248201527f4665657320617265206c6f636b656420666f72657665720000000000000000006044820152606401620001c2565b6127108111156200041f5760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d6178696d756d20627579206665650000000000000000006044820152606401620001c2565b60078190556040518181527f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d906020016200035a565b6200045f62000545565b600954600160a01b900460ff1615620004bb5760405162461bcd60e51b815260206004820152601760248201527f4665657320617265206c6f636b656420666f72657665720000000000000000006044820152606401620001c2565b6127108111156200050f5760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d6178696d756d20627579206665650000000000000000006044820152606401620001c2565b60088190556040518181527f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe50906020016200035a565b6000546001600160a01b03163314620005a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001c2565b565b828054620005b190620006b5565b90600052602060002090601f016020900481019282620005d5576000855562000620565b82601f10620005f057805160ff191683800117855562000620565b8280016001018555821562000620579182015b828111156200062057825182559160200191906001019062000603565b506200062e92915062000632565b5090565b5b808211156200062e576000815560010162000633565b6000806000606084860312156200065f57600080fd5b83516001600160a01b03811681146200067757600080fd5b602085015160409095015190969495509392505050565b60008219821115620006b057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620006ca57607f821691505b60208210811415620006ec57634e487b7160e01b600052602260045260246000fd5b50919050565b6115a580620007026000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806380c581d11161011a578063cbf1f4a4116100ad578063dca69d211161007c578063dca69d211461044a578063dd62ed3e14610452578063f0f442601461048b578063f28ed4051461049e578063f2fde38b146104a757600080fd5b8063cbf1f4a414610408578063d01dd6d21461041b578063d041df8a1461042e578063d231185f1461044257600080fd5b806395d89b41116100e957806395d89b4114610385578063a457c2d71461038d578063a7310b58146103a0578063a9059cbb146103f557600080fd5b806380c581d1146103615780638da5cb5b146103745780638f3b957f1461027c578063918f86741461027c57600080fd5b8063244c53591161019d57806370a082311161016c57806370a0823114610300578063715018a614610329578063719f75c5146103315780637b24ab32146103445780637b4aaf511461034d57600080fd5b8063244c5359146102a0578063313ce567146102b357806339509351146102c257806361d027b3146102d557600080fd5b806318160ddd116101d957806318160ddd1461026a5780631ff32a6e1461027c57806323b872dd14610285578063241b21eb1461029857600080fd5b806306fdde031461020b578063095ea7b3146102295780630a8ce4741461024c57806310b343e714610256575b600080fd5b6102136104ba565b6040516102209190611470565b60405180910390f35b61023c61023736600461142d565b61054c565b6040519015158152602001610220565b610254610564565b005b60095461023c90600160b01b900460ff1681565b6003545b604051908152602001610220565b61026e61271081565b61023c6102933660046113b5565b6105f7565b61025461061b565b6102546102ae366004611457565b6106a9565b60405160128152602001610220565b61023c6102d036600461142d565b610799565b6009546102e8906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b61026e61030e366004611367565b6001600160a01b031660009081526001602052604090205490565b6102546107d8565b61025461033f3660046113f1565b6107ec565b61026e60075481565b60095461023c90600160a01b900460ff1681565b61025461036f3660046113f1565b61085f565b6000546001600160a01b03166102e8565b6102136108bf565b61023c61039b36600461142d565b6108ce565b6103d66103ae366004611367565b60066020526000908152604090205460ff808216916101008104821691620100009091041683565b6040805193151584529115156020840152151590820152606001610220565b61023c61040336600461142d565b610960565b610254610416366004611457565b61096e565b6102546104293660046113f1565b610a57565b60095461023c90600160a81b900460ff1681565b610254610b20565b61026e610bae565b61026e610460366004611382565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610254610499366004611367565b610bd1565b61026e60085481565b6102546104b5366004611367565b610c8a565b6060600480546104c99061151e565b80601f01602080910402602001604051908101604052809291908181526020018280546104f59061151e565b80156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b5050505050905090565b60003361055a818585610d03565b5060019392505050565b61056c610e27565b600954600160a01b900460ff16156105b95760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064015b60405180910390fd5b6009805460ff60a01b1916600160a01b1790556040517fbec53a1e9209fa672f7ad7fa647c5883d6b464df39bb35e17e7bdd8aaeafbfe490600090a1565b600033610605858285610e81565b610610858585610f13565b506001949350505050565b610623610e27565b600954600160b01b900460ff161561066b5760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064016105b0565b6009805460ff60b01b1916600160b01b1790556040517f8b41de35dc6b2f5d666406ed563d79a882a772d0f33fdaa90eaf45543f04f65690600090a1565b6106b1610e27565b600954600160a01b900460ff161561070b5760405162461bcd60e51b815260206004820152601760248201527f4665657320617265206c6f636b656420666f726576657200000000000000000060448201526064016105b0565b61271081111561075d5760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d6178696d756d206275792066656500000000000000000060448201526064016105b0565b60088190556040518181527f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe50906020015b60405180910390a150565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919061055a90829086906107d39087906114c5565b610d03565b6107e0610e27565b6107ea6000611126565b565b6107f4610e27565b6001600160a01b0382166000818152600660205260409081902080548415156101000261ff0019909116179055517f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b9061085390841515815260200190565b60405180910390a25050565b610867610e27565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad8779101610853565b6060600580546104c99061151e565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156109535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b0565b6106108286868403610d03565b60003361055a818585610f13565b610976610e27565b600954600160a01b900460ff16156109d05760405162461bcd60e51b815260206004820152601760248201527f4665657320617265206c6f636b656420666f726576657200000000000000000060448201526064016105b0565b612710811115610a225760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d6178696d756d206275792066656500000000000000000060448201526064016105b0565b60078190556040518181527f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d9060200161078e565b610a5f610e27565b8015610abf57600954600160b01b900460ff1615610abf5760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737420616464207265737472696374656420666f726576657260448201526064016105b0565b6001600160a01b038216600081815260066020526040908190208054841515620100000262ff000019909116179055517f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb601239061085390841515815260200190565b610b28610e27565b600954600160a81b900460ff1615610b705760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064016105b0565b6009805460ff60a81b1916600160a81b1790556040517fe0116274a64ed4ed788d703f284cbf8b5cae71fd4d97c7398adda4dd65639b2f90600090a1565b600954600090600160a81b900460ff1615610bca575060085490565b5061271090565b610bd9610e27565b6001600160a01b038116610c2f5760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f0060448201526064016105b0565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f9060200161078e565b610c92610e27565b6001600160a01b038116610cf75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b610d0081611126565b50565b6001600160a01b038316610d655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b038216610dc65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146107ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b0565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610f0d5781811015610f005760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105b0565b610f0d8484848403610d03565b50505050565b6001600160a01b038084166000908152600660208181526040808420815160608082018452915460ff808216151583526101008083048216151584880152620100009283900482161515848701908152998c168952968652968490208451938401855254808816151584529586048716151594830194909452929093049093161515928201929092529151909190158015610fb057508060400151155b610fea5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105b0565b610ff48282611183565b1580611007575081518015611007575080515b1561101e576110178585856111a0565b5050505050565b8151156110ad5760006127106007548561103891906114ff565b61104291906114dd565b6009546040518281529192506001600160a01b0390811691908816907f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a906020015b60405180910390a36009546110a49087906001600160a01b0316836111a0565b9092039161111b565b80511561111b5760006127106110c1610bae565b6110cb90866114ff565b6110d591906114dd565b6009546040518281529192506001600160a01b0390811691908816907fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b78290602001611084565b6110178585856111a0565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826020015115801561119957508160200151155b9392505050565b6001600160a01b0383166112045760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b0382166112665760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b6001600160a01b038316600090815260016020526040902054818110156112de5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b0565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061133e9086815260200190565b60405180910390a3610f0d565b80356001600160a01b038116811461136257600080fd5b919050565b60006020828403121561137957600080fd5b6111998261134b565b6000806040838503121561139557600080fd5b61139e8361134b565b91506113ac6020840161134b565b90509250929050565b6000806000606084860312156113ca57600080fd5b6113d38461134b565b92506113e16020850161134b565b9150604084013590509250925092565b6000806040838503121561140457600080fd5b61140d8361134b565b91506020830135801515811461142257600080fd5b809150509250929050565b6000806040838503121561144057600080fd5b6114498361134b565b946020939093013593505050565b60006020828403121561146957600080fd5b5035919050565b600060208083528351808285015260005b8181101561149d57858101830151858201604001528201611481565b818111156114af576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156114d8576114d8611559565b500190565b6000826114fa57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561151957611519611559565b500290565b600181811c9082168061153257607f821691505b6020821081141561155357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201de1609ae9180bcf278a1cbb86fb579b43f25707e1bc1ac3209bf2ade092009664736f6c634300080600330000000000000000000000005f3f4eb748ac18f17e8577ff0ecc695cd87af25e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806380c581d11161011a578063cbf1f4a4116100ad578063dca69d211161007c578063dca69d211461044a578063dd62ed3e14610452578063f0f442601461048b578063f28ed4051461049e578063f2fde38b146104a757600080fd5b8063cbf1f4a414610408578063d01dd6d21461041b578063d041df8a1461042e578063d231185f1461044257600080fd5b806395d89b41116100e957806395d89b4114610385578063a457c2d71461038d578063a7310b58146103a0578063a9059cbb146103f557600080fd5b806380c581d1146103615780638da5cb5b146103745780638f3b957f1461027c578063918f86741461027c57600080fd5b8063244c53591161019d57806370a082311161016c57806370a0823114610300578063715018a614610329578063719f75c5146103315780637b24ab32146103445780637b4aaf511461034d57600080fd5b8063244c5359146102a0578063313ce567146102b357806339509351146102c257806361d027b3146102d557600080fd5b806318160ddd116101d957806318160ddd1461026a5780631ff32a6e1461027c57806323b872dd14610285578063241b21eb1461029857600080fd5b806306fdde031461020b578063095ea7b3146102295780630a8ce4741461024c57806310b343e714610256575b600080fd5b6102136104ba565b6040516102209190611470565b60405180910390f35b61023c61023736600461142d565b61054c565b6040519015158152602001610220565b610254610564565b005b60095461023c90600160b01b900460ff1681565b6003545b604051908152602001610220565b61026e61271081565b61023c6102933660046113b5565b6105f7565b61025461061b565b6102546102ae366004611457565b6106a9565b60405160128152602001610220565b61023c6102d036600461142d565b610799565b6009546102e8906001600160a01b031681565b6040516001600160a01b039091168152602001610220565b61026e61030e366004611367565b6001600160a01b031660009081526001602052604090205490565b6102546107d8565b61025461033f3660046113f1565b6107ec565b61026e60075481565b60095461023c90600160a01b900460ff1681565b61025461036f3660046113f1565b61085f565b6000546001600160a01b03166102e8565b6102136108bf565b61023c61039b36600461142d565b6108ce565b6103d66103ae366004611367565b60066020526000908152604090205460ff808216916101008104821691620100009091041683565b6040805193151584529115156020840152151590820152606001610220565b61023c61040336600461142d565b610960565b610254610416366004611457565b61096e565b6102546104293660046113f1565b610a57565b60095461023c90600160a81b900460ff1681565b610254610b20565b61026e610bae565b61026e610460366004611382565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610254610499366004611367565b610bd1565b61026e60085481565b6102546104b5366004611367565b610c8a565b6060600480546104c99061151e565b80601f01602080910402602001604051908101604052809291908181526020018280546104f59061151e565b80156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b5050505050905090565b60003361055a818585610d03565b5060019392505050565b61056c610e27565b600954600160a01b900460ff16156105b95760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064015b60405180910390fd5b6009805460ff60a01b1916600160a01b1790556040517fbec53a1e9209fa672f7ad7fa647c5883d6b464df39bb35e17e7bdd8aaeafbfe490600090a1565b600033610605858285610e81565b610610858585610f13565b506001949350505050565b610623610e27565b600954600160b01b900460ff161561066b5760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064016105b0565b6009805460ff60b01b1916600160b01b1790556040517f8b41de35dc6b2f5d666406ed563d79a882a772d0f33fdaa90eaf45543f04f65690600090a1565b6106b1610e27565b600954600160a01b900460ff161561070b5760405162461bcd60e51b815260206004820152601760248201527f4665657320617265206c6f636b656420666f726576657200000000000000000060448201526064016105b0565b61271081111561075d5760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d6178696d756d206275792066656500000000000000000060448201526064016105b0565b60088190556040518181527f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe50906020015b60405180910390a150565b3360008181526002602090815260408083206001600160a01b038716845290915281205490919061055a90829086906107d39087906114c5565b610d03565b6107e0610e27565b6107ea6000611126565b565b6107f4610e27565b6001600160a01b0382166000818152600660205260409081902080548415156101000261ff0019909116179055517f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b9061085390841515815260200190565b60405180910390a25050565b610867610e27565b6001600160a01b038216600081815260066020908152604091829020805460ff191685151590811790915591519182527f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad8779101610853565b6060600580546104c99061151e565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156109535760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b0565b6106108286868403610d03565b60003361055a818585610f13565b610976610e27565b600954600160a01b900460ff16156109d05760405162461bcd60e51b815260206004820152601760248201527f4665657320617265206c6f636b656420666f726576657200000000000000000060448201526064016105b0565b612710811115610a225760405162461bcd60e51b815260206004820152601760248201527f45786365656473206d6178696d756d206275792066656500000000000000000060448201526064016105b0565b60078190556040518181527f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d9060200161078e565b610a5f610e27565b8015610abf57600954600160b01b900460ff1615610abf5760405162461bcd60e51b815260206004820181905260248201527f426c61636b6c69737420616464207265737472696374656420666f726576657260448201526064016105b0565b6001600160a01b038216600081815260066020526040908190208054841515620100000262ff000019909116179055517f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb601239061085390841515815260200190565b610b28610e27565b600954600160a81b900460ff1615610b705760405162461bcd60e51b815260206004820152600b60248201526a185b1c9958591e481cd95d60aa1b60448201526064016105b0565b6009805460ff60a81b1916600160a81b1790556040517fe0116274a64ed4ed788d703f284cbf8b5cae71fd4d97c7398adda4dd65639b2f90600090a1565b600954600090600160a81b900460ff1615610bca575060085490565b5061271090565b610bd9610e27565b6001600160a01b038116610c2f5760405162461bcd60e51b815260206004820152601f60248201527f547265617375727920616464726573732063616e6e6f74206265207a65726f0060448201526064016105b0565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f9060200161078e565b610c92610e27565b6001600160a01b038116610cf75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b610d0081611126565b50565b6001600160a01b038316610d655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b038216610dc65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000546001600160a01b031633146107ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b0565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610f0d5781811015610f005760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105b0565b610f0d8484848403610d03565b50505050565b6001600160a01b038084166000908152600660208181526040808420815160608082018452915460ff808216151583526101008083048216151584880152620100009283900482161515848701908152998c168952968652968490208451938401855254808816151584529586048716151594830194909452929093049093161515928201929092529151909190158015610fb057508060400151155b610fea5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016105b0565b610ff48282611183565b1580611007575081518015611007575080515b1561101e576110178585856111a0565b5050505050565b8151156110ad5760006127106007548561103891906114ff565b61104291906114dd565b6009546040518281529192506001600160a01b0390811691908816907f532fcbcddc07ca8480be9b7111dcb7d530d63ae65a68283d808c4016d4fa592a906020015b60405180910390a36009546110a49087906001600160a01b0316836111a0565b9092039161111b565b80511561111b5760006127106110c1610bae565b6110cb90866114ff565b6110d591906114dd565b6009546040518281529192506001600160a01b0390811691908816907fc46a16a84e30033fd7115642681df05ba5aba3f0e5f93e8966dce06bf841b78290602001611084565b6110178585856111a0565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826020015115801561119957508160200151155b9392505050565b6001600160a01b0383166112045760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b0382166112665760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b6001600160a01b038316600090815260016020526040902054818110156112de5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b0565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061133e9086815260200190565b60405180910390a3610f0d565b80356001600160a01b038116811461136257600080fd5b919050565b60006020828403121561137957600080fd5b6111998261134b565b6000806040838503121561139557600080fd5b61139e8361134b565b91506113ac6020840161134b565b90509250929050565b6000806000606084860312156113ca57600080fd5b6113d38461134b565b92506113e16020850161134b565b9150604084013590509250925092565b6000806040838503121561140457600080fd5b61140d8361134b565b91506020830135801515811461142257600080fd5b809150509250929050565b6000806040838503121561144057600080fd5b6114498361134b565b946020939093013593505050565b60006020828403121561146957600080fd5b5035919050565b600060208083528351808285015260005b8181101561149d57858101830151858201604001528201611481565b818111156114af576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156114d8576114d8611559565b500190565b6000826114fa57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561151957611519611559565b500290565b600181811c9082168061153257607f821691505b6020821081141561155357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212201de1609ae9180bcf278a1cbb86fb579b43f25707e1bc1ac3209bf2ade092009664736f6c63430008060033

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

0000000000000000000000005f3f4eb748ac18f17e8577ff0ecc695cd87af25e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _treasury (address): 0x5F3f4eB748ac18f17E8577ff0Ecc695cd87aF25E
Arg [1] : _buyFeeNumeratorValue (uint256): 0
Arg [2] : _sellFeeNumeratorValue (uint256): 0

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f3f4eb748ac18f17e8577ff0ecc695cd87af25e
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19584:7647:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8846:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11132:197;;;;;;:::i;:::-;;:::i;:::-;;;2196:14:6;;2189:22;2171:41;;2159:2;2144:18;11132:197:5;2126:92:6;23529:179:5;;;:::i;:::-;;22830:41;;;;;-1:-1:-1;;;22830:41:5;;;;;;9943:106;10030:12;;9943:106;;;8987:25:6;;;8975:2;8960:18;9943:106:5;8942:76:6;22504:53:5;;22552:5;22504:53;;11891:256;;;;;;:::i;:::-;;:::i;23714:221::-;;;:::i;24726:288::-;;;;;;:::i;:::-;;:::i;9792:91::-;;;9874:2;9165:36:6;;9153:2;9138:18;9792:91:5;9120:87:6;12542:234:5;;;;;;:::i;:::-;;:::i;22711:23::-;;;;;-1:-1:-1;;;;;22711:23:5;;;;;;-1:-1:-1;;;;;1964:55:6;;;1946:74;;1934:2;1919:18;22711:23:5;1901:125:6;10107::5;;;;;;:::i;:::-;-1:-1:-1;;;;;10207:18:5;10181:7;10207:18;;;:9;:18;;;;;;;10107:125;2620:101;;;:::i;25508:183::-;;;;;;:::i;:::-;;:::i;22637:30::-;;;;;;22740:32;;;;;-1:-1:-1;;;22740:32:5;;;;;;23941:158;;;;;;:::i;:::-;;:::i;1997:85::-;2043:7;2069:6;-1:-1:-1;;;;;2069:6:5;1997:85;;9057:102;;;:::i;13263:427::-;;;;;;:::i;:::-;;:::i;22232:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2432:14:6;;2425:22;2407:41;;2491:14;;2484:22;2479:2;2464:18;;2457:50;2550:14;2543:22;2523:18;;;2516:50;2395:2;2380:18;22232:51:5;2362:210:6;10428:189:5;;;;;;:::i;:::-;;:::i;24437:283::-;;;;;;:::i;:::-;;:::i;24105:326::-;;;;;;:::i;:::-;;:::i;22778:46::-;;;;;-1:-1:-1;;;22778:46:5;;;;;;25260:242;;;:::i;25020:234::-;;;:::i;10675:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10790:18:5;;;10764:7;10790:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10675:149;23315:208;;;;;;:::i;:::-;;:::i;22673:32::-;;;;;;2870:198;;;;;;:::i;:::-;;:::i;8846:98::-;8900:13;8932:5;8925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8846:98;:::o;11132:197::-;11215:4;711:10;11269:32;711:10;11285:7;11294:6;11269:8;:32::i;:::-;-1:-1:-1;11318:4:5;;11132:197;-1:-1:-1;;;11132:197:5:o;23529:179::-;1890:13;:11;:13::i;:::-;23594:20:::1;::::0;-1:-1:-1;;;23594:20:5;::::1;;;23593:21;23585:45;;;::::0;-1:-1:-1;;;23585:45:5;;7957:2:6;23585:45:5::1;::::0;::::1;7939:21:6::0;7996:2;7976:18;;;7969:30;-1:-1:-1;;;8015:18:6;;;8008:41;8066:18;;23585:45:5::1;;;;;;;;;23640:20;:27:::0;;-1:-1:-1;;;;23640:27:5::1;-1:-1:-1::0;;;23640:27:5::1;::::0;;23682:19:::1;::::0;::::1;::::0;23640:27;;23682:19:::1;23529:179::o:0;11891:256::-;11988:4;711:10;12044:38;12060:4;711:10;12075:6;12044:15;:38::i;:::-;12092:27;12102:4;12108:2;12112:6;12092:9;:27::i;:::-;-1:-1:-1;12136:4:5;;11891:256;-1:-1:-1;;;;11891:256:5:o;23714:221::-;1890:13;:11;:13::i;:::-;23791:29:::1;::::0;-1:-1:-1;;;23791:29:5;::::1;;;23790:30;23782:54;;;::::0;-1:-1:-1;;;23782:54:5;;7957:2:6;23782:54:5::1;::::0;::::1;7939:21:6::0;7996:2;7976:18;;;7969:30;-1:-1:-1;;;8015:18:6;;;8008:41;8066:18;;23782:54:5::1;7929:161:6::0;23782:54:5::1;23846:29;:36:::0;;-1:-1:-1;;;;23846:36:5::1;-1:-1:-1::0;;;23846:36:5::1;::::0;;23897:31:::1;::::0;::::1;::::0;23846:36;;23897:31:::1;23714:221::o:0;24726:288::-;1890:13;:11;:13::i;:::-;24806:20:::1;::::0;-1:-1:-1;;;24806:20:5;::::1;;;24805:21;24797:57;;;::::0;-1:-1:-1;;;24797:57:5;;6081:2:6;24797:57:5::1;::::0;::::1;6063:21:6::0;6120:2;6100:18;;;6093:30;6159:25;6139:18;;;6132:53;6202:18;;24797:57:5::1;6053:173:6::0;24797:57:5::1;22619:5;24872;:31;;24864:67;;;::::0;-1:-1:-1;;;24864:67:5;;6433:2:6;24864:67:5::1;::::0;::::1;6415:21:6::0;6472:2;6452:18;;;6445:30;6511:25;6491:18;;;6484:53;6554:18;;24864:67:5::1;6405:173:6::0;24864:67:5::1;24941:17;:25:::0;;;24981:26:::1;::::0;8987:25:6;;;24981:26:5::1;::::0;8975:2:6;8960:18;24981:26:5::1;;;;;;;;24726:288:::0;:::o;12542:234::-;711:10;12630:4;10790:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10790:27:5;;;;;;;;;;12630:4;;711:10;12684:64;;711:10;;10790:27;;12709:38;;12737:10;;12709:38;:::i;:::-;12684:8;:64::i;2620:101::-;1890:13;:11;:13::i;:::-;2684:30:::1;2711:1;2684:18;:30::i;:::-;2620:101::o:0;25508:183::-;1890:13;:11;:13::i;:::-;-1:-1:-1;;;;;25591:20:5;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;:45;;;::::1;;;;-1:-1:-1::0;;25591:45:5;;::::1;;::::0;;25651:33;::::1;::::0;::::1;::::0;25632:4;2196:14:6;2189:22;2171:41;;2159:2;2144:18;;2126:92;25651:33:5::1;;;;;;;;25508:183:::0;;:::o;23941:158::-;1890:13;:11;:13::i;:::-;-1:-1:-1;;;;;24017:17:5;::::1;;::::0;;;:11:::1;:17;::::0;;;;;;;;:36;;-1:-1:-1;;24017:36:5::1;::::0;::::1;;::::0;;::::1;::::0;;;24068:24;;2171:41:6;;;24068:24:5::1;::::0;2144:18:6;24068:24:5::1;2126:92:6::0;9057:102:5;9113:13;9145:7;9138:14;;;;;:::i;13263:427::-;711:10;13356:4;10790:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10790:27:5;;;;;;;;;;13356:4;;711:10;13500:15;13480:16;:35;;13472:85;;;;-1:-1:-1;;;13472:85:5;;8297:2:6;13472:85:5;;;8279:21:6;8336:2;8316:18;;;8309:30;8375:34;8355:18;;;8348:62;-1:-1:-1;;;8426:18:6;;;8419:35;8471:19;;13472:85:5;8269:227:6;13472:85:5;13591:60;13600:5;13607:7;13635:15;13616:16;:34;13591:8;:60::i;10428:189::-;10507:4;711:10;10561:28;711:10;10578:2;10582:6;10561:9;:28::i;24437:283::-;1890:13;:11;:13::i;:::-;24516:20:::1;::::0;-1:-1:-1;;;24516:20:5;::::1;;;24515:21;24507:57;;;::::0;-1:-1:-1;;;24507:57:5;;6081:2:6;24507:57:5::1;::::0;::::1;6063:21:6::0;6120:2;6100:18;;;6093:30;6159:25;6139:18;;;6132:53;6202:18;;24507:57:5::1;6053:173:6::0;24507:57:5::1;22552:5;24582;:30;;24574:66;;;::::0;-1:-1:-1;;;24574:66:5;;6433:2:6;24574:66:5::1;::::0;::::1;6415:21:6::0;6472:2;6452:18;;;6445:30;6511:25;6491:18;;;6484:53;6554:18;;24574:66:5::1;6405:173:6::0;24574:66:5::1;24650:15;:23:::0;;;24688:25:::1;::::0;8987::6;;;24688::5::1;::::0;8975:2:6;8960:18;24688:25:5::1;8942:76:6::0;24105:326:5;1890:13;:11;:13::i;:::-;24199::::1;24195:119;;;24237:29;::::0;-1:-1:-1;;;24237:29:5;::::1;;;24236:30;24228:75;;;::::0;-1:-1:-1;;;24228:75:5;;4595:2:6;24228:75:5::1;::::0;::::1;4577:21:6::0;;;4614:18;;;4607:30;4673:34;4653:18;;;4646:62;4725:18;;24228:75:5::1;4567:182:6::0;24228:75:5::1;-1:-1:-1::0;;;;;24323:20:5;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;:50;;;::::1;;::::0;::::1;-1:-1:-1::0;;24323:50:5;;::::1;;::::0;;24388:36;::::1;::::0;::::1;::::0;24360:13;2196:14:6;2189:22;2171:41;;2159:2;2144:18;;2126:92;25260:242:5;1890:13;:11;:13::i;:::-;25343:34:::1;::::0;-1:-1:-1;;;25343:34:5;::::1;;;25342:35;25334:59;;;::::0;-1:-1:-1;;;25334:59:5;;7957:2:6;25334:59:5::1;::::0;::::1;7939:21:6::0;7996:2;7976:18;;;7969:30;-1:-1:-1;;;8015:18:6;;;8008:41;8066:18;;25334:59:5::1;7929:161:6::0;25334:59:5::1;25403:34;:41:::0;;-1:-1:-1;;;;25403:41:5::1;-1:-1:-1::0;;;25403:41:5::1;::::0;;25459:36:::1;::::0;::::1;::::0;25403:41;;25459:36:::1;25260:242::o:0;25020:234::-;25091:34;;25068:7;;-1:-1:-1;;;25091:34:5;;;;25087:89;;;-1:-1:-1;25148:17:5;;;25020:234::o;25087:89::-;-1:-1:-1;22493:5:5;;25020:234::o;23315:208::-;1890:13;:11;:13::i;:::-;-1:-1:-1;;;;;23390:23:5;::::1;23382:67;;;::::0;-1:-1:-1;;;23382:67:5;;5721:2:6;23382:67:5::1;::::0;::::1;5703:21:6::0;5760:2;5740:18;;;5733:30;5799:33;5779:18;;;5772:61;5850:18;;23382:67:5::1;5693:181:6::0;23382:67:5::1;23459:8;:20:::0;;-1:-1:-1;;23459:20:5::1;-1:-1:-1::0;;;;;23459:20:5;::::1;::::0;;::::1;::::0;;;23494:22:::1;::::0;1946:74:6;;;23494:22:5::1;::::0;1934:2:6;1919:18;23494:22:5::1;1901:125:6::0;2870:198:5;1890:13;:11;:13::i;:::-;-1:-1:-1;;;;;2958:22:5;::::1;2950:73;;;::::0;-1:-1:-1;;;2950:73:5;;3785:2:6;2950:73:5::1;::::0;::::1;3767:21:6::0;3824:2;3804:18;;;3797:30;3863:34;3843:18;;;3836:62;-1:-1:-1;;;3914:18:6;;;3907:36;3960:19;;2950:73:5::1;3757:228:6::0;2950:73:5::1;3033:28;3052:8;3033:18;:28::i;:::-;2870:198:::0;:::o;17145:340::-;-1:-1:-1;;;;;17246:19:5;;17238:68;;;;-1:-1:-1;;;17238:68:5;;7552:2:6;17238:68:5;;;7534:21:6;7591:2;7571:18;;;7564:30;7630:34;7610:18;;;7603:62;-1:-1:-1;;;7681:18:6;;;7674:34;7725:19;;17238:68:5;7524:226:6;17238:68:5;-1:-1:-1;;;;;17324:21:5;;17316:68;;;;-1:-1:-1;;;17316:68:5;;4192:2:6;17316:68:5;;;4174:21:6;4231:2;4211:18;;;4204:30;4270:34;4250:18;;;4243:62;-1:-1:-1;;;4321:18:6;;;4314:32;4363:19;;17316:68:5;4164:224:6;17316:68:5;-1:-1:-1;;;;;17395:18:5;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17446:32;;8987:25:6;;;17446:32:5;;8960:18:6;17446:32:5;;;;;;;17145:340;;;:::o;2155:130::-;2043:7;2069:6;-1:-1:-1;;;;;2069:6:5;711:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:5;;6785:2:6;2210:68:5;;;6767:21:6;;;6804:18;;;6797:30;6863:34;6843:18;;;6836:62;6915:18;;2210:68:5;6757:182:6;17766:411:5;-1:-1:-1;;;;;10790:18:5;;;17866:24;10790:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;17932:37:5;;17928:243;;18013:6;17993:16;:26;;17985:68;;;;-1:-1:-1;;;17985:68:5;;4956:2:6;17985:68:5;;;4938:21:6;4995:2;4975:18;;;4968:30;5034:31;5014:18;;;5007:59;5083:18;;17985:68:5;4928:179:6;17985:68:5;18095:51;18104:5;18111:7;18139:6;18120:16;:25;18095:8;:51::i;:::-;17856:321;17766:411;;;:::o;25887:1342::-;-1:-1:-1;;;;;26006:17:5;;;25976:27;26006:17;;;:11;:17;;;;;;;;25976:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26061:15;;;;;;;;;;;;26033:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26096:22;;25976:47;;26033:43;26095:23;:48;;;;;26123:6;:20;;;26122:21;26095:48;26087:72;;;;-1:-1:-1;;;26087:72:5;;8703:2:6;26087:72:5;;;8685:21:6;8742:2;8722:18;;;8715:30;-1:-1:-1;;;8761:18:6;;;8754:41;8812:18;;26087:72:5;8675:161:6;26087:72:5;26175:28;26186:8;26196:6;26175:10;:28::i;:::-;26174:29;:83;;;-1:-1:-1;26220:17:5;;:36;;;;-1:-1:-1;26241:15:5;;26220:36;26170:218;;;26324:33;26340:4;26346:2;26350:6;26324:15;:33::i;:::-;26371:7;;25887:1342;;;:::o;26170:218::-;26402:17;;26398:781;;;26454:20;22493:5;26486:15;;26477:6;:24;;;;:::i;:::-;:38;;;;:::i;:::-;26551:8;;26534:40;;8987:25:6;;;26454:61:5;;-1:-1:-1;;;;;;26551:8:5;;;;26534:40;;;;;;8975:2:6;8960:18;26534:40:5;;;;;;;;26610:8;;26588:45;;26604:4;;-1:-1:-1;;;;;26610:8:5;26620:12;26588:15;:45::i;:::-;26705:22;;;;26398:781;;;26762:15;;26758:421;;;26813:21;22493:5;26846:18;:16;:18::i;:::-;26837:27;;:6;:27;:::i;:::-;:41;;;;:::i;:::-;26915:8;;26897:42;;8987:25:6;;;26813:65:5;;-1:-1:-1;;;;;;26915:8:5;;;;26897:42;;;;;;8975:2:6;8960:18;26897:42:5;8942:76:6;26758:421:5;27189:33;27205:4;27211:2;27215:6;27189:15;:33::i;3222:187::-;3295:16;3314:6;;-1:-1:-1;;;;;3330:17:5;;;-1:-1:-1;;3330:17:5;;;;;;3362:40;;3314:6;;;;;;;3362:40;;3295:16;3362:40;3285:124;3222:187;:::o;25697:184::-;25795:4;25819:8;:26;;;25818:27;:56;;;;;25850:6;:24;;;25849:25;25818:56;25811:63;25697:184;-1:-1:-1;;;25697:184:5:o;14144:788::-;-1:-1:-1;;;;;14240:18:5;;14232:68;;;;-1:-1:-1;;;14232:68:5;;7146:2:6;14232:68:5;;;7128:21:6;7185:2;7165:18;;;7158:30;7224:34;7204:18;;;7197:62;-1:-1:-1;;;7275:18:6;;;7268:35;7320:19;;14232:68:5;7118:227:6;14232:68:5;-1:-1:-1;;;;;14318:16:5;;14310:64;;;;-1:-1:-1;;;14310:64:5;;3381:2:6;14310:64:5;;;3363:21:6;3420:2;3400:18;;;3393:30;3459:34;3439:18;;;3432:62;-1:-1:-1;;;3510:18:6;;;3503:33;3553:19;;14310:64:5;3353:225:6;14310:64:5;-1:-1:-1;;;;;14456:15:5;;14434:19;14456:15;;;:9;:15;;;;;;14489:21;;;;14481:72;;;;-1:-1:-1;;;14481:72:5;;5314:2:6;14481:72:5;;;5296:21:6;5353:2;5333:18;;;5326:30;5392:34;5372:18;;;5365:62;-1:-1:-1;;;5443:18:6;;;5436:36;5489:19;;14481:72:5;5286:228:6;14481:72:5;-1:-1:-1;;;;;14587:15:5;;;;;;;:9;:15;;;;;;14605:20;;;14587:38;;14802:13;;;;;;;;;;:23;;;;;;14851:26;;;;;;14619:6;8987:25:6;;8975:2;8960:18;;8942:76;14851:26:5;;;;;;;;14888:37;18761:91;14:196:6;82:20;;-1:-1:-1;;;;;131:54:6;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:347::-;1069:6;1077;1130:2;1118:9;1109:7;1105:23;1101:32;1098:2;;;1146:1;1143;1136:12;1098:2;1169:29;1188:9;1169:29;:::i;:::-;1159:39;;1248:2;1237:9;1233:18;1220:32;1295:5;1288:13;1281:21;1274:5;1271:32;1261:2;;1317:1;1314;1307:12;1261:2;1340:5;1330:15;;;1088:263;;;;;:::o;1356:254::-;1424:6;1432;1485:2;1473:9;1464:7;1460:23;1456:32;1453:2;;;1501:1;1498;1491:12;1453:2;1524:29;1543:9;1524:29;:::i;:::-;1514:39;1600:2;1585:18;;;;1572:32;;-1:-1:-1;;;1443:167:6:o;1615:180::-;1674:6;1727:2;1715:9;1706:7;1702:23;1698:32;1695:2;;;1743:1;1740;1733:12;1695:2;-1:-1:-1;1766:23:6;;1685:110;-1:-1:-1;1685:110:6:o;2577:597::-;2689:4;2718:2;2747;2736:9;2729:21;2779:6;2773:13;2822:6;2817:2;2806:9;2802:18;2795:34;2847:1;2857:140;2871:6;2868:1;2865:13;2857:140;;;2966:14;;;2962:23;;2956:30;2932:17;;;2951:2;2928:26;2921:66;2886:10;;2857:140;;;3015:6;3012:1;3009:13;3006:2;;;3085:1;3080:2;3071:6;3060:9;3056:22;3052:31;3045:42;3006:2;-1:-1:-1;3158:2:6;3137:15;-1:-1:-1;;3133:29:6;3118:45;;;;3165:2;3114:54;;2698:476;-1:-1:-1;;;2698:476:6:o;9212:128::-;9252:3;9283:1;9279:6;9276:1;9273:13;9270:2;;;9289:18;;:::i;:::-;-1:-1:-1;9325:9:6;;9260:80::o;9345:217::-;9385:1;9411;9401:2;;9455:10;9450:3;9446:20;9443:1;9436:31;9490:4;9487:1;9480:15;9518:4;9515:1;9508:15;9401:2;-1:-1:-1;9547:9:6;;9391:171::o;9567:168::-;9607:7;9673:1;9669;9665:6;9661:14;9658:1;9655:21;9650:1;9643:9;9636:17;9632:45;9629:2;;;9680:18;;:::i;:::-;-1:-1:-1;9720:9:6;;9619:116::o;9740:380::-;9819:1;9815:12;;;;9862;;;9883:2;;9937:4;9929:6;9925:17;9915:27;;9883:2;9990;9982:6;9979:14;9959:18;9956:38;9953:2;;;10036:10;10031:3;10027:20;10024:1;10017:31;10071:4;10068:1;10061:15;10099:4;10096:1;10089:15;9953:2;;9795:325;;;:::o;10125:127::-;10186:10;10181:3;10177:20;10174:1;10167:31;10217:4;10214:1;10207:15;10241:4;10238:1;10231:15

Swarm Source

ipfs://1de1609ae9180bcf278a1cbb86fb579b43f25707e1bc1ac3209bf2ade0920096
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.