ETH Price: $2,678.35 (+0.37%)

Token

Stickbot (Stickbot)
 

Overview

Max Total Supply

100,000,000 Stickbot

Holders

138

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.985668534 Stickbot

Value
$0.00
0xf35a13179824dbd86Ca446C08a6c75944aDB2837
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:
Stickbot

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

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

Telegram: https://t.me/stickbot_erc20

X: https://twitter.com/STICKBOTERC20

Website: https://stickbot.io

BOT: https://t.me/stick_bot_bot

**/

pragma solidity ^0.8.16;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(
        address to
    ) external returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

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

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

/**
 * @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 decimals places of the token.
     */
    function decimals() external view returns (uint8);

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

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

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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

    /**
     * @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
    ) external virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @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
    ) external 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
    ) external virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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
    ) external 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 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
    ) external virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        _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);
    }

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

        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);
    }

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

    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");

        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);
    }
}

contract Stickbot is ERC20, Ownable {
    // TOKENOMICS START ==========================================================>
    string private _name = "Stickbot";
    string private _symbol = "Stickbot";
    uint8 private _decimals = 9;
    uint256 private _supply = 100_000_000;
    uint256 public taxForMarketing = 30;
    uint256 public maxTxAmount = 1_000_000 * 10 ** _decimals;
    address public marketingWallet = 0x2DC7e77c6Ea503e8839e0448455b769Ab87eA4aa;
    // TOKENOMICS END ============================================================>

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    mapping(address => bool) private _isExcludedFromFee;

    uint256 private _marketingReserves = 0;
    uint256 private _numTokensSellToAddToETH = 20_000 * 10 ** _decimals;

    bool inSwapAndLiquify;

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

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

    /**
     * @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(address _add) ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply * 10 ** _decimals));

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

        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[_add] = true;
        _isExcludedFromFee[address(uniswapV2Router)] = true;
        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[marketingWallet] = 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            balanceOf(from) >= amount,
            "ERC20: transfer amount exceeds balance"
        );

        if (
            (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify
        ) {
            if (from != uniswapV2Pair) {
                uint256 contractLiquidityBalance = balanceOf(address(this));
                if ((_marketingReserves) >= _numTokensSellToAddToETH) {
                    _swapTokensForEth(contractLiquidityBalance);
                    _marketingReserves = 0;
                    bool sent = payable(marketingWallet).send(
                        address(this).balance
                    );
                    require(sent, "Failed to send ETH");
                }
            }

            uint256 transferAmount;
            if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
                transferAmount = amount;
            } else {
                require(
                    amount <= maxTxAmount,
                    "ERC20: transfer amount exceeds the max transaction amount"
                );

                uint256 marketingShare = ((amount * taxForMarketing) / 100);
                transferAmount = amount - (marketingShare);
                _marketingReserves += marketingShare;

                super._transfer(from, address(this), (marketingShare));
            }
            super._transfer(from, to, transferAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap {
        uint256 half = (contractTokenBalance / 2);
        uint256 otherHalf = (contractTokenBalance - half);

        uint256 initialBalance = address(this).balance;

        _swapTokensForEth(half);

        uint256 newBalance = (address(this).balance - initialBalance);

        _addLiquidity(otherHalf, newBalance);

        emit SwapAndLiquify(half, newBalance, otherHalf);
    }

    function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            (block.timestamp + 300)
        );
    }

    function _addLiquidity(
        uint256 tokenAmount,
        uint256 ethAmount
    ) private lockTheSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function changeMarketingWallet(
        address newWallet
    ) public onlyOwner returns (bool) {
        marketingWallet = newWallet;
        return true;
    }

    function changeTaxForMarketing(
        uint256 _taxForMarketing
    ) public onlyOwner returns (bool) {
        require(
            (_taxForMarketing) <= 50,
            "ERC20: total tax must not be greater than 100"
        );
        taxForMarketing = _taxForMarketing;

        return true;
    }

    function changeMaxTxAmount(
        uint256 _maxTxAmount
    ) public onlyOwner returns (bool) {
        maxTxAmount = _maxTxAmount;

        return true;
    }

    receive() external payable {}
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_add","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"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":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526040518060400160405280600881526020017f537469636b626f74000000000000000000000000000000000000000000000000815250600690816200004a919062000b51565b506040518060400160405280600881526020017f537469636b626f740000000000000000000000000000000000000000000000008152506007908162000091919062000b51565b506009600860006101000a81548160ff021916908360ff1602179055506305f5e100600955601e600a55600860009054906101000a900460ff16600a620000d9919062000dc8565b620f4240620000e9919062000e19565b600b55732dc7e77c6ea503e8839e0448455b769ab87ea4aa600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e55600860009054906101000a900460ff16600a62000164919062000dc8565b614e2062000173919062000e19565b600f553480156200018357600080fd5b506040516200360b3803806200360b8339818101604052810190620001a9919062000ece565b60068054620001b89062000940565b80601f0160208091040260200160405190810160405280929190818152602001828054620001e69062000940565b8015620002375780601f106200020b5761010080835404028352916020019162000237565b820191906000526020600020905b8154815290600101906020018083116200021957829003601f168201915b5050505050600780546200024b9062000940565b80601f0160208091040260200160405190810160405280929190818152602001828054620002799062000940565b8015620002ca5780601f106200029e57610100808354040283529160200191620002ca565b820191906000526020600020905b815481529060010190602001808311620002ac57829003601f168201915b50505050508160039081620002e0919062000b51565b508060049081620002f2919062000b51565b5050506200031562000309620006c460201b60201c565b620006cc60201b60201c565b6200035333600860009054906101000a900460ff16600a62000338919062000dc8565b60095462000347919062000e19565b6200079260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000ece565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000446573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200046c919062000ece565b6040518363ffffffff1660e01b81526004016200048b92919062000f11565b6020604051808303816000875af1158015620004ab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004d1919062000ece565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050506200102a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000804576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fb9062000f9f565b60405180910390fd5b806002600082825462000818919062000fc1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008cb91906200100d565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200095957607f821691505b6020821081036200096f576200096e62000911565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200099a565b620009e586836200099a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a3262000a2c62000a2684620009fd565b62000a07565b620009fd565b9050919050565b6000819050919050565b62000a4e8362000a11565b62000a6662000a5d8262000a39565b848454620009a7565b825550505050565b600090565b62000a7d62000a6e565b62000a8a81848462000a43565b505050565b5b8181101562000ab25762000aa660008262000a73565b60018101905062000a90565b5050565b601f82111562000b015762000acb8162000975565b62000ad6846200098a565b8101602085101562000ae6578190505b62000afe62000af5856200098a565b83018262000a8f565b50505b505050565b600082821c905092915050565b600062000b266000198460080262000b06565b1980831691505092915050565b600062000b41838362000b13565b9150826002028217905092915050565b62000b5c82620008d7565b67ffffffffffffffff81111562000b785762000b77620008e2565b5b62000b84825462000940565b62000b9182828562000ab6565b600060209050601f83116001811462000bc9576000841562000bb4578287015190505b62000bc0858262000b33565b86555062000c30565b601f19841662000bd98662000975565b60005b8281101562000c035784890151825560018201915060208501945060208101905062000bdc565b8683101562000c23578489015162000c1f601f89168262000b13565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cc65780860481111562000c9e5762000c9d62000c38565b5b600185161562000cae5780820291505b808102905062000cbe8562000c67565b945062000c7e565b94509492505050565b60008262000ce1576001905062000db4565b8162000cf1576000905062000db4565b816001811462000d0a576002811462000d155762000d4b565b600191505062000db4565b60ff84111562000d2a5762000d2962000c38565b5b8360020a91508482111562000d445762000d4362000c38565b5b5062000db4565b5060208310610133831016604e8410600b841016171562000d855782820a90508381111562000d7f5762000d7e62000c38565b5b62000db4565b62000d94848484600162000c74565b9250905081840481111562000dae5762000dad62000c38565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dd582620009fd565b915062000de28362000dbb565b925062000e117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ccf565b905092915050565b600062000e2682620009fd565b915062000e3383620009fd565b925082820262000e4381620009fd565b9150828204841483151762000e5d5762000e5c62000c38565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e968262000e69565b9050919050565b62000ea88162000e89565b811462000eb457600080fd5b50565b60008151905062000ec88162000e9d565b92915050565b60006020828403121562000ee75762000ee662000e64565b5b600062000ef78482850162000eb7565b91505092915050565b62000f0b8162000e89565b82525050565b600060408201905062000f28600083018562000f00565b62000f37602083018462000f00565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f87601f8362000f3e565b915062000f948262000f4f565b602082019050919050565b6000602082019050818103600083015262000fba8162000f78565b9050919050565b600062000fce82620009fd565b915062000fdb83620009fd565b925082820190508082111562000ff65762000ff562000c38565b5b92915050565b6200100781620009fd565b82525050565b600060208201905062001024600083018462000ffc565b92915050565b60805160a0516125916200107a600039600081816106e901528181610e4d01528181610ea20152610f1001526000818161064c0152818161139001528181611471015261149801526125916000f3fe6080604052600436106101395760003560e01c806370a08231116100ab57806395d89b411161006f57806395d89b411461044d578063a457c2d714610478578063a9059cbb146104b5578063bb85c6d1146104f2578063dd62ed3e1461052f578063f2fde38b1461056c57610140565b806370a0823114610378578063715018a6146103b557806375f0a874146103cc5780638c0b5e22146103f75780638da5cb5b1461042257610140565b8063313ce567116100fd578063313ce56714610240578063395093511461026b57806349bd5a5e146102a8578063527ffabd146102d3578063677daa57146102fe5780636c2fd3241461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610595565b6040516101679190611846565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611901565b610627565b6040516101a4919061195c565b60405180910390f35b3480156101b957600080fd5b506101c261064a565b6040516101cf91906119d6565b60405180910390f35b3480156101e457600080fd5b506101ed61066e565b6040516101fa9190611a00565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190611a1b565b610678565b604051610237919061195c565b60405180910390f35b34801561024c57600080fd5b506102556106a7565b6040516102629190611a8a565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190611901565b6106b0565b60405161029f919061195c565b60405180910390f35b3480156102b457600080fd5b506102bd6106e7565b6040516102ca9190611ab4565b60405180910390f35b3480156102df57600080fd5b506102e861070b565b6040516102f59190611a00565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611acf565b610711565b604051610332919061195c565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190611acf565b61072b565b60405161036f919061195c565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190611afc565b610789565b6040516103ac9190611a00565b60405180910390f35b3480156103c157600080fd5b506103ca6107d1565b005b3480156103d857600080fd5b506103e16107e5565b6040516103ee9190611ab4565b60405180910390f35b34801561040357600080fd5b5061040c61080b565b6040516104199190611a00565b60405180910390f35b34801561042e57600080fd5b50610437610811565b6040516104449190611ab4565b60405180910390f35b34801561045957600080fd5b5061046261083b565b60405161046f9190611846565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190611901565b6108cd565b6040516104ac919061195c565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190611901565b610944565b6040516104e9919061195c565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190611afc565b610967565b604051610526919061195c565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190611b29565b6109bb565b6040516105639190611a00565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190611afc565b610a42565b005b6060600380546105a490611b98565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090611b98565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b5050505050905090565b600080610632610ac5565b905061063f818585610acd565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610683610ac5565b9050610690858285610c96565b61069b858585610d22565b60019150509392505050565b60006009905090565b6000806106bb610ac5565b90506106dc8185856106cd85896109bb565b6106d79190611bf8565b610acd565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a5481565b600061071b611192565b81600b8190555060019050919050565b6000610735611192565b6032821115610779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077090611c9e565b60405180910390fd5b81600a8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d9611192565b6107e36000611210565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084a90611b98565b80601f016020809104026020016040519081016040528092919081815260200182805461087690611b98565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b6000806108d8610ac5565b905060006108e682866109bb565b90508381101561092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290611d30565b60405180910390fd5b6109388286868403610acd565b60019250505092915050565b60008061094f610ac5565b905061095c818585610d22565b600191505092915050565b6000610971611192565b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4a611192565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090611dc2565b60405180910390fd5b610ac281611210565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390611e54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290611ee6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c899190611a00565b60405180910390a3505050565b6000610ca284846109bb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d1c5781811015610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590611f52565b60405180910390fd5b610d1b8484848403610acd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890611fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790612076565b60405180910390fd5b80610e0a84610789565b1015610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290612108565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ef057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610f095750601060009054906101000a900460ff16155b15611181577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611029576000610f6c30610789565b9050600f54600e541061102757610f82816112d6565b6000600e819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90612174565b60405180910390fd5b505b505b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110cc5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110d957819050611170565b600b5482111561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590612206565b60405180910390fd5b60006064600a54846111309190612226565b61113a9190612297565b9050808361114891906122c8565b915080600e600082825461115c9190611bf8565b9250508190555061116e853083611556565b505b61117b848483611556565b5061118d565b61118c838383611556565b5b505050565b61119a610ac5565b73ffffffffffffffffffffffffffffffffffffffff166111b8610811565b73ffffffffffffffffffffffffffffffffffffffff161461120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612348565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561130e5761130d612368565b5b60405190808252806020026020018201604052801561133c5781602001602082028036833780820191505090505b509050308160008151811061135457611353612397565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d91906123db565b8160018151811061143157611430612397565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611496307f000000000000000000000000000000000000000000000000000000000000000084610acd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426114e59190611bf8565b6040518663ffffffff1660e01b8152600401611505959493929190612501565b600060405180830381600087803b15801561151f57600080fd5b505af1158015611533573d6000803e3d6000fd5b50505050506000601060006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90611fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b90612076565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190612108565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a89190611a00565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117f05780820151818401526020810190506117d5565b60008484015250505050565b6000601f19601f8301169050919050565b6000611818826117b6565b61182281856117c1565b93506118328185602086016117d2565b61183b816117fc565b840191505092915050565b60006020820190508181036000830152611860818461180d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118988261186d565b9050919050565b6118a88161188d565b81146118b357600080fd5b50565b6000813590506118c58161189f565b92915050565b6000819050919050565b6118de816118cb565b81146118e957600080fd5b50565b6000813590506118fb816118d5565b92915050565b6000806040838503121561191857611917611868565b5b6000611926858286016118b6565b9250506020611937858286016118ec565b9150509250929050565b60008115159050919050565b61195681611941565b82525050565b6000602082019050611971600083018461194d565b92915050565b6000819050919050565b600061199c6119976119928461186d565b611977565b61186d565b9050919050565b60006119ae82611981565b9050919050565b60006119c0826119a3565b9050919050565b6119d0816119b5565b82525050565b60006020820190506119eb60008301846119c7565b92915050565b6119fa816118cb565b82525050565b6000602082019050611a1560008301846119f1565b92915050565b600080600060608486031215611a3457611a33611868565b5b6000611a42868287016118b6565b9350506020611a53868287016118b6565b9250506040611a64868287016118ec565b9150509250925092565b600060ff82169050919050565b611a8481611a6e565b82525050565b6000602082019050611a9f6000830184611a7b565b92915050565b611aae8161188d565b82525050565b6000602082019050611ac96000830184611aa5565b92915050565b600060208284031215611ae557611ae4611868565b5b6000611af3848285016118ec565b91505092915050565b600060208284031215611b1257611b11611868565b5b6000611b20848285016118b6565b91505092915050565b60008060408385031215611b4057611b3f611868565b5b6000611b4e858286016118b6565b9250506020611b5f858286016118b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bb057607f821691505b602082108103611bc357611bc2611b69565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c03826118cb565b9150611c0e836118cb565b9250828201905080821115611c2657611c25611bc9565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611c88602d836117c1565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a6025836117c1565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dac6026836117c1565b9150611db782611d50565b604082019050919050565b60006020820190508181036000830152611ddb81611d9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e3e6024836117c1565b9150611e4982611de2565b604082019050919050565b60006020820190508181036000830152611e6d81611e31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ed06022836117c1565b9150611edb82611e74565b604082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f3c601d836117c1565b9150611f4782611f06565b602082019050919050565b60006020820190508181036000830152611f6b81611f2f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fce6025836117c1565b9150611fd982611f72565b604082019050919050565b60006020820190508181036000830152611ffd81611fc1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120606023836117c1565b915061206b82612004565b604082019050919050565b6000602082019050818103600083015261208f81612053565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120f26026836117c1565b91506120fd82612096565b604082019050919050565b60006020820190508181036000830152612121816120e5565b9050919050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061215e6012836117c1565b915061216982612128565b602082019050919050565b6000602082019050818103600083015261218d81612151565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006121f06039836117c1565b91506121fb82612194565b604082019050919050565b6000602082019050818103600083015261221f816121e3565b9050919050565b6000612231826118cb565b915061223c836118cb565b925082820261224a816118cb565b9150828204841483151761226157612260611bc9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122a2826118cb565b91506122ad836118cb565b9250826122bd576122bc612268565b5b828204905092915050565b60006122d3826118cb565b91506122de836118cb565b92508282039050818111156122f6576122f5611bc9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123326020836117c1565b915061233d826122fc565b602082019050919050565b6000602082019050818103600083015261236181612325565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506123d58161189f565b92915050565b6000602082840312156123f1576123f0611868565b5b60006123ff848285016123c6565b91505092915050565b6000819050919050565b600061242d61242861242384612408565b611977565b6118cb565b9050919050565b61243d81612412565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6124788161188d565b82525050565b600061248a838361246f565b60208301905092915050565b6000602082019050919050565b60006124ae82612443565b6124b8818561244e565b93506124c38361245f565b8060005b838110156124f45781516124db888261247e565b97506124e683612496565b9250506001810190506124c7565b5085935050505092915050565b600060a08201905061251660008301886119f1565b6125236020830187612434565b818103604083015261253581866124a3565b90506125446060830185611aa5565b61255160808301846119f1565b969550505050505056fea2646970667358221220dcfe44f1bf3a6db8133822ebed598c1ea4d9bdd4c45bc973e8326939d0198dc864736f6c63430008130033000000000000000000000000e9ecc295dc2ddbdf3d15eb0d93ec517bae522520

Deployed Bytecode

0x6080604052600436106101395760003560e01c806370a08231116100ab57806395d89b411161006f57806395d89b411461044d578063a457c2d714610478578063a9059cbb146104b5578063bb85c6d1146104f2578063dd62ed3e1461052f578063f2fde38b1461056c57610140565b806370a0823114610378578063715018a6146103b557806375f0a874146103cc5780638c0b5e22146103f75780638da5cb5b1461042257610140565b8063313ce567116100fd578063313ce56714610240578063395093511461026b57806349bd5a5e146102a8578063527ffabd146102d3578063677daa57146102fe5780636c2fd3241461033b57610140565b806306fdde0314610145578063095ea7b3146101705780631694505e146101ad57806318160ddd146101d857806323b872dd1461020357610140565b3661014057005b600080fd5b34801561015157600080fd5b5061015a610595565b6040516101679190611846565b60405180910390f35b34801561017c57600080fd5b5061019760048036038101906101929190611901565b610627565b6040516101a4919061195c565b60405180910390f35b3480156101b957600080fd5b506101c261064a565b6040516101cf91906119d6565b60405180910390f35b3480156101e457600080fd5b506101ed61066e565b6040516101fa9190611a00565b60405180910390f35b34801561020f57600080fd5b5061022a60048036038101906102259190611a1b565b610678565b604051610237919061195c565b60405180910390f35b34801561024c57600080fd5b506102556106a7565b6040516102629190611a8a565b60405180910390f35b34801561027757600080fd5b50610292600480360381019061028d9190611901565b6106b0565b60405161029f919061195c565b60405180910390f35b3480156102b457600080fd5b506102bd6106e7565b6040516102ca9190611ab4565b60405180910390f35b3480156102df57600080fd5b506102e861070b565b6040516102f59190611a00565b60405180910390f35b34801561030a57600080fd5b5061032560048036038101906103209190611acf565b610711565b604051610332919061195c565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190611acf565b61072b565b60405161036f919061195c565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190611afc565b610789565b6040516103ac9190611a00565b60405180910390f35b3480156103c157600080fd5b506103ca6107d1565b005b3480156103d857600080fd5b506103e16107e5565b6040516103ee9190611ab4565b60405180910390f35b34801561040357600080fd5b5061040c61080b565b6040516104199190611a00565b60405180910390f35b34801561042e57600080fd5b50610437610811565b6040516104449190611ab4565b60405180910390f35b34801561045957600080fd5b5061046261083b565b60405161046f9190611846565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190611901565b6108cd565b6040516104ac919061195c565b60405180910390f35b3480156104c157600080fd5b506104dc60048036038101906104d79190611901565b610944565b6040516104e9919061195c565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190611afc565b610967565b604051610526919061195c565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190611b29565b6109bb565b6040516105639190611a00565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190611afc565b610a42565b005b6060600380546105a490611b98565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090611b98565b801561061d5780601f106105f25761010080835404028352916020019161061d565b820191906000526020600020905b81548152906001019060200180831161060057829003601f168201915b5050505050905090565b600080610632610ac5565b905061063f818585610acd565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610683610ac5565b9050610690858285610c96565b61069b858585610d22565b60019150509392505050565b60006009905090565b6000806106bb610ac5565b90506106dc8185856106cd85896109bb565b6106d79190611bf8565b610acd565b600191505092915050565b7f0000000000000000000000007ef25497bc46e00477da1488ede2a5dafdb55cfa81565b600a5481565b600061071b611192565b81600b8190555060019050919050565b6000610735611192565b6032821115610779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077090611c9e565b60405180910390fd5b81600a8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d9611192565b6107e36000611210565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084a90611b98565b80601f016020809104026020016040519081016040528092919081815260200182805461087690611b98565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b5050505050905090565b6000806108d8610ac5565b905060006108e682866109bb565b90508381101561092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290611d30565b60405180910390fd5b6109388286868403610acd565b60019250505092915050565b60008061094f610ac5565b905061095c818585610d22565b600191505092915050565b6000610971611192565b81600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4a611192565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab090611dc2565b60405180910390fd5b610ac281611210565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390611e54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290611ee6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c899190611a00565b60405180910390a3505050565b6000610ca284846109bb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d1c5781811015610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590611f52565b60405180910390fd5b610d1b8484848403610acd565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890611fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df790612076565b60405180910390fd5b80610e0a84610789565b1015610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4290612108565b60405180910390fd5b7f0000000000000000000000007ef25497bc46e00477da1488ede2a5dafdb55cfa73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ef057507f0000000000000000000000007ef25497bc46e00477da1488ede2a5dafdb55cfa73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610f095750601060009054906101000a900460ff16155b15611181577f0000000000000000000000007ef25497bc46e00477da1488ede2a5dafdb55cfa73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611029576000610f6c30610789565b9050600f54600e541061102757610f82816112d6565b6000600e819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050905080611025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101c90612174565b60405180910390fd5b505b505b6000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110cc5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110d957819050611170565b600b5482111561111e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111590612206565b60405180910390fd5b60006064600a54846111309190612226565b61113a9190612297565b9050808361114891906122c8565b915080600e600082825461115c9190611bf8565b9250508190555061116e853083611556565b505b61117b848483611556565b5061118d565b61118c838383611556565b5b505050565b61119a610ac5565b73ffffffffffffffffffffffffffffffffffffffff166111b8610811565b73ffffffffffffffffffffffffffffffffffffffff161461120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612348565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601060006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561130e5761130d612368565b5b60405190808252806020026020018201604052801561133c5781602001602082028036833780820191505090505b509050308160008151811061135457611353612397565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141d91906123db565b8160018151811061143157611430612397565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611496307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610acd565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426114e59190611bf8565b6040518663ffffffff1660e01b8152600401611505959493929190612501565b600060405180830381600087803b15801561151f57600080fd5b505af1158015611533573d6000803e3d6000fd5b50505050506000601060006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90611fe4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b90612076565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b190612108565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a89190611a00565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117f05780820151818401526020810190506117d5565b60008484015250505050565b6000601f19601f8301169050919050565b6000611818826117b6565b61182281856117c1565b93506118328185602086016117d2565b61183b816117fc565b840191505092915050565b60006020820190508181036000830152611860818461180d565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118988261186d565b9050919050565b6118a88161188d565b81146118b357600080fd5b50565b6000813590506118c58161189f565b92915050565b6000819050919050565b6118de816118cb565b81146118e957600080fd5b50565b6000813590506118fb816118d5565b92915050565b6000806040838503121561191857611917611868565b5b6000611926858286016118b6565b9250506020611937858286016118ec565b9150509250929050565b60008115159050919050565b61195681611941565b82525050565b6000602082019050611971600083018461194d565b92915050565b6000819050919050565b600061199c6119976119928461186d565b611977565b61186d565b9050919050565b60006119ae82611981565b9050919050565b60006119c0826119a3565b9050919050565b6119d0816119b5565b82525050565b60006020820190506119eb60008301846119c7565b92915050565b6119fa816118cb565b82525050565b6000602082019050611a1560008301846119f1565b92915050565b600080600060608486031215611a3457611a33611868565b5b6000611a42868287016118b6565b9350506020611a53868287016118b6565b9250506040611a64868287016118ec565b9150509250925092565b600060ff82169050919050565b611a8481611a6e565b82525050565b6000602082019050611a9f6000830184611a7b565b92915050565b611aae8161188d565b82525050565b6000602082019050611ac96000830184611aa5565b92915050565b600060208284031215611ae557611ae4611868565b5b6000611af3848285016118ec565b91505092915050565b600060208284031215611b1257611b11611868565b5b6000611b20848285016118b6565b91505092915050565b60008060408385031215611b4057611b3f611868565b5b6000611b4e858286016118b6565b9250506020611b5f858286016118b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611bb057607f821691505b602082108103611bc357611bc2611b69565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c03826118cb565b9150611c0e836118cb565b9250828201905080821115611c2657611c25611bc9565b5b92915050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b6000611c88602d836117c1565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a6025836117c1565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611dac6026836117c1565b9150611db782611d50565b604082019050919050565b60006020820190508181036000830152611ddb81611d9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611e3e6024836117c1565b9150611e4982611de2565b604082019050919050565b60006020820190508181036000830152611e6d81611e31565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ed06022836117c1565b9150611edb82611e74565b604082019050919050565b60006020820190508181036000830152611eff81611ec3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f3c601d836117c1565b9150611f4782611f06565b602082019050919050565b60006020820190508181036000830152611f6b81611f2f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611fce6025836117c1565b9150611fd982611f72565b604082019050919050565b60006020820190508181036000830152611ffd81611fc1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120606023836117c1565b915061206b82612004565b604082019050919050565b6000602082019050818103600083015261208f81612053565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120f26026836117c1565b91506120fd82612096565b604082019050919050565b60006020820190508181036000830152612121816120e5565b9050919050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061215e6012836117c1565b915061216982612128565b602082019050919050565b6000602082019050818103600083015261218d81612151565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006121f06039836117c1565b91506121fb82612194565b604082019050919050565b6000602082019050818103600083015261221f816121e3565b9050919050565b6000612231826118cb565b915061223c836118cb565b925082820261224a816118cb565b9150828204841483151761226157612260611bc9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006122a2826118cb565b91506122ad836118cb565b9250826122bd576122bc612268565b5b828204905092915050565b60006122d3826118cb565b91506122de836118cb565b92508282039050818111156122f6576122f5611bc9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123326020836117c1565b915061233d826122fc565b602082019050919050565b6000602082019050818103600083015261236181612325565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506123d58161189f565b92915050565b6000602082840312156123f1576123f0611868565b5b60006123ff848285016123c6565b91505092915050565b6000819050919050565b600061242d61242861242384612408565b611977565b6118cb565b9050919050565b61243d81612412565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6124788161188d565b82525050565b600061248a838361246f565b60208301905092915050565b6000602082019050919050565b60006124ae82612443565b6124b8818561244e565b93506124c38361245f565b8060005b838110156124f45781516124db888261247e565b97506124e683612496565b9250506001810190506124c7565b5085935050505092915050565b600060a08201905061251660008301886119f1565b6125236020830187612434565b818103604083015261253581866124a3565b90506125446060830185611aa5565b61255160808301846119f1565b969550505050505056fea2646970667358221220dcfe44f1bf3a6db8133822ebed598c1ea4d9bdd4c45bc973e8326939d0198dc864736f6c63430008130033

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

000000000000000000000000e9ecc295dc2ddbdf3d15eb0d93ec517bae522520

-----Decoded View---------------
Arg [0] : _add (address): 0xe9ECc295Dc2DdbDf3d15eb0d93EC517bae522520

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


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.