ETH Price: $2,950.14 (-6.56%)
Gas: 8 Gwei

Token

EZ Code AI (EZC)
 

Overview

Max Total Supply

1,000,000,000 EZC

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
395,716.355858001 EZC

Value
$0.00
0x39c033fc32d187d597aaf9016b0041148b92a708
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:
EZCodeAI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./utils/TeamAccess.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";

contract EZCodeAI is Context, IERC20, IERC20Metadata, Ownable, TeamAccess {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    string private constant _name = "EZ Code AI";
    string private constant _symbol = "EZC";

    IUniswapV2Router02 private _uniswapV2Router;
    address private uniswapV2Pair;
    address private _taxWallet;
    mapping(address => bool) private _isExcludedFromFee;

    uint8 private constant _decimals = 9;
    uint32 public buyTax = 50000;
    uint32 public sellTax = 200000;
    uint256 private _totalSupply = 10 ** 9 * 10 ** _decimals;
    uint256 public maxTrxnAmount = _totalSupply.mul(2).div(100);
    uint256 public maxWalletSize = _totalSupply.mul(2).div(100);
    bool private inSwap;

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(address uniswapRouter) {
        require(uniswapRouter != address(0), "UniswapRouter is the zero address");

        _uniswapV2Router = IUniswapV2Router02(uniswapRouter);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            _uniswapV2Router.WETH()
        );
        _balances[owner()] = _totalSupply;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    function transfer(address to, uint256 amount) public returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public 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;
    }

    function setBuyCommisioPercent(uint32 buyTaxPercent) external onlyOwner {
        require(buyTaxPercent <= 50000, "Buy tax restricted by 5%");
        buyTax = buyTaxPercent;
    }

    function setSellCommisioPercent(uint32 sellTaxPercent) external onlyOwner {
        require(sellTaxPercent <= 200000, "Sell tax restricted by 20%");
        sellTax = sellTaxPercent;
    }

    function withdrawTeamRewards() external isTeamAddress {
        payable(team()).transfer(address(this).balance);
    }

    function ChangeWallletRestrictions(uint8 percent) external onlyOwner {
        uint256 localtotalSupply = _totalSupply;
        maxTrxnAmount = localtotalSupply.mul(percent).div(100);
        maxWalletSize = localtotalSupply.mul(percent).div(100);
    }

    function redeemAllRestriction() external onlyOwner {
        buyTax = 0;
        sellTax = 0;
        _transferOwnership(address(0));
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        address uniswapV2PairLocal = uniswapV2Pair;
        IUniswapV2Router02 uniswapV2Router = _uniswapV2Router;
        uint256 lMaxTrxnAmunt = maxTrxnAmount;
        uint256 lMaxWalletSize = maxWalletSize;
        uint32 lbuyTax = buyTax;
        uint32 lsellTax = sellTax;
        uint256 taxWalletBalance = _balances[address(this)];
        bool isSelling;
        uint256 taxAmount;

        // Buy condition
        if (lbuyTax > 0 && from == uniswapV2PairLocal && !_isExcludedFromFee[to]) {
            require(amount <= lMaxTrxnAmunt, "Exceeds the maxTrxnAmount.");
            require(balanceOf(to) + amount <= lMaxWalletSize, "Exceeds the maxWalletSize.");
            taxAmount = amount.mul(lbuyTax).div(uint256(10e6).sub(lbuyTax));
        }
        // Sell Condition
        else if (!inSwap && lsellTax > 0 && to == uniswapV2PairLocal && !_isExcludedFromFee[from]) {
            taxAmount = amount.mul(lsellTax).div(uint256(10e6).sub(lsellTax));
            isSelling = true;
        }

        if (taxAmount > 0) {
            amount = amount.sub(taxAmount);
            taxWalletBalance = taxWalletBalance.add(taxAmount);
            _balances[address(this)] = taxWalletBalance;
        }

        if (isSelling && taxWalletBalance > 0) {
            swapTokensForEth(taxWalletBalance, address(uniswapV2Router));
        }

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance.sub(amount);
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    function _burn(address account, uint256 amount) private {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _spendAllowance(address owner, address spender, uint256 amount) private {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    receive() external payable {}
}

File 2 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

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

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

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

File 3 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);

    function allPairs(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 4 of 10 : TeamAccess.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

import "@openzeppelin/contracts/utils/Context.sol";

abstract contract TeamAccess is Context {
    address private _team;

    event TeamAddressChanged(address indexed previousTeamAddress, address indexed newTeamAddress);

    constructor() {
        _changeTeamAddress(_msgSender());
    }

    modifier isTeamAddress() {
        _checkTeamAddress();
        _;
    }

    function team() public view virtual returns (address) {
        return _team;
    }

    function _checkTeamAddress() internal view virtual {
        require(team() == _msgSender(), "Caller is not the team address");
    }

    function changeTeamAddress(address newTeamAddress) public virtual isTeamAddress {
        require(newTeamAddress != address(0), "New team address is the zero address");
        _changeTeamAddress(newTeamAddress);
    }

    function _changeTeamAddress(address newTeamAddress) internal virtual {
        address oldTeamAddress = _team;
        _team = newTeamAddress;
        emit TeamAddressChanged(oldTeamAddress, newTeamAddress);
    }
}

File 5 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 7 of 10 : 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 8 of 10 : 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 9 of 10 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;

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

    function WETH() external pure returns (address);

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

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

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

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

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

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

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

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

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

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);

    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);

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

    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 10 of 10 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"uniswapRouter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousTeamAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newTeamAddress","type":"address"}],"name":"TeamAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"percent","type":"uint8"}],"name":"ChangeWallletRestrictions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newTeamAddress","type":"address"}],"name":"changeTeamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTrxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemAllRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"buyTaxPercent","type":"uint32"}],"name":"setBuyCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"sellTaxPercent","type":"uint32"}],"name":"setSellCommisioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"withdrawTeamRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160401b03191666030d400000c3501790556200002b6009600a6200052f565b6200003b90633b9aca0062000540565b6009556200007560646200006160026009546200035560201b6200089d1790919060201c565b6200036c60201b620008b01790919060201c565b600a556200009b60646200006160026009546200035560201b6200089d1790919060201c565b600b55348015620000ab57600080fd5b50604051620019ec380380620019ec833981016040819052620000ce916200055a565b620000d9336200037a565b620000e433620003ca565b6001600160a01b038116620001495760405162461bcd60e51b815260206004820152602160248201527f556e6973776170526f7574657220697320746865207a65726f206164647265736044820152607360f81b606482015260840160405180910390fd5b600480546001600160a01b0319166001600160a01b03831690811782556040805163c45a015560e01b81529051919263c45a01559282820192602092908290030181865afa158015620001a0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c691906200055a565b6001600160a01b031663c9c6539630600460009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000229573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024f91906200055a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200029d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c391906200055a565b600580546001600160a01b0319166001600160a01b03928316179055600954600080549092168252600260205260408220556001906007906200030e6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff19958616179055308152600790925290208054909116600117905550620005af565b600062000363828462000540565b90505b92915050565b60006200036382846200058c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8307d95ab35f2c4498fd4804f9c714c51d2f57a524cb75c1469b6a99308dfb2c90600090a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004735781600019048211156200045757620004576200041c565b808516156200046557918102915b93841c939080029062000437565b509250929050565b6000826200048c5750600162000366565b816200049b5750600062000366565b8160018114620004b45760028114620004bf57620004df565b600191505062000366565b60ff841115620004d357620004d36200041c565b50506001821b62000366565b5060208310610133831016604e8410600b841016171562000504575081810a62000366565b62000510838362000432565b80600019048211156200052757620005276200041c565b029392505050565b60006200036360ff8416836200047b565b80820281158282048414176200036657620003666200041c565b6000602082840312156200056d57600080fd5b81516001600160a01b03811681146200058557600080fd5b9392505050565b600082620005aa57634e487b7160e01b600052601260045260246000fd5b500490565b61142d80620005bf6000396000f3fe60806040526004361061016a5760003560e01c806370a08231116100d15780639fb672dd1161008a578063cbe8021911610064578063cbe8021914610462578063cc1776d314610477578063dd62ed3e1461049c578063f2fde38b146104bc57600080fd5b80639fb672dd14610402578063a457c2d714610422578063a9059cbb1461044257600080fd5b806370a0823114610325578063715018a61461035b57806385f2aef2146103705780638da5cb5b146103a25780638f3fa860146103c057806395d89b41146103d657600080fd5b80633950935111610123578063395093511461025d5780633aee69bb1461027d5780634f7041a51461029d578063587a7e57146102cf578063613f98b7146102e55780636b45159a1461030557600080fd5b8063060b82721461017657806306fdde031461018d578063095ea7b3146101d257806318160ddd1461020257806323b872dd14610221578063313ce5671461024157600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104dc565b005b34801561019957600080fd5b5060408051808201909152600a815269455a20436f646520414960b01b60208201525b6040516101c9919061116f565b60405180910390f35b3480156101de57600080fd5b506101f26101ed3660046111d2565b610520565b60405190151581526020016101c9565b34801561020e57600080fd5b506009545b6040519081526020016101c9565b34801561022d57600080fd5b506101f261023c3660046111fe565b61053a565b34801561024d57600080fd5b50604051600981526020016101c9565b34801561026957600080fd5b506101f26102783660046111d2565b61055e565b34801561028957600080fd5b5061018b61029836600461123f565b610580565b3480156102a957600080fd5b506008546102ba9063ffffffff1681565b60405163ffffffff90911681526020016101c9565b3480156102db57600080fd5b50610213600a5481565b3480156102f157600080fd5b5061018b61030036600461125c565b6105f8565b34801561031157600080fd5b5061018b61032036600461125c565b610674565b34801561033157600080fd5b5061021361034036600461123f565b6001600160a01b031660009081526002602052604090205490565b34801561036757600080fd5b5061018b6106fd565b34801561037c57600080fd5b506001546001600160a01b03165b6040516001600160a01b0390911681526020016101c9565b3480156103ae57600080fd5b506000546001600160a01b031661038a565b3480156103cc57600080fd5b50610213600b5481565b3480156103e257600080fd5b50604080518082019091526003815262455a4360e81b60208201526101bc565b34801561040e57600080fd5b5061018b61041d366004611282565b610711565b34801561042e57600080fd5b506101f261043d3660046111d2565b610750565b34801561044e57600080fd5b506101f261045d3660046111d2565b6107cb565b34801561046e57600080fd5b5061018b6107d9565b34801561048357600080fd5b506008546102ba90640100000000900463ffffffff1681565b3480156104a857600080fd5b506102136104b73660046112a5565b6107fc565b3480156104c857600080fd5b5061018b6104d736600461123f565b610827565b6104e46108bc565b6001546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561051d573d6000803e3d6000fd5b50565b60003361052e818585610916565b60019150505b92915050565b600033610548858285610a3a565b610553858585610ab4565b506001949350505050565b60003361052e81858561057183836107fc565b61057b91906112f4565b610916565b6105886108bc565b6001600160a01b0381166105ef5760405162461bcd60e51b8152602060048201526024808201527f4e6577207465616d206164647265737320697320746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b61051d81610ede565b610600610f30565b61c3508163ffffffff1611156106585760405162461bcd60e51b815260206004820152601860248201527f427579207461782072657374726963746564206279203525000000000000000060448201526064016105e6565b6008805463ffffffff191663ffffffff92909216919091179055565b61067c610f30565b62030d408163ffffffff1611156106d55760405162461bcd60e51b815260206004820152601a60248201527f53656c6c2074617820726573747269637465642062792032302500000000000060448201526064016105e6565b6008805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b610705610f30565b61070f6000610f8a565b565b610719610f30565b600954610734606461072e8360ff861661089d565b906108b0565b600a55610749606461072e8360ff861661089d565b600b555050565b6000338161075e82866107fc565b9050838110156107be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e6565b6105538286868403610916565b60003361052e818585610ab4565b6107e1610f30565b6008805467ffffffffffffffff1916905561070f6000610f8a565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61082f610f30565b6001600160a01b0381166108945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e6565b61051d81610f8a565b60006108a98284611307565b9392505050565b60006108a9828461131e565b6001546001600160a01b0316331461070f5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206973206e6f7420746865207465616d2061646472657373000060448201526064016105e6565b6001600160a01b0383166109785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e6565b6001600160a01b0382166109d95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a4684846107fc565b90506000198114610aae5781811015610aa15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e6565b610aae8484848403610916565b50505050565b6001600160a01b038316610b185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e6565b6001600160a01b038216610b7a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e6565b600554600454600a54600b54600854306000908152600260205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610bdd5750886001600160a01b03168c6001600160a01b0316145b8015610c0257506001600160a01b038b1660009081526007602052604090205460ff16155b15610d0357868a1115610c575760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e00000000000060448201526064016105e6565b858a610c788d6001600160a01b031660009081526002602052604090205490565b610c8291906112f4565b1115610cd05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105e6565b610cfc610ce96298968063ffffffff80891690610fda16565b61072e8c63ffffffff808a169061089d16565b9050610d96565b600c5460ff16158015610d1c575060008463ffffffff16115b8015610d395750886001600160a01b03168b6001600160a01b0316145b8015610d5e57506001600160a01b038c1660009081526007602052604090205460ff16155b15610d9657610d8f610d7c6298968063ffffffff80881690610fda16565b61072e8c63ffffffff8089169061089d16565b9050600191505b8015610dc757610da68a82610fda565b9950610db28382610fe6565b30600090815260026020526040902081905592505b818015610dd45750600083115b15610de357610de38389610ff2565b6001600160a01b038c166000908152600260205260409020548a811015610e5b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e6565b610e65818c610fda565b6001600160a01b03808f1660008181526002602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ec7908f815260200190565b60405180910390a350505050505050505050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8307d95ab35f2c4498fd4804f9c714c51d2f57a524cb75c1469b6a99308dfb2c90600090a35050565b6000546001600160a01b0316331461070f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105e6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006108a98284611340565b60006108a982846112f4565b600c805460ff1916600117905560408051600280825260608201835283926000929190602083019080368337019050509050308160008151811061103857611038611353565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611096573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ba9190611369565b816001815181106110cd576110cd611353565b60200260200101906001600160a01b031690816001600160a01b0316815250506110f8308386610916565b60405163791ac94760e01b81526001600160a01b0383169063791ac9479061112d908790600090869030904290600401611386565b600060405180830381600087803b15801561114757600080fd5b505af115801561115b573d6000803e3d6000fd5b5050600c805460ff19169055505050505050565b600060208083528351808285015260005b8181101561119c57858101830151858201604001528201611180565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461051d57600080fd5b600080604083850312156111e557600080fd5b82356111f0816111bd565b946020939093013593505050565b60008060006060848603121561121357600080fd5b833561121e816111bd565b9250602084013561122e816111bd565b929592945050506040919091013590565b60006020828403121561125157600080fd5b81356108a9816111bd565b60006020828403121561126e57600080fd5b813563ffffffff811681146108a957600080fd5b60006020828403121561129457600080fd5b813560ff811681146108a957600080fd5b600080604083850312156112b857600080fd5b82356112c3816111bd565b915060208301356112d3816111bd565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610534576105346112de565b8082028115828204841417610534576105346112de565b60008261133b57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610534576105346112de565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561137b57600080fd5b81516108a9816111bd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156113d65784516001600160a01b0316835293830193918301916001016113b1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220777d42195dc289072496cef93dc924a3d8a0f42711c71a13bbeff50dffb1506064736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806370a08231116100d15780639fb672dd1161008a578063cbe8021911610064578063cbe8021914610462578063cc1776d314610477578063dd62ed3e1461049c578063f2fde38b146104bc57600080fd5b80639fb672dd14610402578063a457c2d714610422578063a9059cbb1461044257600080fd5b806370a0823114610325578063715018a61461035b57806385f2aef2146103705780638da5cb5b146103a25780638f3fa860146103c057806395d89b41146103d657600080fd5b80633950935111610123578063395093511461025d5780633aee69bb1461027d5780634f7041a51461029d578063587a7e57146102cf578063613f98b7146102e55780636b45159a1461030557600080fd5b8063060b82721461017657806306fdde031461018d578063095ea7b3146101d257806318160ddd1461020257806323b872dd14610221578063313ce5671461024157600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104dc565b005b34801561019957600080fd5b5060408051808201909152600a815269455a20436f646520414960b01b60208201525b6040516101c9919061116f565b60405180910390f35b3480156101de57600080fd5b506101f26101ed3660046111d2565b610520565b60405190151581526020016101c9565b34801561020e57600080fd5b506009545b6040519081526020016101c9565b34801561022d57600080fd5b506101f261023c3660046111fe565b61053a565b34801561024d57600080fd5b50604051600981526020016101c9565b34801561026957600080fd5b506101f26102783660046111d2565b61055e565b34801561028957600080fd5b5061018b61029836600461123f565b610580565b3480156102a957600080fd5b506008546102ba9063ffffffff1681565b60405163ffffffff90911681526020016101c9565b3480156102db57600080fd5b50610213600a5481565b3480156102f157600080fd5b5061018b61030036600461125c565b6105f8565b34801561031157600080fd5b5061018b61032036600461125c565b610674565b34801561033157600080fd5b5061021361034036600461123f565b6001600160a01b031660009081526002602052604090205490565b34801561036757600080fd5b5061018b6106fd565b34801561037c57600080fd5b506001546001600160a01b03165b6040516001600160a01b0390911681526020016101c9565b3480156103ae57600080fd5b506000546001600160a01b031661038a565b3480156103cc57600080fd5b50610213600b5481565b3480156103e257600080fd5b50604080518082019091526003815262455a4360e81b60208201526101bc565b34801561040e57600080fd5b5061018b61041d366004611282565b610711565b34801561042e57600080fd5b506101f261043d3660046111d2565b610750565b34801561044e57600080fd5b506101f261045d3660046111d2565b6107cb565b34801561046e57600080fd5b5061018b6107d9565b34801561048357600080fd5b506008546102ba90640100000000900463ffffffff1681565b3480156104a857600080fd5b506102136104b73660046112a5565b6107fc565b3480156104c857600080fd5b5061018b6104d736600461123f565b610827565b6104e46108bc565b6001546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561051d573d6000803e3d6000fd5b50565b60003361052e818585610916565b60019150505b92915050565b600033610548858285610a3a565b610553858585610ab4565b506001949350505050565b60003361052e81858561057183836107fc565b61057b91906112f4565b610916565b6105886108bc565b6001600160a01b0381166105ef5760405162461bcd60e51b8152602060048201526024808201527f4e6577207465616d206164647265737320697320746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b61051d81610ede565b610600610f30565b61c3508163ffffffff1611156106585760405162461bcd60e51b815260206004820152601860248201527f427579207461782072657374726963746564206279203525000000000000000060448201526064016105e6565b6008805463ffffffff191663ffffffff92909216919091179055565b61067c610f30565b62030d408163ffffffff1611156106d55760405162461bcd60e51b815260206004820152601a60248201527f53656c6c2074617820726573747269637465642062792032302500000000000060448201526064016105e6565b6008805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b610705610f30565b61070f6000610f8a565b565b610719610f30565b600954610734606461072e8360ff861661089d565b906108b0565b600a55610749606461072e8360ff861661089d565b600b555050565b6000338161075e82866107fc565b9050838110156107be5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e6565b6105538286868403610916565b60003361052e818585610ab4565b6107e1610f30565b6008805467ffffffffffffffff1916905561070f6000610f8a565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61082f610f30565b6001600160a01b0381166108945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e6565b61051d81610f8a565b60006108a98284611307565b9392505050565b60006108a9828461131e565b6001546001600160a01b0316331461070f5760405162461bcd60e51b815260206004820152601e60248201527f43616c6c6572206973206e6f7420746865207465616d2061646472657373000060448201526064016105e6565b6001600160a01b0383166109785760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e6565b6001600160a01b0382166109d95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e6565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610a4684846107fc565b90506000198114610aae5781811015610aa15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e6565b610aae8484848403610916565b50505050565b6001600160a01b038316610b185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e6565b6001600160a01b038216610b7a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e6565b600554600454600a54600b54600854306000908152600260205260408120546001600160a01b03968716969095169463ffffffff8084169364010000000090041691808415801590610bdd5750886001600160a01b03168c6001600160a01b0316145b8015610c0257506001600160a01b038b1660009081526007602052604090205460ff16155b15610d0357868a1115610c575760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d61785472786e416d6f756e742e00000000000060448201526064016105e6565b858a610c788d6001600160a01b031660009081526002602052604090205490565b610c8291906112f4565b1115610cd05760405162461bcd60e51b815260206004820152601a60248201527f4578636565647320746865206d617857616c6c657453697a652e00000000000060448201526064016105e6565b610cfc610ce96298968063ffffffff80891690610fda16565b61072e8c63ffffffff808a169061089d16565b9050610d96565b600c5460ff16158015610d1c575060008463ffffffff16115b8015610d395750886001600160a01b03168b6001600160a01b0316145b8015610d5e57506001600160a01b038c1660009081526007602052604090205460ff16155b15610d9657610d8f610d7c6298968063ffffffff80881690610fda16565b61072e8c63ffffffff8089169061089d16565b9050600191505b8015610dc757610da68a82610fda565b9950610db28382610fe6565b30600090815260026020526040902081905592505b818015610dd45750600083115b15610de357610de38389610ff2565b6001600160a01b038c166000908152600260205260409020548a811015610e5b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e6565b610e65818c610fda565b6001600160a01b03808f1660008181526002602052604080822094909455918f168083529183902080548f01905591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610ec7908f815260200190565b60405180910390a350505050505050505050505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8307d95ab35f2c4498fd4804f9c714c51d2f57a524cb75c1469b6a99308dfb2c90600090a35050565b6000546001600160a01b0316331461070f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105e6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006108a98284611340565b60006108a982846112f4565b600c805460ff1916600117905560408051600280825260608201835283926000929190602083019080368337019050509050308160008151811061103857611038611353565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611096573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ba9190611369565b816001815181106110cd576110cd611353565b60200260200101906001600160a01b031690816001600160a01b0316815250506110f8308386610916565b60405163791ac94760e01b81526001600160a01b0383169063791ac9479061112d908790600090869030904290600401611386565b600060405180830381600087803b15801561114757600080fd5b505af115801561115b573d6000803e3d6000fd5b5050600c805460ff19169055505050505050565b600060208083528351808285015260005b8181101561119c57858101830151858201604001528201611180565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461051d57600080fd5b600080604083850312156111e557600080fd5b82356111f0816111bd565b946020939093013593505050565b60008060006060848603121561121357600080fd5b833561121e816111bd565b9250602084013561122e816111bd565b929592945050506040919091013590565b60006020828403121561125157600080fd5b81356108a9816111bd565b60006020828403121561126e57600080fd5b813563ffffffff811681146108a957600080fd5b60006020828403121561129457600080fd5b813560ff811681146108a957600080fd5b600080604083850312156112b857600080fd5b82356112c3816111bd565b915060208301356112d3816111bd565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610534576105346112de565b8082028115828204841417610534576105346112de565b60008261133b57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610534576105346112de565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561137b57600080fd5b81516108a9816111bd565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156113d65784516001600160a01b0316835293830193918301916001016113b1565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220777d42195dc289072496cef93dc924a3d8a0f42711c71a13bbeff50dffb1506064736f6c63430008110033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


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.