ETH Price: $2,271.24 (-1.87%)
 

Overview

Max Total Supply

100,000,000,000 GTRUMP

Holders

1

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
GelTrump

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-04-05
*/

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: geltrump.sol

pragma solidity ^0.8.0;






contract GelTrump is ERC20, Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 private constant TOTAL_SUPPLY = 100000000000 * 10**18;
    address public devMarketingWallet;
    uint256 public buyTax;
    uint256 public sellTax;
    mapping(address => bool) public isTaxExempt;
    IUniswapV2Router02 public uniswapRouter;

    event DevMarketingWalletUpdated(address indexed newDevMarketingWallet);
    event TaxPercentagesUpdated(uint256 indexed newBuyTax, uint256 indexed newSellTax);
    event TaxExemptUpdated(address indexed account, bool indexed status);
    event UniswapRouterUpdated(address indexed newRouter);

    constructor(address _devMarketingWallet, uint256 _buyTax, uint256 _sellTax, address _uniswapRouter) ERC20("GelTrump", "GTRUMP") {
        require(_devMarketingWallet != address(0), "Invalid dev/marketing wallet address");
        require(_buyTax <= 100 && _sellTax <= 100, "Tax percentages should be between 0 and 100");
        require(_uniswapRouter != address(0), "Invalid Uniswap router address");
        _mint(msg.sender, TOTAL_SUPPLY);
        devMarketingWallet = _devMarketingWallet;
        buyTax = _buyTax;
        sellTax = _sellTax;
        uniswapRouter = IUniswapV2Router02(_uniswapRouter);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transferWithTax(_msgSender(), recipient, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transferWithTax(sender, recipient, amount);
        uint256 currentAllowance = allowance(sender, _msgSender());
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance.sub(amount));
        return true;
    }

    function _transferWithTax(address sender, address recipient, uint256 amount) internal {
        uint256 tax = 0;
        if (!isTaxExempt[sender] && !isTaxExempt[recipient]) {
            bool isBuy = recipient == address(this);
            bool isSell = sender == address(this);
            if (isBuy) {
                tax = amount.mul(buyTax).div(100);
            } else if (isSell) {
                tax = amount.mul(sellTax).div(100);
            }
        }

        uint256 amountToTransfer = amount.sub(tax);
        uint256 devMarketingAmount = tax;

        _transfer(sender, recipient, amountToTransfer);
        if (devMarketingAmount > 0 && sender == uniswapRouter.WETH()) {
            _swapTokensForEth(devMarketingAmount);
        } else if (devMarketingAmount > 0) {
            _transfer(sender, devMarketingWallet, devMarketingAmount);
        }
    }

     function _swapTokensForEth(uint256 tokenAmount) private {
        // Generate the pair path of token -> WETH
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();

        // Approve the router to spend GTRUMP tokens
        _approve(address(this), address(uniswapRouter), tokenAmount);

        // Swap the tokens for ETH and send the ETH to the devMarketingWallet
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // Accept any amount of ETH
            path,
            devMarketingWallet,
            block.timestamp
        );
    }

    function setTaxExempt(address account, bool status) external onlyOwner {
        isTaxExempt[account] = status;
        emit TaxExemptUpdated(account, status);
    }

    function setDevMarketingWallet(address newDevMarketingWallet) external onlyOwner {
        require(newDevMarketingWallet != address(0), "Invalid dev/marketing wallet address");
        devMarketingWallet = newDevMarketingWallet;
        emit DevMarketingWalletUpdated(newDevMarketingWallet);
    }

    function setTaxPercentages(uint256 newBuyTax, uint256 newSellTax) external onlyOwner {
        require(newBuyTax <= 100 && newSellTax <= 100, "Tax percentages should be between 0 and 100");
        buyTax = newBuyTax;
        sellTax = newSellTax;
        emit TaxPercentagesUpdated(newBuyTax, newSellTax);
    }

    function setUniswapRouter(address newRouter) external onlyOwner {
        require(newRouter != address(0), "Invalid Uniswap router address");
        uniswapRouter = IUniswapV2Router02(newRouter);
        emit UniswapRouterUpdated(newRouter);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_devMarketingWallet","type":"address"},{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"},{"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":"newDevMarketingWallet","type":"address"}],"name":"DevMarketingWalletUpdated","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":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"TaxExemptUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"TaxPercentagesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRouter","type":"address"}],"name":"UniswapRouterUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDevMarketingWallet","type":"address"}],"name":"setDevMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setTaxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTaxPercentages","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200175b3803806200175b833981016040819052620000349162000378565b60405180604001604052806008815260200167047656c5472756d760c41b815250604051806040016040528060068152602001650475452554d560d41b815250816003908162000085919062000467565b50600462000094828262000467565b505050620000b1620000ab6200023d60201b60201c565b62000241565b6001600160a01b038416620001195760405162461bcd60e51b8152602060048201526024808201527f496e76616c6964206465762f6d61726b6574696e672077616c6c6574206164646044820152637265737360e01b60648201526084015b60405180910390fd5b606483111580156200012c575060648211155b6200018e5760405162461bcd60e51b815260206004820152602b60248201527f5461782070657263656e74616765732073686f756c642062652062657477656560448201526a06e203020616e64203130360ac1b606482015260840162000110565b6001600160a01b038116620001e65760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420556e697377617020726f7574657220616464726573730000604482015260640162000110565b620001ff336c01431e0fae6d7217caa000000062000293565b600680546001600160a01b039586166001600160a01b031991821617909155600793909355600891909155600a80549190931691161790556200055b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002eb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000110565b8060026000828254620002ff919062000533565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b03811681146200037357600080fd5b919050565b600080600080608085870312156200038f57600080fd5b6200039a856200035b565b93506020850151925060408501519150620003b8606086016200035b565b905092959194509250565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003ee57607f821691505b6020821081036200040f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035657600081815260208120601f850160051c810160208610156200043e5750805b601f850160051c820191505b818110156200045f578281556001016200044a565b505050505050565b81516001600160401b03811115620004835762000483620003c3565b6200049b81620004948454620003d9565b8462000415565b602080601f831160018114620004d35760008415620004ba5750858301515b600019600386901b1c1916600185901b1785556200045f565b600085815260208120601f198616915b828110156200050457888601518255948401946001909101908401620004e3565b5085821015620005235787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200055557634e487b7160e01b600052601160045260246000fd5b92915050565b6111f0806200056b6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063735de9f7116100c3578063bea9849e1161007c578063bea9849e146102c9578063bf16555f146102dc578063cc1776d3146102ef578063dd62ed3e146102f8578063e7dbc23d1461030b578063f2fde38b1461031e57600080fd5b8063735de9f71461024c57806374e8414e146102775780638da5cb5b1461028a57806395d89b411461029b578063a457c2d7146102a3578063a9059cbb146102b657600080fd5b806323b872dd1161011557806323b872dd146101dd578063313ce567146101f057806339509351146101ff5780634f7041a51461021257806370a082311461021b578063715018a61461024457600080fd5b806306fdde0314610152578063095ea7b31461017057806316c2be6b1461019357806318160ddd146101b65780631dc61040146101c8575b600080fd5b61015a610331565b6040516101679190610eec565b60405180910390f35b61018361017e366004610f4f565b6103c3565b6040519015158152602001610167565b6101836101a1366004610f7b565b60096020526000908152604090205460ff1681565b6002545b604051908152602001610167565b6101db6101d6366004610f98565b6103dd565b005b6101836101eb366004610fd6565b610439565b60405160128152602001610167565b61018361020d366004610f4f565b6104d9565b6101ba60075481565b6101ba610229366004610f7b565b6001600160a01b031660009081526020819052604090205490565b6101db6104f6565b600a5461025f906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6101db610285366004610f7b565b61050a565b6005546001600160a01b031661025f565b61015a6105be565b6101836102b1366004610f4f565b6105cd565b6101836102c4366004610f4f565b610648565b6101db6102d7366004610f7b565b61065e565b60065461025f906001600160a01b031681565b6101ba60085481565b6101ba610306366004611017565b610706565b6101db610319366004611045565b610731565b6101db61032c366004610f7b565b6107e6565b60606003805461034090611067565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90611067565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b6000336103d181858561085f565b60019150505b92915050565b6103e5610983565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917fe6dee4a3efe7ebbac3b05adae585f36d4399fd4e962809998268bf591ca9c60491a35050565b60006104468484846109dd565b60006104528533610706565b9050828110156104ba5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104ce85336104c98487610b74565b61085f565b506001949350505050565b6000336103d18185856104ec8383610706565b6104c991906110b7565b6104fe610983565b6105086000610b87565b565b610512610983565b6001600160a01b0381166105745760405162461bcd60e51b8152602060048201526024808201527f496e76616c6964206465762f6d61726b6574696e672077616c6c6574206164646044820152637265737360e01b60648201526084016104b1565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f5584731d45d2078350ca115b8980b326161e350114ea701bf0f2ac45d412aa7490600090a250565b60606004805461034090611067565b600033816105db8286610706565b90508381101561063b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b1565b6104ce828686840361085f565b60006106553384846109dd565b50600192915050565b610666610983565b6001600160a01b0381166106bc5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420556e697377617020726f757465722061646472657373000060448201526064016104b1565b600a80546001600160a01b0319166001600160a01b0383169081179091556040517f455a5e52b7c01aa52d717db42e17b6610b0c2c96560c85b7e5adcdd254bfc17c90600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610739610983565b6064821115801561074b575060648111155b6107ab5760405162461bcd60e51b815260206004820152602b60248201527f5461782070657263656e74616765732073686f756c642062652062657477656560448201526a06e203020616e64203130360ac1b60648201526084016104b1565b60078290556008819055604051819083907f7c88e94758dc70e274e1246fc0100bcf6c6dd3ab73195c50fdf989f6df4b0d2990600090a35050565b6107ee610983565b6001600160a01b0381166108535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b1565b61085c81610b87565b50565b6001600160a01b0383166108c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b1565b6001600160a01b0382166109225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b1565b6001600160a01b03831660009081526009602052604081205460ff16158015610a1f57506001600160a01b03831660009081526009602052604090205460ff16155b15610a8a576001600160a01b0383811630908114918616148115610a6457610a5d6064610a5760075487610bd990919063ffffffff16565b90610be5565b9250610a87565b8015610a8757610a846064610a5760085487610bd990919063ffffffff16565b92505b50505b6000610a968383610b74565b905081610aa4868684610bf1565b600081118015610b3b5750600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2691906110ca565b6001600160a01b0316866001600160a01b0316145b15610b4e57610b4981610d96565b610b6c565b8015610b6c57600654610b6c9087906001600160a01b031683610bf1565b505050505050565b6000610b8082846110e7565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610b8082846110fa565b6000610b808284611111565b6001600160a01b038316610c555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b1565b6001600160a01b038216610cb75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b1565b6001600160a01b03831660009081526020819052604090205481811015610d2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610dcb57610dcb611133565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4891906110ca565b81600181518110610e5b57610e5b611133565b6001600160a01b039283166020918202929092010152600a54610e81913091168461085f565b600a5460065460405163791ac94760e01b81526001600160a01b039283169263791ac94792610ebe92879260009288929116904290600401611149565b600060405180830381600087803b158015610ed857600080fd5b505af1158015610b6c573d6000803e3d6000fd5b600060208083528351808285015260005b81811015610f1957858101830151858201604001528201610efd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461085c57600080fd5b60008060408385031215610f6257600080fd5b8235610f6d81610f3a565b946020939093013593505050565b600060208284031215610f8d57600080fd5b8135610b8081610f3a565b60008060408385031215610fab57600080fd5b8235610fb681610f3a565b915060208301358015158114610fcb57600080fd5b809150509250929050565b600080600060608486031215610feb57600080fd5b8335610ff681610f3a565b9250602084013561100681610f3a565b929592945050506040919091013590565b6000806040838503121561102a57600080fd5b823561103581610f3a565b91506020830135610fcb81610f3a565b6000806040838503121561105857600080fd5b50508035926020909101359150565b600181811c9082168061107b57607f821691505b60208210810361109b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d7576103d76110a1565b6000602082840312156110dc57600080fd5b8151610b8081610f3a565b818103818111156103d7576103d76110a1565b80820281158282048414176103d7576103d76110a1565b60008261112e57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156111995784516001600160a01b031683529383019391830191600101611174565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220baa33028594cd90de2802e40a0abcc1344430c1c1a54850fe187f3103fde61e464736f6c6343000813003300000000000000000000000082504f50dd8269d786ec769b3548583cda514572000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063735de9f7116100c3578063bea9849e1161007c578063bea9849e146102c9578063bf16555f146102dc578063cc1776d3146102ef578063dd62ed3e146102f8578063e7dbc23d1461030b578063f2fde38b1461031e57600080fd5b8063735de9f71461024c57806374e8414e146102775780638da5cb5b1461028a57806395d89b411461029b578063a457c2d7146102a3578063a9059cbb146102b657600080fd5b806323b872dd1161011557806323b872dd146101dd578063313ce567146101f057806339509351146101ff5780634f7041a51461021257806370a082311461021b578063715018a61461024457600080fd5b806306fdde0314610152578063095ea7b31461017057806316c2be6b1461019357806318160ddd146101b65780631dc61040146101c8575b600080fd5b61015a610331565b6040516101679190610eec565b60405180910390f35b61018361017e366004610f4f565b6103c3565b6040519015158152602001610167565b6101836101a1366004610f7b565b60096020526000908152604090205460ff1681565b6002545b604051908152602001610167565b6101db6101d6366004610f98565b6103dd565b005b6101836101eb366004610fd6565b610439565b60405160128152602001610167565b61018361020d366004610f4f565b6104d9565b6101ba60075481565b6101ba610229366004610f7b565b6001600160a01b031660009081526020819052604090205490565b6101db6104f6565b600a5461025f906001600160a01b031681565b6040516001600160a01b039091168152602001610167565b6101db610285366004610f7b565b61050a565b6005546001600160a01b031661025f565b61015a6105be565b6101836102b1366004610f4f565b6105cd565b6101836102c4366004610f4f565b610648565b6101db6102d7366004610f7b565b61065e565b60065461025f906001600160a01b031681565b6101ba60085481565b6101ba610306366004611017565b610706565b6101db610319366004611045565b610731565b6101db61032c366004610f7b565b6107e6565b60606003805461034090611067565b80601f016020809104026020016040519081016040528092919081815260200182805461036c90611067565b80156103b95780601f1061038e576101008083540402835291602001916103b9565b820191906000526020600020905b81548152906001019060200180831161039c57829003601f168201915b5050505050905090565b6000336103d181858561085f565b60019150505b92915050565b6103e5610983565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917fe6dee4a3efe7ebbac3b05adae585f36d4399fd4e962809998268bf591ca9c60491a35050565b60006104468484846109dd565b60006104528533610706565b9050828110156104ba5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104ce85336104c98487610b74565b61085f565b506001949350505050565b6000336103d18185856104ec8383610706565b6104c991906110b7565b6104fe610983565b6105086000610b87565b565b610512610983565b6001600160a01b0381166105745760405162461bcd60e51b8152602060048201526024808201527f496e76616c6964206465762f6d61726b6574696e672077616c6c6574206164646044820152637265737360e01b60648201526084016104b1565b600680546001600160a01b0319166001600160a01b0383169081179091556040517f5584731d45d2078350ca115b8980b326161e350114ea701bf0f2ac45d412aa7490600090a250565b60606004805461034090611067565b600033816105db8286610706565b90508381101561063b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104b1565b6104ce828686840361085f565b60006106553384846109dd565b50600192915050565b610666610983565b6001600160a01b0381166106bc5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420556e697377617020726f757465722061646472657373000060448201526064016104b1565b600a80546001600160a01b0319166001600160a01b0383169081179091556040517f455a5e52b7c01aa52d717db42e17b6610b0c2c96560c85b7e5adcdd254bfc17c90600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610739610983565b6064821115801561074b575060648111155b6107ab5760405162461bcd60e51b815260206004820152602b60248201527f5461782070657263656e74616765732073686f756c642062652062657477656560448201526a06e203020616e64203130360ac1b60648201526084016104b1565b60078290556008819055604051819083907f7c88e94758dc70e274e1246fc0100bcf6c6dd3ab73195c50fdf989f6df4b0d2990600090a35050565b6107ee610983565b6001600160a01b0381166108535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b1565b61085c81610b87565b50565b6001600160a01b0383166108c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104b1565b6001600160a01b0382166109225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104b1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105085760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104b1565b6001600160a01b03831660009081526009602052604081205460ff16158015610a1f57506001600160a01b03831660009081526009602052604090205460ff16155b15610a8a576001600160a01b0383811630908114918616148115610a6457610a5d6064610a5760075487610bd990919063ffffffff16565b90610be5565b9250610a87565b8015610a8757610a846064610a5760085487610bd990919063ffffffff16565b92505b50505b6000610a968383610b74565b905081610aa4868684610bf1565b600081118015610b3b5750600a60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2691906110ca565b6001600160a01b0316866001600160a01b0316145b15610b4e57610b4981610d96565b610b6c565b8015610b6c57600654610b6c9087906001600160a01b031683610bf1565b505050505050565b6000610b8082846110e7565b9392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610b8082846110fa565b6000610b808284611111565b6001600160a01b038316610c555760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104b1565b6001600160a01b038216610cb75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104b1565b6001600160a01b03831660009081526020819052604090205481811015610d2f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104b1565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610dcb57610dcb611133565b6001600160a01b03928316602091820292909201810191909152600a54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4891906110ca565b81600181518110610e5b57610e5b611133565b6001600160a01b039283166020918202929092010152600a54610e81913091168461085f565b600a5460065460405163791ac94760e01b81526001600160a01b039283169263791ac94792610ebe92879260009288929116904290600401611149565b600060405180830381600087803b158015610ed857600080fd5b505af1158015610b6c573d6000803e3d6000fd5b600060208083528351808285015260005b81811015610f1957858101830151858201604001528201610efd565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461085c57600080fd5b60008060408385031215610f6257600080fd5b8235610f6d81610f3a565b946020939093013593505050565b600060208284031215610f8d57600080fd5b8135610b8081610f3a565b60008060408385031215610fab57600080fd5b8235610fb681610f3a565b915060208301358015158114610fcb57600080fd5b809150509250929050565b600080600060608486031215610feb57600080fd5b8335610ff681610f3a565b9250602084013561100681610f3a565b929592945050506040919091013590565b6000806040838503121561102a57600080fd5b823561103581610f3a565b91506020830135610fcb81610f3a565b6000806040838503121561105857600080fd5b50508035926020909101359150565b600181811c9082168061107b57607f821691505b60208210810361109b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156103d7576103d76110a1565b6000602082840312156110dc57600080fd5b8151610b8081610f3a565b818103818111156103d7576103d76110a1565b80820281158282048414176103d7576103d76110a1565b60008261112e57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156111995784516001600160a01b031683529383019391830191600101611174565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220baa33028594cd90de2802e40a0abcc1344430c1c1a54850fe187f3103fde61e464736f6c63430008130033

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

00000000000000000000000082504f50dd8269d786ec769b3548583cda514572000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b

-----Decoded View---------------
Arg [0] : _devMarketingWallet (address): 0x82504F50DD8269D786eC769b3548583CDA514572
Arg [1] : _buyTax (uint256): 10
Arg [2] : _sellTax (uint256): 10
Arg [3] : _uniswapRouter (address): 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000082504f50dd8269d786ec769b3548583cda514572
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b


Deployed Bytecode Sourcemap

49014:4576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37764:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40115:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;40115:201:0;1023:187:1;49290:43:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;38884:108;38972:12;;38884:108;;;1613:25:1;;;1601:2;1586:18;38884:108:0;1467:177:1;52525:168:0;;;;;;:::i;:::-;;:::i;:::-;;50502:418;;;;;;:::i;:::-;;:::i;38726:93::-;;;38809:2;2673:36:1;;2661:2;2646:18;38726:93:0;2531:184:1;41600:238:0;;;;;;:::i;:::-;;:::i;49233:21::-;;;;;;39055:127;;;;;;:::i;:::-;-1:-1:-1;;;;;39156:18:0;39129:7;39156:18;;;;;;;;;;;;39055:127;26685:103;;;:::i;49340:39::-;;;;;-1:-1:-1;;;;;49340:39:0;;;;;;-1:-1:-1;;;;;2910:32:1;;;2892:51;;2880:2;2865:18;49340:39:0;2720:229:1;52701:301:0;;;;;;:::i;:::-;;:::i;26037:87::-;26110:6;;-1:-1:-1;;;;;26110:6:0;26037:87;;37983:104;;;:::i;42341:436::-;;;;;;:::i;:::-;;:::i;50320:174::-;;;;;;:::i;:::-;;:::i;53335:252::-;;;;;;:::i;:::-;;:::i;49193:33::-;;;;;-1:-1:-1;;;;;49193:33:0;;;49261:22;;;;;;39644:151;;;;;;:::i;:::-;;:::i;53010:317::-;;;;;;:::i;:::-;;:::i;26943:201::-;;;;;;:::i;:::-;;:::i;37764:100::-;37818:13;37851:5;37844:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37764:100;:::o;40115:201::-;40198:4;24668:10;40254:32;24668:10;40270:7;40279:6;40254:8;:32::i;:::-;40304:4;40297:11;;;40115:201;;;;;:::o;52525:168::-;25923:13;:11;:13::i;:::-;-1:-1:-1;;;;;52607:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:29;;-1:-1:-1;;52607:29:0::1;::::0;::::1;;::::0;;::::1;::::0;;;52652:33;;52607:29;;:20;52652:33:::1;::::0;::::1;52525:168:::0;;:::o;50502:418::-;50600:4;50617:43;50634:6;50642:9;50653:6;50617:16;:43::i;:::-;50671:24;50698:31;50708:6;24668:10;39644:151;:::i;50698:31::-;50671:58;;50768:6;50748:16;:26;;50740:79;;;;-1:-1:-1;;;50740:79:0;;4395:2:1;50740:79:0;;;4377:21:1;4434:2;4414:18;;;4407:30;4473:34;4453:18;;;4446:62;-1:-1:-1;;;4524:18:1;;;4517:38;4572:19;;50740:79:0;;;;;;;;;50830:60;50839:6;24668:10;50861:28;:16;50882:6;50861:20;:28::i;:::-;50830:8;:60::i;:::-;-1:-1:-1;50908:4:0;;50502:418;-1:-1:-1;;;;50502:418:0:o;41600:238::-;41688:4;24668:10;41744:64;24668:10;41760:7;41797:10;41769:25;24668:10;41760:7;41769:9;:25::i;:::-;:38;;;;:::i;26685:103::-;25923:13;:11;:13::i;:::-;26750:30:::1;26777:1;26750:18;:30::i;:::-;26685:103::o:0;52701:301::-;25923:13;:11;:13::i;:::-;-1:-1:-1;;;;;52801:35:0;::::1;52793:84;;;::::0;-1:-1:-1;;;52793:84:0;;5066:2:1;52793:84:0::1;::::0;::::1;5048:21:1::0;5105:2;5085:18;;;5078:30;5144:34;5124:18;;;5117:62;-1:-1:-1;;;5195:18:1;;;5188:34;5239:19;;52793:84:0::1;4864:400:1::0;52793:84:0::1;52888:18;:42:::0;;-1:-1:-1;;;;;;52888:42:0::1;-1:-1:-1::0;;;;;52888:42:0;::::1;::::0;;::::1;::::0;;;52946:48:::1;::::0;::::1;::::0;-1:-1:-1;;52946:48:0::1;52701:301:::0;:::o;37983:104::-;38039:13;38072:7;38065:14;;;;;:::i;42341:436::-;42434:4;24668:10;42434:4;42517:25;24668:10;42534:7;42517:9;:25::i;:::-;42490:52;;42581:15;42561:16;:35;;42553:85;;;;-1:-1:-1;;;42553:85:0;;5471:2:1;42553:85:0;;;5453:21:1;5510:2;5490:18;;;5483:30;5549:34;5529:18;;;5522:62;-1:-1:-1;;;5600:18:1;;;5593:35;5645:19;;42553:85:0;5269:401:1;42553:85:0;42674:60;42683:5;42690:7;42718:15;42699:16;:34;42674:8;:60::i;50320:174::-;50398:4;50415:49;24668:10;50446:9;50457:6;50415:16;:49::i;:::-;-1:-1:-1;50482:4:0;50320:174;;;;:::o;53335:252::-;25923:13;:11;:13::i;:::-;-1:-1:-1;;;;;53418:23:0;::::1;53410:66;;;::::0;-1:-1:-1;;;53410:66:0;;5877:2:1;53410:66:0::1;::::0;::::1;5859:21:1::0;5916:2;5896:18;;;5889:30;5955:32;5935:18;;;5928:60;6005:18;;53410:66:0::1;5675:354:1::0;53410:66:0::1;53487:13;:45:::0;;-1:-1:-1;;;;;;53487:45:0::1;-1:-1:-1::0;;;;;53487:45:0;::::1;::::0;;::::1;::::0;;;53548:31:::1;::::0;::::1;::::0;-1:-1:-1;;53548:31:0::1;53335:252:::0;:::o;39644:151::-;-1:-1:-1;;;;;39760:18:0;;;39733:7;39760:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39644:151::o;53010:317::-;25923:13;:11;:13::i;:::-;53127:3:::1;53114:9;:16;;:37;;;;;53148:3;53134:10;:17;;53114:37;53106:93;;;::::0;-1:-1:-1;;;53106:93:0;;6236:2:1;53106:93:0::1;::::0;::::1;6218:21:1::0;6275:2;6255:18;;;6248:30;6314:34;6294:18;;;6287:62;-1:-1:-1;;;6365:18:1;;;6358:41;6416:19;;53106:93:0::1;6034:407:1::0;53106:93:0::1;53210:6;:18:::0;;;53239:7:::1;:20:::0;;;53275:44:::1;::::0;53249:10;;53219:9;;53275:44:::1;::::0;-1:-1:-1;;53275:44:0::1;53010:317:::0;;:::o;26943:201::-;25923:13;:11;:13::i;:::-;-1:-1:-1;;;;;27032:22:0;::::1;27024:73;;;::::0;-1:-1:-1;;;27024:73:0;;6648:2:1;27024:73:0::1;::::0;::::1;6630:21:1::0;6687:2;6667:18;;;6660:30;6726:34;6706:18;;;6699:62;-1:-1:-1;;;6777:18:1;;;6770:36;6823:19;;27024:73:0::1;6446:402:1::0;27024:73:0::1;27108:28;27127:8;27108:18;:28::i;:::-;26943:201:::0;:::o;46368:380::-;-1:-1:-1;;;;;46504:19:0;;46496:68;;;;-1:-1:-1;;;46496:68:0;;7055:2:1;46496:68:0;;;7037:21:1;7094:2;7074:18;;;7067:30;7133:34;7113:18;;;7106:62;-1:-1:-1;;;7184:18:1;;;7177:34;7228:19;;46496:68:0;6853:400:1;46496:68:0;-1:-1:-1;;;;;46583:21:0;;46575:68;;;;-1:-1:-1;;;46575:68:0;;7460:2:1;46575:68:0;;;7442:21:1;7499:2;7479:18;;;7472:30;7538:34;7518:18;;;7511:62;-1:-1:-1;;;7589:18:1;;;7582:32;7631:19;;46575:68:0;7258:398:1;46575:68:0;-1:-1:-1;;;;;46656:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;46708:32;;1613:25:1;;;46708:32:0;;1586:18:1;46708:32:0;;;;;;;46368:380;;;:::o;26202:132::-;26110:6;;-1:-1:-1;;;;;26110:6:0;24668:10;26266:23;26258:68;;;;-1:-1:-1;;;26258:68:0;;7863:2:1;26258:68:0;;;7845:21:1;;;7882:18;;;7875:30;7941:34;7921:18;;;7914:62;7993:18;;26258:68:0;7661:356:1;50928:892:0;-1:-1:-1;;;;;51056:19:0;;51025:11;51056:19;;;:11;:19;;;;;;;;51055:20;:47;;;;-1:-1:-1;;;;;;51080:22:0;;;;;;:11;:22;;;;;;;;51079:23;51055:47;51051:351;;;-1:-1:-1;;;;;51132:26:0;;;51153:4;51132:26;;;;51187:23;;;51225:166;;;;51261:27;51284:3;51261:18;51272:6;;51261;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;51255:33;;51225:166;;;51314:6;51310:81;;;51347:28;51371:3;51347:19;51358:7;;51347:6;:10;;:19;;;;:::i;:28::-;51341:34;;51310:81;51104:298;;51051:351;51414:24;51441:15;:6;51452:3;51441:10;:15::i;:::-;51414:42;-1:-1:-1;51496:3:0;51512:46;51522:6;51530:9;51414:42;51512:9;:46::i;:::-;51594:1;51573:18;:22;:56;;;;;51609:13;;;;;;;;;-1:-1:-1;;;;;51609:13:0;-1:-1:-1;;;;;51609:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51599:30:0;:6;-1:-1:-1;;;;;51599:30:0;;51573:56;51569:244;;;51646:37;51664:18;51646:17;:37::i;:::-;51569:244;;;51705:22;;51701:112;;51762:18;;51744:57;;51754:6;;-1:-1:-1;;;;;51762:18:0;51782;51744:9;:57::i;:::-;51014:806;;;50928:892;;;:::o;20125:98::-;20183:7;20210:5;20214:1;20210;:5;:::i;:::-;20203:12;20125:98;-1:-1:-1;;;20125:98:0:o;27304:191::-;27397:6;;;-1:-1:-1;;;;;27414:17:0;;;-1:-1:-1;;;;;;27414:17:0;;;;;;;27447:40;;27397:6;;;27414:17;27397:6;;27447:40;;27378:16;;27447:40;27367:128;27304:191;:::o;20482:98::-;20540:7;20567:5;20571:1;20567;:5;:::i;20881:98::-;20939:7;20966:5;20970:1;20966;:5;:::i;43247:840::-;-1:-1:-1;;;;;43378:18:0;;43370:68;;;;-1:-1:-1;;;43370:68:0;;9008:2:1;43370:68:0;;;8990:21:1;9047:2;9027:18;;;9020:30;9086:34;9066:18;;;9059:62;-1:-1:-1;;;9137:18:1;;;9130:35;9182:19;;43370:68:0;8806:401:1;43370:68:0;-1:-1:-1;;;;;43457:16:0;;43449:64;;;;-1:-1:-1;;;43449:64:0;;9414:2:1;43449:64:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492:34;9472:18;;;9465:62;-1:-1:-1;;;9543:18:1;;;9536:33;9586:19;;43449:64:0;9212:399:1;43449:64:0;-1:-1:-1;;;;;43599:15:0;;43577:19;43599:15;;;;;;;;;;;43633:21;;;;43625:72;;;;-1:-1:-1;;;43625:72:0;;9818:2:1;43625:72:0;;;9800:21:1;9857:2;9837:18;;;9830:30;9896:34;9876:18;;;9869:62;-1:-1:-1;;;9947:18:1;;;9940:36;9993:19;;43625:72:0;9616:402:1;43625:72:0;-1:-1:-1;;;;;43733:15:0;;;:9;:15;;;;;;;;;;;43751:20;;;43733:38;;43951:13;;;;;;;;;;:23;;;;;;44003:26;;1613:25:1;;;43951:13:0;;44003:26;;1586:18:1;44003:26:0;;;;;;;43359:728;43247:840;;;:::o;51829:688::-;51972:16;;;51986:1;51972:16;;;;;;;;51948:21;;51972:16;;;;;;;;;;-1:-1:-1;51972:16:0;51948:40;;52017:4;51999;52004:1;51999:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51999:23:0;;;:7;;;;;;;;;;:23;;;;52043:13;;:20;;;-1:-1:-1;;;52043:20:0;;;;:13;;;;;:18;;:20;;;;;51999:7;;52043:20;;;;;:13;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52033:4;52038:1;52033:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52033:30:0;;;:7;;;;;;;;;:30;52162:13;;52130:60;;52147:4;;52162:13;52178:11;52130:8;:60::i;:::-;52282:13;;52450:18;;52282:227;;-1:-1:-1;;;52282:227:0;;-1:-1:-1;;;;;52282:13:0;;;;:64;;:227;;52361:11;;52282:13;;52431:4;;52450:18;;;52483:15;;52282:227;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1649:416::-;1714:6;1722;1775:2;1763:9;1754:7;1750:23;1746:32;1743:52;;;1791:1;1788;1781:12;1743:52;1830:9;1817:23;1849:31;1874:5;1849:31;:::i;:::-;1899:5;-1:-1:-1;1956:2:1;1941:18;;1928:32;1998:15;;1991:23;1979:36;;1969:64;;2029:1;2026;2019:12;1969:64;2052:7;2042:17;;;1649:416;;;;;:::o;2070:456::-;2147:6;2155;2163;2216:2;2204:9;2195:7;2191:23;2187:32;2184:52;;;2232:1;2229;2222:12;2184:52;2271:9;2258:23;2290:31;2315:5;2290:31;:::i;:::-;2340:5;-1:-1:-1;2397:2:1;2382:18;;2369:32;2410:33;2369:32;2410:33;:::i;:::-;2070:456;;2462:7;;-1:-1:-1;;;2516:2:1;2501:18;;;;2488:32;;2070:456::o;3162:388::-;3230:6;3238;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;3346:9;3333:23;3365:31;3390:5;3365:31;:::i;:::-;3415:5;-1:-1:-1;3472:2:1;3457:18;;3444:32;3485:33;3444:32;3485:33;:::i;3555:248::-;3623:6;3631;3684:2;3672:9;3663:7;3659:23;3655:32;3652:52;;;3700:1;3697;3690:12;3652:52;-1:-1:-1;;3723:23:1;;;3793:2;3778:18;;;3765:32;;-1:-1:-1;3555:248:1:o;3808:380::-;3887:1;3883:12;;;;3930;;;3951:61;;4005:4;3997:6;3993:17;3983:27;;3951:61;4058:2;4050:6;4047:14;4027:18;4024:38;4021:161;;4104:10;4099:3;4095:20;4092:1;4085:31;4139:4;4136:1;4129:15;4167:4;4164:1;4157:15;4021:161;;3808:380;;;:::o;4602:127::-;4663:10;4658:3;4654:20;4651:1;4644:31;4694:4;4691:1;4684:15;4718:4;4715:1;4708:15;4734:125;4799:9;;;4820:10;;;4817:36;;;4833:18;;:::i;8022:251::-;8092:6;8145:2;8133:9;8124:7;8120:23;8116:32;8113:52;;;8161:1;8158;8151:12;8113:52;8193:9;8187:16;8212:31;8237:5;8212:31;:::i;8278:128::-;8345:9;;;8366:11;;;8363:37;;;8380:18;;:::i;8411:168::-;8484:9;;;8515;;8532:15;;;8526:22;;8512:37;8502:71;;8553:18;;:::i;8584:217::-;8624:1;8650;8640:132;;8694:10;8689:3;8685:20;8682:1;8675:31;8729:4;8726:1;8719:15;8757:4;8754:1;8747:15;8640:132;-1:-1:-1;8786:9:1;;8584:217::o;10155:127::-;10216:10;10211:3;10207:20;10204:1;10197:31;10247:4;10244:1;10237:15;10271:4;10268:1;10261:15;10287:980;10549:4;10597:3;10586:9;10582:19;10628:6;10617:9;10610:25;10654:2;10692:6;10687:2;10676:9;10672:18;10665:34;10735:3;10730:2;10719:9;10715:18;10708:31;10759:6;10794;10788:13;10825:6;10817;10810:22;10863:3;10852:9;10848:19;10841:26;;10902:2;10894:6;10890:15;10876:29;;10923:1;10933:195;10947:6;10944:1;10941:13;10933:195;;;11012:13;;-1:-1:-1;;;;;11008:39:1;10996:52;;11103:15;;;;11068:12;;;;11044:1;10962:9;10933:195;;;-1:-1:-1;;;;;;;11184:32:1;;;;11179:2;11164:18;;11157:60;-1:-1:-1;;;11248:3:1;11233:19;11226:35;11145:3;10287:980;-1:-1:-1;;;10287:980:1:o

Swarm Source

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