ETH Price: $3,500.36 (-0.08%)
Gas: 2 Gwei

Token

Super PEPE (SPEPE)
 

Overview

Max Total Supply

420,690,000,000,000 SPEPE

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.28254148483206326 SPEPE

Value
$0.00
0x7490aa0d7943f19ac6c878bcf8668942e38baea7
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:
SuperPepe

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : SuperPEPE.sol
/**
 *  $Super PEPE TOKEN
 *
 *  Join the official telegram here: https://t.me/SpepeArmy
 *  Website: https://superpepe.ninja
 *  Twitter: https://twitter.com/spepe44702
 *
 */

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

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

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

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

    function WETH() external pure returns (address);
}

contract SuperPepe is Context, IERC20, Ownable {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public isIncludedTaxFee;
    mapping(address => bool) public blacklists;

    string constant _name = "Super PEPE";
    string constant _symbol = "SPEPE";
    uint8 constant _decimals = 18;

    uint256 private _totalSupply = 420690000000000 * 10**_decimals;
    uint256 private _feeTotal = 0;
    uint256 public maxTxAmount = _totalSupply.mul(45).div(1000);
    uint256 public minFeeAmount = maxTxAmount.div(10);
    uint128 public taxFee = 1;
    uint128 private _previousTaxFee = taxFee;

    IUniswapV2Router01 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address private immutable _creator;
    address constant DEAD = 0x000000000000000000000000000000000000dEaD;

    constructor(address wallet) {
        _balances[DEAD] = _totalSupply.div(2);
        _balances[_msgSender()] = _totalSupply.div(100).mul(45);
        _balances[wallet] = _totalSupply.sub(_balances[DEAD]).sub(
            _balances[_msgSender()]
        );

        IUniswapV2Router01 _uniswapV2Router = IUniswapV2Router01(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        isIncludedTaxFee[uniswapV2Pair] = true;
        _creator = _msgSender();
    }

    receive() external payable {}

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

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

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

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

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

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

    function totalFees() public view returns (uint256) {
        return _feeTotal;
    }

    function blacklist(address account, bool _isBlacklisting)
        external
        onlyOwner
    {
        blacklists[account] = _isBlacklisting;
    }

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

    function transfer(address recipient, uint256 amount)
        public
        override
        returns (bool)
    {
        require(
            _balances[_msgSender()] >= amount,
            "transfer amount exceeds balance"
        );
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    function withdrawToken(
        address altToken,
        address to,
        uint256 amount
    ) public {
        require(_msgSender() == _creator, "No Access!");
        require(amount > 0, "Amount: must larger than 0!");
        require(altToken != address(0), "Illegal altToken address!");
        require(to != address(0) && to != address(this), "Illegal to address!");

        IERC20 token = IERC20(altToken);
        token.safeTransfer(to, amount);
    }

    function withdrawNative(address payable to, uint256 amount) public {
        require(_msgSender() == _creator, "No Access!");
        (bool success, ) = address(to).call{value: amount}("");
        require(
            success,
            "Address: unable to send value, charity may have reverted"
        );
    }

    function _calculateTaxFee(uint256 amount) private view returns (uint256) {
        return amount.mul(taxFee).div(10**2);
    }

    function _approve(
        address holder,
        address spender,
        uint256 amount
    ) private {
        require(holder != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

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

        uint256 maxAmount = maxTxAmount;
        if (from == _creator || to == _creator) maxAmount = type(uint256).max;

        require(amount > 0 && amount <= maxAmount, "Transfer Amount: error");

        _tokenTransfer(from, to, amount, _checkFee(from, to));

        if (balanceOf(address(this)) >= minFeeAmount)
            _tokenTransfer(address(this), _creator, minFeeAmount, false);
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        uint256 feeAmount = 0;
        if (takeFee) {
            feeAmount = _calculateTaxFee(amount);
            _feeTotal = _feeTotal.add(feeAmount);
        }

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount).sub(feeAmount);
        if (sender != address(this)) {
            _balances[address(this)] = _balances[address(this)].add(feeAmount);
        }

        emit Transfer(sender, recipient, amount);
    }

    function _checkFee(address from, address to) private view returns (bool) {
        bool needFee = false;

        if (isIncludedTaxFee[from] && (to != address(this) && to != _creator)) {
            needFee = true;
        }

        if (
            isIncludedTaxFee[to] && (from != address(this) && from != _creator)
        ) {
            needFee = true;
        }

        return needFee;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 8 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../utils/Address.sol";

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

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    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));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    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");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    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");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 6 of 8 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/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 7 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 8 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"holder","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isIncludedTaxFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minFeeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"taxFee","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router01","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"altToken","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e0604052620000126012600a62000506565b620000259066017e9d8602b40062000517565b6005556000600655620000656103e862000051602d6005546200037060201b620009c51790919060201c565b6200038760201b620009d81790919060201c565b60075562000085600a6007546200038760201b620009d81790919060201c565b600855700100000000000000000000000000000001600955348015620000aa57600080fd5b5060405162001bce38038062001bce833981016040819052620000cd9162000531565b620000d83362000395565b620000f560026005546200038760201b620009d81790919060201c565b61dead6000526001602090815260008051602062001bae833981519152919091556005546200014c91602d916200013891606490620009d862000387821b17901c565b6200037060201b620009c51790919060201c565b336000908152600160209081526040822083905561dead90915260008051602062001bae83398151915254600554620001a99392620001959290620003e5811b620009e417901c565b620003e560201b620009e41790919060201c565b6001600160a01b03821660009081526001602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000531565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b0919062000531565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002fe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000324919062000531565b6001600160a01b0390811660a08190529082166080526000908152600360205260409020805460ff191660011790556200035b3390565b6001600160a01b031660c052506200059c9050565b60006200037e828462000517565b90505b92915050565b60006200037e828462000563565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006200037e828462000586565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200044a5781600019048211156200042e576200042e620003f3565b808516156200043c57918102915b93841c93908002906200040e565b509250929050565b600082620004635750600162000381565b81620004725750600062000381565b81600181146200048b57600281146200049657620004b6565b600191505062000381565b60ff841115620004aa57620004aa620003f3565b50506001821b62000381565b5060208310610133831016604e8410600b8410161715620004db575081810a62000381565b620004e7838362000409565b8060001904821115620004fe57620004fe620003f3565b029392505050565b60006200037e60ff84168362000452565b8082028115828204841417620003815762000381620003f3565b6000602082840312156200054457600080fd5b81516001600160a01b03811681146200055c57600080fd5b9392505050565b6000826200058157634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115620003815762000381620003f3565b60805160a05160c0516115b8620005f6600039600081816104f70152818161068501528181610c8c01528181610cc701528181610d8d01528181610f9c0152611013015260006103510152600061026401526115b86000f3fe6080604052600436106101445760003560e01c8063404e5129116100b657806395d89b411161006f57806395d89b41146103f2578063a071dcf414610420578063a9059cbb14610458578063dd62ed3e14610478578063f2fde38b146104be578063f5d36475146104de57600080fd5b8063404e51291461031f57806349bd5a5e1461033f57806370a0823114610373578063715018a6146103a95780638c0b5e22146103be5780638da5cb5b146103d457600080fd5b806313114a9d1161010857806313114a9d146102335780631694505e1461025257806316c021291461029e57806318160ddd146102ce57806323b872dd146102e3578063313ce5671461030357600080fd5b806301e3366714610150578063025cbd931461017257806306fdde03146101b757806307b18bde146101f3578063095ea7b31461021357600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061017061016b366004611356565b6104f4565b005b34801561017e57600080fd5b506101a261018d366004611397565b60036020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156101c357600080fd5b5060408051808201909152600a8152695375706572205045504560b01b60208201525b6040516101ae91906113d8565b3480156101ff57600080fd5b5061017061020e36600461140b565b610682565b34801561021f57600080fd5b506101a261022e36600461140b565b6107b5565b34801561023f57600080fd5b506006545b6040519081526020016101ae565b34801561025e57600080fd5b506102867f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101ae565b3480156102aa57600080fd5b506101a26102b9366004611397565b60046020526000908152604090205460ff1681565b3480156102da57600080fd5b50600554610244565b3480156102ef57600080fd5b506101a26102fe366004611356565b6107cc565b34801561030f57600080fd5b50604051601281526020016101ae565b34801561032b57600080fd5b5061017061033a366004611445565b61089b565b34801561034b57600080fd5b506102867f000000000000000000000000000000000000000000000000000000000000000081565b34801561037f57600080fd5b5061024461038e366004611397565b6001600160a01b031660009081526001602052604090205490565b3480156103b557600080fd5b506101706108ce565b3480156103ca57600080fd5b5061024460075481565b3480156103e057600080fd5b506000546001600160a01b0316610286565b3480156103fe57600080fd5b50604080518082019091526005815264535045504560d81b60208201526101e6565b34801561042c57600080fd5b50600954610440906001600160801b031681565b6040516001600160801b0390911681526020016101ae565b34801561046457600080fd5b506101a261047336600461140b565b6108e2565b34801561048457600080fd5b5061024461049336600461147e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104ca57600080fd5b506101706104d9366004611397565b61094c565b3480156104ea57600080fd5b5061024460085481565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461055e5760405162461bcd60e51b815260206004820152600a6024820152694e6f204163636573732160b01b60448201526064015b60405180910390fd5b600081116105ae5760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e743a206d757374206c6172676572207468616e20302100000000006044820152606401610555565b6001600160a01b0383166106045760405162461bcd60e51b815260206004820152601960248201527f496c6c6567616c20616c74546f6b656e206164647265737321000000000000006044820152606401610555565b6001600160a01b0382161580159061062557506001600160a01b0382163014155b6106675760405162461bcd60e51b8152602060048201526013602482015272496c6c6567616c20746f20616464726573732160681b6044820152606401610555565b8261067c6001600160a01b03821684846109f0565b50505050565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146106e75760405162461bcd60e51b815260206004820152600a6024820152694e6f204163636573732160b01b6044820152606401610555565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610734576040519150601f19603f3d011682016040523d82523d6000602084013e610739565b606091505b50509050806107b05760405162461bcd60e51b815260206004820152603860248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c206360448201527f686172697479206d6179206861766520726576657274656400000000000000006064820152608401610555565b505050565b60006107c2338484610a42565b5060015b92915050565b6001600160a01b0383166000908152600160205260408120548211156108345760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610555565b61083f848484610b66565b610891843361088c8560405180606001604052806028815260200161155b602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610db6565b610a42565b5060019392505050565b6108a3610de2565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6108d6610de2565b6108e06000610e3c565b565b336000908152600160205260408120548211156109415760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610555565b6107c2338484610b66565b610954610de2565b6001600160a01b0381166109b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b6109c281610e3c565b50565b60006109d182846114c2565b9392505050565b60006109d182846114d9565b60006109d182846114fb565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526107b0908490610e8c565b6001600160a01b038316610aa45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b6001600160a01b038216610b055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610555565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526004602052604090205460ff1615610bbd5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610555565b6001600160a01b038316610c215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610555565b6001600160a01b038216610c835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610555565b600060075490507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03161480610cfb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316145b15610d0557506000195b600082118015610d155750808211155b610d5a5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b91020b6b7bab73a1d1032b93937b960511b6044820152606401610555565b610d6f848484610d6a8888610f61565b611057565b600854306000908152600160205260409020541061067c5761067c307f00000000000000000000000000000000000000000000000000000000000000006008546000611057565b60008184841115610dda5760405162461bcd60e51b815260040161055591906113d8565b505050900390565b6000546001600160a01b031633146108e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610555565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610ee1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661117e9092919063ffffffff16565b9050805160001480610f02575080806020019051810190610f02919061150e565b6107b05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610555565b6001600160a01b038216600090815260036020526040812054819060ff168015610fd157506001600160a01b0383163014801590610fd157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b15610fda575060015b6001600160a01b03831660009081526003602052604090205460ff16801561104857506001600160a01b038416301480159061104857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b156109d1575060019392505050565b6000811561107c5761106883611195565b60065490915061107890826111bc565b6006555b6001600160a01b03851660009081526001602052604090205461109f90846109e4565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546110da9082906110d490866111bc565b906109e4565b6001600160a01b038086166000908152600160205260409020919091558516301461112a573060009081526001602052604090205461111990826111bc565b306000908152600160205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161116f91815260200190565b60405180910390a35050505050565b606061118d84846000856111c8565b949350505050565b6009546000906107c6906064906111b69085906001600160801b03166109c5565b906109d8565b60006109d1828461152b565b6060824710156112295760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610555565b600080866001600160a01b03168587604051611245919061153e565b60006040518083038185875af1925050503d8060008114611282576040519150601f19603f3d011682016040523d82523d6000602084013e611287565b606091505b5091509150611298878383876112a3565b979650505050505050565b6060831561131257825160000361130b576001600160a01b0385163b61130b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610555565b508161118d565b61118d83838151156113275781518083602001fd5b8060405162461bcd60e51b815260040161055591906113d8565b6001600160a01b03811681146109c257600080fd5b60008060006060848603121561136b57600080fd5b833561137681611341565b9250602084013561138681611341565b929592945050506040919091013590565b6000602082840312156113a957600080fd5b81356109d181611341565b60005b838110156113cf5781810151838201526020016113b7565b50506000910152565b60208152600082518060208401526113f78160408501602087016113b4565b601f01601f19169190910160400192915050565b6000806040838503121561141e57600080fd5b823561142981611341565b946020939093013593505050565b80151581146109c257600080fd5b6000806040838503121561145857600080fd5b823561146381611341565b9150602083013561147381611437565b809150509250929050565b6000806040838503121561149157600080fd5b823561149c81611341565b9150602083013561147381611341565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107c6576107c66114ac565b6000826114f657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107c6576107c66114ac565b60006020828403121561152057600080fd5b81516109d181611437565b808201808211156107c6576107c66114ac565b600082516115508184602087016113b4565b919091019291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122023f8daa85bfee40cb55ffc20a7c904eddf834c835d05e13079736e0ae30e96d064736f6c63430008120033b34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d000000000000000000000000cdd4602fd38268adb37fbd736cfdc6d75be24992

Deployed Bytecode

0x6080604052600436106101445760003560e01c8063404e5129116100b657806395d89b411161006f57806395d89b41146103f2578063a071dcf414610420578063a9059cbb14610458578063dd62ed3e14610478578063f2fde38b146104be578063f5d36475146104de57600080fd5b8063404e51291461031f57806349bd5a5e1461033f57806370a0823114610373578063715018a6146103a95780638c0b5e22146103be5780638da5cb5b146103d457600080fd5b806313114a9d1161010857806313114a9d146102335780631694505e1461025257806316c021291461029e57806318160ddd146102ce57806323b872dd146102e3578063313ce5671461030357600080fd5b806301e3366714610150578063025cbd931461017257806306fdde03146101b757806307b18bde146101f3578063095ea7b31461021357600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061017061016b366004611356565b6104f4565b005b34801561017e57600080fd5b506101a261018d366004611397565b60036020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b3480156101c357600080fd5b5060408051808201909152600a8152695375706572205045504560b01b60208201525b6040516101ae91906113d8565b3480156101ff57600080fd5b5061017061020e36600461140b565b610682565b34801561021f57600080fd5b506101a261022e36600461140b565b6107b5565b34801561023f57600080fd5b506006545b6040519081526020016101ae565b34801561025e57600080fd5b506102867f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016101ae565b3480156102aa57600080fd5b506101a26102b9366004611397565b60046020526000908152604090205460ff1681565b3480156102da57600080fd5b50600554610244565b3480156102ef57600080fd5b506101a26102fe366004611356565b6107cc565b34801561030f57600080fd5b50604051601281526020016101ae565b34801561032b57600080fd5b5061017061033a366004611445565b61089b565b34801561034b57600080fd5b506102867f00000000000000000000000089952e6683548909c463201168546f744d4bc61f81565b34801561037f57600080fd5b5061024461038e366004611397565b6001600160a01b031660009081526001602052604090205490565b3480156103b557600080fd5b506101706108ce565b3480156103ca57600080fd5b5061024460075481565b3480156103e057600080fd5b506000546001600160a01b0316610286565b3480156103fe57600080fd5b50604080518082019091526005815264535045504560d81b60208201526101e6565b34801561042c57600080fd5b50600954610440906001600160801b031681565b6040516001600160801b0390911681526020016101ae565b34801561046457600080fd5b506101a261047336600461140b565b6108e2565b34801561048457600080fd5b5061024461049336600461147e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156104ca57600080fd5b506101706104d9366004611397565b61094c565b3480156104ea57600080fd5b5061024460085481565b337f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86001600160a01b03161461055e5760405162461bcd60e51b815260206004820152600a6024820152694e6f204163636573732160b01b60448201526064015b60405180910390fd5b600081116105ae5760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e743a206d757374206c6172676572207468616e20302100000000006044820152606401610555565b6001600160a01b0383166106045760405162461bcd60e51b815260206004820152601960248201527f496c6c6567616c20616c74546f6b656e206164647265737321000000000000006044820152606401610555565b6001600160a01b0382161580159061062557506001600160a01b0382163014155b6106675760405162461bcd60e51b8152602060048201526013602482015272496c6c6567616c20746f20616464726573732160681b6044820152606401610555565b8261067c6001600160a01b03821684846109f0565b50505050565b337f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86001600160a01b0316146106e75760405162461bcd60e51b815260206004820152600a6024820152694e6f204163636573732160b01b6044820152606401610555565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610734576040519150601f19603f3d011682016040523d82523d6000602084013e610739565b606091505b50509050806107b05760405162461bcd60e51b815260206004820152603860248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c206360448201527f686172697479206d6179206861766520726576657274656400000000000000006064820152608401610555565b505050565b60006107c2338484610a42565b5060015b92915050565b6001600160a01b0383166000908152600160205260408120548211156108345760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610555565b61083f848484610b66565b610891843361088c8560405180606001604052806028815260200161155b602891396001600160a01b038a1660009081526002602090815260408083203384529091529020549190610db6565b610a42565b5060019392505050565b6108a3610de2565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6108d6610de2565b6108e06000610e3c565b565b336000908152600160205260408120548211156109415760405162461bcd60e51b815260206004820152601f60248201527f7472616e7366657220616d6f756e7420657863656564732062616c616e6365006044820152606401610555565b6107c2338484610b66565b610954610de2565b6001600160a01b0381166109b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610555565b6109c281610e3c565b50565b60006109d182846114c2565b9392505050565b60006109d182846114d9565b60006109d182846114fb565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526107b0908490610e8c565b6001600160a01b038316610aa45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610555565b6001600160a01b038216610b055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610555565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526004602052604090205460ff1615610bbd5760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610555565b6001600160a01b038316610c215760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610555565b6001600160a01b038216610c835760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610555565b600060075490507f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86001600160a01b0316846001600160a01b03161480610cfb57507f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86001600160a01b0316836001600160a01b0316145b15610d0557506000195b600082118015610d155750808211155b610d5a5760405162461bcd60e51b81526020600482015260166024820152752a3930b739b332b91020b6b7bab73a1d1032b93937b960511b6044820152606401610555565b610d6f848484610d6a8888610f61565b611057565b600854306000908152600160205260409020541061067c5761067c307f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86008546000611057565b60008184841115610dda5760405162461bcd60e51b815260040161055591906113d8565b505050900390565b6000546001600160a01b031633146108e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610555565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610ee1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661117e9092919063ffffffff16565b9050805160001480610f02575080806020019051810190610f02919061150e565b6107b05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610555565b6001600160a01b038216600090815260036020526040812054819060ff168015610fd157506001600160a01b0383163014801590610fd157507f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86001600160a01b0316836001600160a01b031614155b15610fda575060015b6001600160a01b03831660009081526003602052604090205460ff16801561104857506001600160a01b038416301480159061104857507f00000000000000000000000049fb1a37ad6ab283a4c0774fc4021946e99c9ac86001600160a01b0316846001600160a01b031614155b156109d1575060019392505050565b6000811561107c5761106883611195565b60065490915061107890826111bc565b6006555b6001600160a01b03851660009081526001602052604090205461109f90846109e4565b6001600160a01b0380871660009081526001602052604080822093909355908616815220546110da9082906110d490866111bc565b906109e4565b6001600160a01b038086166000908152600160205260409020919091558516301461112a573060009081526001602052604090205461111990826111bc565b306000908152600160205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161116f91815260200190565b60405180910390a35050505050565b606061118d84846000856111c8565b949350505050565b6009546000906107c6906064906111b69085906001600160801b03166109c5565b906109d8565b60006109d1828461152b565b6060824710156112295760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610555565b600080866001600160a01b03168587604051611245919061153e565b60006040518083038185875af1925050503d8060008114611282576040519150601f19603f3d011682016040523d82523d6000602084013e611287565b606091505b5091509150611298878383876112a3565b979650505050505050565b6060831561131257825160000361130b576001600160a01b0385163b61130b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610555565b508161118d565b61118d83838151156113275781518083602001fd5b8060405162461bcd60e51b815260040161055591906113d8565b6001600160a01b03811681146109c257600080fd5b60008060006060848603121561136b57600080fd5b833561137681611341565b9250602084013561138681611341565b929592945050506040919091013590565b6000602082840312156113a957600080fd5b81356109d181611341565b60005b838110156113cf5781810151838201526020016113b7565b50506000910152565b60208152600082518060208401526113f78160408501602087016113b4565b601f01601f19169190910160400192915050565b6000806040838503121561141e57600080fd5b823561142981611341565b946020939093013593505050565b80151581146109c257600080fd5b6000806040838503121561145857600080fd5b823561146381611341565b9150602083013561147381611437565b809150509250929050565b6000806040838503121561149157600080fd5b823561149c81611341565b9150602083013561147381611341565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107c6576107c66114ac565b6000826114f657634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156107c6576107c66114ac565b60006020828403121561152057600080fd5b81516109d181611437565b808201808211156107c6576107c66114ac565b600082516115508184602087016113b4565b919091019291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122023f8daa85bfee40cb55ffc20a7c904eddf834c835d05e13079736e0ae30e96d064736f6c63430008120033

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

000000000000000000000000cdd4602fd38268adb37fbd736cfdc6d75be24992

-----Decoded View---------------
Arg [0] : wallet (address): 0xCdd4602FD38268AdB37fBd736CFDc6D75BE24992

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


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.