ETH Price: $2,358.94 (-0.27%)
Gas: 1.06 Gwei

Token

Ishi Inu (ISHI)
 

Overview

Max Total Supply

100,000,000,000 ISHI

Holders

220

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,018,850,377.211052486827290812 ISHI

Value
$0.00
0x22ac198DBf56f1627dAEe1EF1a28D389C05c7715
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:
ISHI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ISHI.sol
/*
https://ishiinutoken.com
https://t.me/IshiInuPortal
X.com/ishioneth

*/
/*
 * SPDX-License-Identifier: MIT
*/

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

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

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the upd allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IDexRouter {
    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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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

contract ISHI is ERC20, Ownable {
    using SafeMath for uint256;

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsEnabled = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingEnabled = false;

    // Fee receivers
    address private marketingWallet;
    address private projectWallet;

    uint256 private buyTaxTotal;
    uint256 private buyMarketingTax;
    uint256 private buyProjectTax;

    uint256 private sellTaxTotal;
    uint256 private sellMarketingTax;
    uint256 private sellProjectTax;
    
    uint256 private transferTaxTotal;
    uint256 private transferMarketingTax;
    uint256 private transferProjectTax;

    uint256 private tokensForMarketing;
    uint256 private tokensForProject;

    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private transferTaxExempt;
    mapping(address => bool) private transferLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetDexPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

    event MarketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event ProjectWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event BuyFeeUpdated(
        uint256 buyTaxTotal,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellTaxTotal,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    constructor() ERC20("Ishi Inu", "ISHI") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        setAddressAsExemptFromTxLimits(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        setAddressAsExemptFromTxLimits(address(dexPair), true);
        _setDexPair(address(dexPair), true);

        uint256 _buyMarketingTax = 30;
        uint256 _buyProjectTax = 0;

        uint256 _sellMarketingTax = 30;
        uint256 _sellProjectTax = 0;

        uint256 _transferMarketingTax = 0;
        uint256 _transferProjectTax = 0;

        uint256 _totalSupply = 100_000_000_000 * 10 ** decimals();

        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        swapBackValueMin = (_totalSupply * 1) / 1000;
        swapBackValueMax = (_totalSupply * 2) / 100;

        buyMarketingTax = _buyMarketingTax;
        buyProjectTax = _buyProjectTax;
        buyTaxTotal = buyMarketingTax + buyProjectTax;

        sellMarketingTax = _sellMarketingTax;
        sellProjectTax = _sellProjectTax;
        sellTaxTotal = sellMarketingTax + sellProjectTax;

        transferMarketingTax = _transferMarketingTax;
        transferProjectTax = _transferProjectTax;
        transferTaxTotal = transferMarketingTax + transferProjectTax;

        marketingWallet = address(0x3040c96AAFC8f2c3EcF9bddfE6FB0A0AB30E3509);
        projectWallet = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        setAddressAsExemptFromFees(msg.sender, true);
        setAddressAsExemptFromFees(address(this), true);
        setAddressAsExemptFromFees(address(0xdead), true);
        setAddressAsExemptFromFees(marketingWallet, true);

        setAddressAsExemptFromTxLimits(msg.sender, true);
        setAddressAsExemptFromTxLimits(address(this), true);
        setAddressAsExemptFromTxLimits(address(0xdead), true);
        setAddressAsExemptFromTxLimits(marketingWallet, true);

        transferOwnership(msg.sender);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function openTrading() external onlyOwner {
        tradingEnabled = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeAllLimits() external onlyOwner {
        limitsEnabled = false;
        transferMarketingTax = 0;
        transferProjectTax = 0;
        transferTaxTotal = 0;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enable If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function setAmountsForMaxAndForMinSwapBack(
        bool _enable,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enable;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enable, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newMaxTxLimit Base 1000, so 1% = 10
     */
    function maxTxAmountLimitSet(
        uint256 newMaxTxLimit
    ) external onlyOwner {
        require(newMaxTxLimit >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newMaxTxLimit * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newMaxWalletLimit Base 1000, so 1% = 10
     */
    function maxWalletAmountLimitset(
        uint256 newMaxWalletLimit
    ) external onlyOwner {
        require(newMaxWalletLimit >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newMaxWalletLimit * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function setAddressAsExemptFromTxLimits(
        address updAds,
        bool isEx
    ) public onlyOwner {
        transferLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setTheBuyFeeAmounts(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingTax = _marketingFee;
        buyProjectTax = _devFee;
        buyTaxTotal = buyMarketingTax + buyProjectTax;
        require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setTheSellFeeAmounts(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingTax = _marketingFee;
        sellProjectTax = _devFee;
        sellTaxTotal = sellMarketingTax + sellProjectTax;
        require(
            sellTaxTotal <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax);
    }

    function setthetransferFeeAmounts(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        transferMarketingTax = _marketingFee;
        transferProjectTax = _devFee;
        transferTaxTotal = transferMarketingTax + transferProjectTax;
        require(
            transferTaxTotal <= 100,
            "Total transfer fee cannot be higher than 100%"
        );
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function setAddressAsExemptFromFees(
        address account,
        bool excluded
    ) public onlyOwner {
        transferTaxExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetDexPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setDexPair(address pair, bool value) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setDexPair(pair, value);
    }

    function _setDexPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetDexPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newMktWal The new marketing wallet
     */
    function setNewMarketingReceiver(address newMktWal) external onlyOwner {
        emit MarketingWalletUpdated(newMktWal, marketingWallet);
        marketingWallet = newMktWal;
    }

    /**
     * @notice Sets the project wallet
     * @dev onlyOwner.
     * Emits an {ProjectWalletUpdated} event
     * @param newDevWal The new dev wallet
     */
    function setNewDevreceiver(address newDevWal) external onlyOwner {
        emit ProjectWalletUpdated(newDevWal, projectWallet);
        projectWallet = newDevWal;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function viewSwapback()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function viewLimits()
        external
        view
        returns (bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx)
    {
        _limitsEnabled = limitsEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     * @return _projectWallet The wallet that receives the dev fees
     */
    function viewReceivers()
        external
        view
        returns (address _marketingWallet, address _projectWallet)
    {
        return (marketingWallet, projectWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyTaxTotal The total fee for buys
     * @return _buyMarketingTax The fee for buys that gets sent to marketing
     * @return _buyProjectTax The fee for buys that gets sent to dev
     * @return _sellTaxTotal The total fee for sells
     * @return _sellMarketingTax The fee for sells that gets sent to marketing
     * @return _sellProjectTax The fee for sells that gets sent to dev
     */
    function viewTaxes()
        external
        view
        returns (
            uint256 _buyTaxTotal,
            uint256 _buyMarketingTax,
            uint256 _buyProjectTax,
            uint256 _sellTaxTotal,
            uint256 _sellMarketingTax,
            uint256 _sellProjectTax
        )
    {
        _buyTaxTotal = buyTaxTotal;
        _buyMarketingTax = buyMarketingTax;
        _buyProjectTax = buyProjectTax;
        _sellTaxTotal = sellTaxTotal;
        _sellMarketingTax = sellMarketingTax;
        _sellProjectTax = sellProjectTax;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _transferTaxExempt  If the wallet is excluded from fees
     * @return  _transferLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function viewMappings(
        address _target
    )
        external
        view
        returns (
            bool _transferTaxExempt,
            bool _transferLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _transferTaxExempt = transferTaxExempt[_target];
        _transferLimitExempt = transferLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        transferTaxExempt[from] || transferTaxExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] && !transferLimitExempt[to]
                ) {
                    require(
                        amount <= maxTx,
                        "Buy transfer amount exceeds the maxTx."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] && !transferLimitExempt[from]
                ) {
                    require(
                        amount <= maxTx,
                        "Sell transfer amount exceeds the maxTx."
                    );
                } else if (!transferLimitExempt[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !transferTaxExempt[from] &&
            !transferTaxExempt[to]
        ) {
            swapping = true;

            swapBack(amount);

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (transferTaxExempt[from] || transferTaxExempt[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) {
                fees = amount.mul(sellTaxTotal).div(100);
                tokensForProject += (fees * sellProjectTax) / sellTaxTotal;
                tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) {
                fees = amount.mul(buyTaxTotal).div(100);
                tokensForProject += (fees * buyProjectTax) / buyTaxTotal;
                tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal;
            }
            // on transfers
            else if (transferTaxTotal > 0 && !automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) {
                fees = amount.mul(transferTaxTotal).div(100);
                tokensForProject += (fees * transferProjectTax) / transferTaxTotal;
                tokensForMarketing += (fees * transferMarketingTax) / transferTaxTotal;
            }


            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

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

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    bool anti = true;

    function setAnti(bool _anti) external onlyOwner {
        anti = _anti;
    }

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance;
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        if (anti && contractBalance > amount * 5) {
            contractBalance = amount * 5;
        }

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForDev = ethBalance.mul(tokensForProject).div(
            totalTokensToSwap
        );

        tokensForMarketing = 0;
        tokensForProject = 0;

        (success, ) = address(projectWallet).call{value: ethForDev}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTxLimit","type":"uint256"}],"name":"maxTxAmountLimitSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletLimit","type":"uint256"}],"name":"maxWalletAmountLimitset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setAddressAsExemptFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setAddressAsExemptFromTxLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setAmountsForMaxAndForMinSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWal","type":"address"}],"name":"setNewDevreceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWal","type":"address"}],"name":"setNewMarketingReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setTheBuyFeeAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setTheSellFeeAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setthetransferFeeAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"viewLimits","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"viewMappings","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewReceivers","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewSwapback","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"viewTaxes","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805460ff199081166001908117909255600c805482169055601c805490911690911790553480156200004457600080fd5b50604051806040016040528060088152602001674973686920496e7560c01b815250604051806040016040528060048152602001634953484960e01b815250816003908162000094919062000895565b506004620000a3828262000895565b505050620000c0620000ba6200044a60201b60201c565b6200044e565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e2816001620004a0565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000961565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c7919062000961565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000215573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023b919062000961565b6001600160a01b031660a081905262000256906001620004a0565b60a051620002669060016200054f565b601e600081818080806200027d6012600a62000aa8565b6200028e9064174876e80062000ab9565b90506103e8620002a082600a62000ab9565b620002ac919062000ad3565b600a9081556103e890620002c290839062000ab9565b620002ce919062000ad3565b6009556103e8620002e182600162000ab9565b620002ed919062000ad3565b6006556064620002ff82600262000ab9565b6200030b919062000ad3565b600755600f879055601086905562000324868862000af6565b600e55601285905560138490556200033d848662000af6565b6011556015839055601682905562000356828462000af6565b601455600c8054610100600160a81b031916743040c96aafc8f2c3ecf9bddfe6fb0a0ab30e350900179055600d8054336001600160a01b03199091168117909155620003a4906001620005a3565b620003b1306001620005a3565b620003c061dead6001620005a3565b600c54620003de9061010090046001600160a01b03166001620005a3565b620003eb336001620004a0565b620003f8306001620004a0565b6200040761dead6001620004a0565b600c54620004259061010090046001600160a01b03166001620004a0565b620004303362000647565b6200043c338262000707565b505050505050505062000b0c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004ef5760405162461bcd60e51b81526020600482018190526024820152600080516020620031c983398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b03163314620005ee5760405162461bcd60e51b81526020600482018190526024820152600080516020620031c98339815191526044820152606401620004e6565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000543565b6005546001600160a01b03163314620006925760405162461bcd60e51b81526020600482018190526024820152600080516020620031c98339815191526044820152606401620004e6565b6001600160a01b038116620006f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004e6565b62000704816200044e565b50565b6001600160a01b0382166200075f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e6565b806002600082825462000773919062000af6565b90915550506001600160a01b03821660009081526020819052604081208054839290620007a290849062000af6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200081c57607f821691505b6020821081036200083d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007ec57600081815260208120601f850160051c810160208610156200086c5750805b601f850160051c820191505b818110156200088d5782815560010162000878565b505050505050565b81516001600160401b03811115620008b157620008b1620007f1565b620008c981620008c2845462000807565b8462000843565b602080601f831160018114620009015760008415620008e85750858301515b600019600386901b1c1916600185901b1785556200088d565b600085815260208120601f198616915b82811015620009325788860151825594840194600190910190840162000911565b5085821015620009515787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200097457600080fd5b81516001600160a01b03811681146200098c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009ea578160001904821115620009ce57620009ce62000993565b80851615620009dc57918102915b93841c9390800290620009ae565b509250929050565b60008262000a035750600162000aa2565b8162000a125750600062000aa2565b816001811462000a2b576002811462000a365762000a56565b600191505062000aa2565b60ff84111562000a4a5762000a4a62000993565b50506001821b62000aa2565b5060208310610133831016604e8410600b841016171562000a7b575081810a62000aa2565b62000a878383620009a9565b806000190482111562000a9e5762000a9e62000993565b0290505b92915050565b60006200098c60ff841683620009f2565b808202811582820484141762000aa25762000aa262000993565b60008262000af157634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000aa25762000aa262000993565b60805160a05161268262000b476000396000818161073201526113460152600081816120ce0152818161218701526121c301526126826000f3fe6080604052600436106102085760003560e01c806370a0823111610118578063c9567bf9116100a0578063db05e5cb1161006f578063db05e5cb146106a5578063dd62ed3e146106ba578063e55648f414610700578063f242ab4114610720578063f2fde38b1461075457600080fd5b8063c9567bf914610630578063cea7134114610645578063d98d293914610665578063da7346b71461068557600080fd5b806395d89b41116100e757806395d89b411461059b5780639ab9690c146105b0578063a457c2d7146105d0578063a9059cbb146105f0578063bf5b80f21461061057600080fd5b806370a08231146104fe578063715018a6146105345780637ff6f7b9146105495780638da5cb5b1461056957600080fd5b8063303780b11161019b5780633b8c28491161016a5780633b8c2849146103f95780633ba48be61461046c57806340167d3d146104a45780634341285d146104c45780634ada218b146104e457600080fd5b8063303780b11461037c578063313ce5671461039d57806339509351146103b95780633b871111146103d957600080fd5b806311abf537116101d757806311abf537146102b157806318160ddd146102fd57806323b872dd1461031c5780632e63ed031461033c57600080fd5b806301d98ecf1461021457806306fdde0314610236578063095ea7b3146102615780630b7265391461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004612243565b610774565b005b34801561024257600080fd5b5061024b61082a565b6040516102589190612265565b60405180910390f35b34801561026d57600080fd5b5061028161027c3660046122c8565b6108bc565b6040519015158152602001610258565b34801561029d57600080fd5b506102346102ac366004612309565b6108d3565b3480156102bd57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c001610258565b34801561030957600080fd5b506002545b604051908152602001610258565b34801561032857600080fd5b5061028161033736600461233e565b61095d565b34801561034857600080fd5b50600554600654600754600160a81b90920460ff16915b604080519315158452602084019290925290820152606001610258565b34801561038857600080fd5b50600854600954600a5460ff9092169161035f565b3480156103a957600080fd5b5060405160128152602001610258565b3480156103c557600080fd5b506102816103d43660046122c8565b610a07565b3480156103e557600080fd5b506102346103f4366004612243565b610a43565b34801561040557600080fd5b5061044d61041436600461237f565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610258565b34801561047857600080fd5b50600c54600d54604080516101009093046001600160a01b039081168452909116602083015201610258565b3480156104b057600080fd5b506102346104bf36600461237f565b610b35565b3480156104d057600080fd5b506102346104df36600461239c565b610bc7565b3480156104f057600080fd5b50600c546102819060ff1681565b34801561050a57600080fd5b5061030e61051936600461237f565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b50610234610c9e565b34801561055557600080fd5b506102346105643660046123b5565b610cd4565b34801561057557600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610258565b3480156105a757600080fd5b5061024b610d11565b3480156105bc57600080fd5b506102346105cb36600461237f565b610d20565b3480156105dc57600080fd5b506102816105eb3660046122c8565b610da7565b3480156105fc57600080fd5b5061028161060b3660046122c8565b610e40565b34801561061c57600080fd5b5061023461062b36600461239c565b610e4d565b34801561063c57600080fd5b50610234610f29565b34801561065157600080fd5b50610234610660366004612243565b610fa0565b34801561067157600080fd5b506102346106803660046123d0565b61108b565b34801561069157600080fd5b506102346106a0366004612309565b611229565b3480156106b157600080fd5b506102346112ab565b3480156106c657600080fd5b5061030e6106d5366004612403565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561070c57600080fd5b5061023461071b366004612309565b61131a565b34801561072c57600080fd5b506105837f000000000000000000000000000000000000000000000000000000000000000081565b34801561076057600080fd5b5061023461076f36600461237f565b6113f5565b6005546001600160a01b031633146107a75760405162461bcd60e51b815260040161079e9061243c565b60405180910390fd5b601582905560168190556107bb8183612487565b6014819055606410156108265760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b606482015260840161079e565b5050565b6060600380546108399061249a565b80601f01602080910402602001604051908101604052809291908181526020018280546108659061249a565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c9338484611490565b5060015b92915050565b6005546001600160a01b031633146108fd5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b600061096a8484846115b4565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161079e565b6109fc8533858403611490565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108c9918590610a3e908690612487565b611490565b6005546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161079e9061243c565b600f8290556010819055610a818183612487565b600e81905560641015610ae75760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161079e565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161079e9061243c565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610bf15760405162461bcd60e51b815260040161079e9061243c565b6002811015610c425760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161079e565b6103e8610c4e60025490565b610c5890836124d4565b610c6291906124eb565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610cc85760405162461bcd60e51b815260040161079e9061243c565b610cd26000611d07565b565b6005546001600160a01b03163314610cfe5760405162461bcd60e51b815260040161079e9061243c565b601c805460ff1916911515919091179055565b6060600480546108399061249a565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161079e9061243c565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e295760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161079e565b610e363385858403611490565b5060019392505050565b60006108c93384846115b4565b6005546001600160a01b03163314610e775760405162461bcd60e51b815260040161079e9061243c565b6005811015610ed45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161079e565b6103e8610ee060025490565b610eea90836124d4565b610ef491906124eb565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c93565b6005546001600160a01b03163314610f535760405162461bcd60e51b815260040161079e9061243c565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610fca5760405162461bcd60e51b815260040161079e9061243c565b60128290556013819055610fde8183612487565b6011819055606410156110455760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161079e565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610b29565b6005546001600160a01b031633146110b55760405162461bcd60e51b815260040161079e9061243c565b60018210156111235760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161079e565b818110156111865760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161079e565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906111b091906124d4565b6111ba91906124eb565b600655612710816111ca60025490565b6111d491906124d4565b6111de91906124eb565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146112535760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610951565b6005546001600160a01b031633146112d55760405162461bcd60e51b815260040161079e9061243c565b6008805460ff19169055600060158190556016819055601481905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146113445760405162461bcd60e51b815260040161079e9061243c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036113eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161079e565b6108268282611d59565b6005546001600160a01b0316331461141f5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0381166114845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079e565b61148d81611d07565b50565b6001600160a01b0383166114f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079e565b6001600160a01b0382166115535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115da5760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b0382166116005760405162461bcd60e51b815260040161079e90612552565b806000036116195761161483836000611dad565b505050565b60085460ff161561197e576005546001600160a01b0384811691161480159061165057506005546001600160a01b03838116911614155b801561166457506001600160a01b03821615155b801561167b57506001600160a01b03821661dead14155b80156116915750600554600160a01b900460ff16155b1561197e57600c5460ff16611736576001600160a01b03831660009081526019602052604090205460ff16806116df57506001600160a01b03821660009081526019602052604090205460ff165b6117365760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161079e565b6001600160a01b0383166000908152601b602052604090205460ff16801561177757506001600160a01b0382166000908152601a602052604090205460ff16155b1561184c57600a548111156117dd5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161079e565b6009546001600160a01b0383166000908152602081905260409020546118039083612487565b11156118475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b61197e565b6001600160a01b0382166000908152601b602052604090205460ff16801561188d57506001600160a01b0383166000908152601a602052604090205460ff16155b156118f457600a548111156118475760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161079e565b6001600160a01b0382166000908152601a602052604090205460ff1661197e576009546001600160a01b03831660009081526020819052604090205461193a9083612487565b111561197e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b30600090815260208190526040902054600654811080159081906119ab5750600554600160a81b900460ff165b80156119c15750600554600160a01b900460ff16155b80156119e657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611a0b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a3057506001600160a01b03841660009081526019602052604090205460ff16155b15611a5f576005805460ff60a01b1916600160a01b179055611a5183611f02565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680611aad57506001600160a01b03851660009081526019602052604090205460ff165b15611ab6575060005b60008115611cf3576001600160a01b0386166000908152601b602052604090205460ff168015611ae857506000601154115b15611b7657611b0d6064611b076011548861205890919063ffffffff16565b9061206b565b905060115460135482611b2091906124d4565b611b2a91906124eb565b60186000828254611b3b9190612487565b9091555050601154601254611b5090836124d4565b611b5a91906124eb565b60176000828254611b6b9190612487565b90915550611cd59050565b6001600160a01b0387166000908152601b602052604090205460ff168015611ba057506000600e54115b15611c0257611bbf6064611b07600e548861205890919063ffffffff16565b9050600e5460105482611bd291906124d4565b611bdc91906124eb565b60186000828254611bed9190612487565b9091555050600e54600f54611b5090836124d4565b6000601454118015611c2d57506001600160a01b0387166000908152601b602052604090205460ff16155b8015611c5257506001600160a01b0386166000908152601b602052604090205460ff16155b15611cd557611c716064611b076014548861205890919063ffffffff16565b905060145460165482611c8491906124d4565b611c8e91906124eb565b60186000828254611c9f9190612487565b9091555050601454601554611cb490836124d4565b611cbe91906124eb565b60176000828254611ccf9190612487565b90915550505b8015611ce657611ce6873083611dad565b611cf08186612595565b94505b611cfe878787611dad565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611dd35760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b038216611df95760405162461bcd60e51b815260040161079e90612552565b6001600160a01b03831660009081526020819052604090205481811015611e715760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161079e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ea8908490612487565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef491815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611f225750505050565b600754831115611f325760075492505b601c5460ff168015611f4d5750611f4a8460056124d4565b83115b15611f6057611f5d8460056124d4565b92505b8247611f6b82612077565b6000611f774783612237565b90506000611f9486611b076018548561205890919063ffffffff16565b600060178190556018819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611fec576040519150601f19603f3d011682016040523d82523d6000602084013e611ff1565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b5050505050505050505050565b600061206482846124d4565b9392505050565b600061206482846124eb565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120ac576120ac6125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e91906125be565b81600181518110612161576121616125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250506121ac307f000000000000000000000000000000000000000000000000000000000000000084611490565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122019085906000908690309042906004016125db565b600060405180830381600087803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b505050505050565b60006120648284612595565b6000806040838503121561225657600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561229257858101830151858201604001528201612276565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461148d57600080fd5b600080604083850312156122db57600080fd5b82356122e6816122b3565b946020939093013593505050565b8035801515811461230457600080fd5b919050565b6000806040838503121561231c57600080fd5b8235612327816122b3565b9150612335602084016122f4565b90509250929050565b60008060006060848603121561235357600080fd5b833561235e816122b3565b9250602084013561236e816122b3565b929592945050506040919091013590565b60006020828403121561239157600080fd5b8135612064816122b3565b6000602082840312156123ae57600080fd5b5035919050565b6000602082840312156123c757600080fd5b612064826122f4565b6000806000606084860312156123e557600080fd5b6123ee846122f4565b95602085013595506040909401359392505050565b6000806040838503121561241657600080fd5b8235612421816122b3565b91506020830135612431816122b3565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108cd576108cd612471565b600181811c908216806124ae57607f821691505b6020821081036124ce57634e487b7160e01b600052602260045260246000fd5b50919050565b80820281158282048414176108cd576108cd612471565b60008261250857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108cd576108cd612471565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125d057600080fd5b8151612064816122b3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561262b5784516001600160a01b031683529383019391830191600101612606565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ba7861f7a460e18f6c52e17b6ca7158d69c4465e7956a3e3864a19cf1e42328b64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102085760003560e01c806370a0823111610118578063c9567bf9116100a0578063db05e5cb1161006f578063db05e5cb146106a5578063dd62ed3e146106ba578063e55648f414610700578063f242ab4114610720578063f2fde38b1461075457600080fd5b8063c9567bf914610630578063cea7134114610645578063d98d293914610665578063da7346b71461068557600080fd5b806395d89b41116100e757806395d89b411461059b5780639ab9690c146105b0578063a457c2d7146105d0578063a9059cbb146105f0578063bf5b80f21461061057600080fd5b806370a08231146104fe578063715018a6146105345780637ff6f7b9146105495780638da5cb5b1461056957600080fd5b8063303780b11161019b5780633b8c28491161016a5780633b8c2849146103f95780633ba48be61461046c57806340167d3d146104a45780634341285d146104c45780634ada218b146104e457600080fd5b8063303780b11461037c578063313ce5671461039d57806339509351146103b95780633b871111146103d957600080fd5b806311abf537116101d757806311abf537146102b157806318160ddd146102fd57806323b872dd1461031c5780632e63ed031461033c57600080fd5b806301d98ecf1461021457806306fdde0314610236578063095ea7b3146102615780630b7265391461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f366004612243565b610774565b005b34801561024257600080fd5b5061024b61082a565b6040516102589190612265565b60405180910390f35b34801561026d57600080fd5b5061028161027c3660046122c8565b6108bc565b6040519015158152602001610258565b34801561029d57600080fd5b506102346102ac366004612309565b6108d3565b3480156102bd57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c001610258565b34801561030957600080fd5b506002545b604051908152602001610258565b34801561032857600080fd5b5061028161033736600461233e565b61095d565b34801561034857600080fd5b50600554600654600754600160a81b90920460ff16915b604080519315158452602084019290925290820152606001610258565b34801561038857600080fd5b50600854600954600a5460ff9092169161035f565b3480156103a957600080fd5b5060405160128152602001610258565b3480156103c557600080fd5b506102816103d43660046122c8565b610a07565b3480156103e557600080fd5b506102346103f4366004612243565b610a43565b34801561040557600080fd5b5061044d61041436600461237f565b6001600160a01b0316600090815260196020908152604080832054601a835281842054601b90935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610258565b34801561047857600080fd5b50600c54600d54604080516101009093046001600160a01b039081168452909116602083015201610258565b3480156104b057600080fd5b506102346104bf36600461237f565b610b35565b3480156104d057600080fd5b506102346104df36600461239c565b610bc7565b3480156104f057600080fd5b50600c546102819060ff1681565b34801561050a57600080fd5b5061030e61051936600461237f565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b50610234610c9e565b34801561055557600080fd5b506102346105643660046123b5565b610cd4565b34801561057557600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610258565b3480156105a757600080fd5b5061024b610d11565b3480156105bc57600080fd5b506102346105cb36600461237f565b610d20565b3480156105dc57600080fd5b506102816105eb3660046122c8565b610da7565b3480156105fc57600080fd5b5061028161060b3660046122c8565b610e40565b34801561061c57600080fd5b5061023461062b36600461239c565b610e4d565b34801561063c57600080fd5b50610234610f29565b34801561065157600080fd5b50610234610660366004612243565b610fa0565b34801561067157600080fd5b506102346106803660046123d0565b61108b565b34801561069157600080fd5b506102346106a0366004612309565b611229565b3480156106b157600080fd5b506102346112ab565b3480156106c657600080fd5b5061030e6106d5366004612403565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561070c57600080fd5b5061023461071b366004612309565b61131a565b34801561072c57600080fd5b506105837f0000000000000000000000002907527efee9459b06d5afd1e4f05c623c95563f81565b34801561076057600080fd5b5061023461076f36600461237f565b6113f5565b6005546001600160a01b031633146107a75760405162461bcd60e51b815260040161079e9061243c565b60405180910390fd5b601582905560168190556107bb8183612487565b6014819055606410156108265760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b606482015260840161079e565b5050565b6060600380546108399061249a565b80601f01602080910402602001604051908101604052809291908181526020018280546108659061249a565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b60006108c9338484611490565b5060015b92915050565b6005546001600160a01b031633146108fd5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b600061096a8484846115b4565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109ef5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161079e565b6109fc8533858403611490565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108c9918590610a3e908690612487565b611490565b6005546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161079e9061243c565b600f8290556010819055610a818183612487565b600e81905560641015610ae75760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161079e565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161079e9061243c565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610bf15760405162461bcd60e51b815260040161079e9061243c565b6002811015610c425760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161079e565b6103e8610c4e60025490565b610c5890836124d4565b610c6291906124eb565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610cc85760405162461bcd60e51b815260040161079e9061243c565b610cd26000611d07565b565b6005546001600160a01b03163314610cfe5760405162461bcd60e51b815260040161079e9061243c565b601c805460ff1916911515919091179055565b6060600480546108399061249a565b6005546001600160a01b03163314610d4a5760405162461bcd60e51b815260040161079e9061243c565b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e295760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161079e565b610e363385858403611490565b5060019392505050565b60006108c93384846115b4565b6005546001600160a01b03163314610e775760405162461bcd60e51b815260040161079e9061243c565b6005811015610ed45760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161079e565b6103e8610ee060025490565b610eea90836124d4565b610ef491906124eb565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c93565b6005546001600160a01b03163314610f535760405162461bcd60e51b815260040161079e9061243c565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610fca5760405162461bcd60e51b815260040161079e9061243c565b60128290556013819055610fde8183612487565b6011819055606410156110455760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161079e565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610b29565b6005546001600160a01b031633146110b55760405162461bcd60e51b815260040161079e9061243c565b60018210156111235760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161079e565b818110156111865760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161079e565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906111b091906124d4565b6111ba91906124eb565b600655612710816111ca60025490565b6111d491906124d4565b6111de91906124eb565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146112535760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610951565b6005546001600160a01b031633146112d55760405162461bcd60e51b815260040161079e9061243c565b6008805460ff19169055600060158190556016819055601481905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146113445760405162461bcd60e51b815260040161079e9061243c565b7f0000000000000000000000002907527efee9459b06d5afd1e4f05c623c95563f6001600160a01b0316826001600160a01b0316036113eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161079e565b6108268282611d59565b6005546001600160a01b0316331461141f5760405162461bcd60e51b815260040161079e9061243c565b6001600160a01b0381166114845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079e565b61148d81611d07565b50565b6001600160a01b0383166114f25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161079e565b6001600160a01b0382166115535760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161079e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115da5760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b0382166116005760405162461bcd60e51b815260040161079e90612552565b806000036116195761161483836000611dad565b505050565b60085460ff161561197e576005546001600160a01b0384811691161480159061165057506005546001600160a01b03838116911614155b801561166457506001600160a01b03821615155b801561167b57506001600160a01b03821661dead14155b80156116915750600554600160a01b900460ff16155b1561197e57600c5460ff16611736576001600160a01b03831660009081526019602052604090205460ff16806116df57506001600160a01b03821660009081526019602052604090205460ff165b6117365760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161079e565b6001600160a01b0383166000908152601b602052604090205460ff16801561177757506001600160a01b0382166000908152601a602052604090205460ff16155b1561184c57600a548111156117dd5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161079e565b6009546001600160a01b0383166000908152602081905260409020546118039083612487565b11156118475760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b61197e565b6001600160a01b0382166000908152601b602052604090205460ff16801561188d57506001600160a01b0383166000908152601a602052604090205460ff16155b156118f457600a548111156118475760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161079e565b6001600160a01b0382166000908152601a602052604090205460ff1661197e576009546001600160a01b03831660009081526020819052604090205461193a9083612487565b111561197e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161079e565b30600090815260208190526040902054600654811080159081906119ab5750600554600160a81b900460ff165b80156119c15750600554600160a01b900460ff16155b80156119e657506001600160a01b0385166000908152601b602052604090205460ff16155b8015611a0b57506001600160a01b03851660009081526019602052604090205460ff16155b8015611a3057506001600160a01b03841660009081526019602052604090205460ff16155b15611a5f576005805460ff60a01b1916600160a01b179055611a5183611f02565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526019602052604090205460ff600160a01b909204821615911680611aad57506001600160a01b03851660009081526019602052604090205460ff165b15611ab6575060005b60008115611cf3576001600160a01b0386166000908152601b602052604090205460ff168015611ae857506000601154115b15611b7657611b0d6064611b076011548861205890919063ffffffff16565b9061206b565b905060115460135482611b2091906124d4565b611b2a91906124eb565b60186000828254611b3b9190612487565b9091555050601154601254611b5090836124d4565b611b5a91906124eb565b60176000828254611b6b9190612487565b90915550611cd59050565b6001600160a01b0387166000908152601b602052604090205460ff168015611ba057506000600e54115b15611c0257611bbf6064611b07600e548861205890919063ffffffff16565b9050600e5460105482611bd291906124d4565b611bdc91906124eb565b60186000828254611bed9190612487565b9091555050600e54600f54611b5090836124d4565b6000601454118015611c2d57506001600160a01b0387166000908152601b602052604090205460ff16155b8015611c5257506001600160a01b0386166000908152601b602052604090205460ff16155b15611cd557611c716064611b076014548861205890919063ffffffff16565b905060145460165482611c8491906124d4565b611c8e91906124eb565b60186000828254611c9f9190612487565b9091555050601454601554611cb490836124d4565b611cbe91906124eb565b60176000828254611ccf9190612487565b90915550505b8015611ce657611ce6873083611dad565b611cf08186612595565b94505b611cfe878787611dad565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601b6020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611dd35760405162461bcd60e51b815260040161079e9061250d565b6001600160a01b038216611df95760405162461bcd60e51b815260040161079e90612552565b6001600160a01b03831660009081526020819052604090205481811015611e715760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161079e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ea8908490612487565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef491815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611f225750505050565b600754831115611f325760075492505b601c5460ff168015611f4d5750611f4a8460056124d4565b83115b15611f6057611f5d8460056124d4565b92505b8247611f6b82612077565b6000611f774783612237565b90506000611f9486611b076018548561205890919063ffffffff16565b600060178190556018819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611fec576040519150601f19603f3d011682016040523d82523d6000602084013e611ff1565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b5050505050505050505050565b600061206482846124d4565b9392505050565b600061206482846124eb565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106120ac576120ac6125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214e91906125be565b81600181518110612161576121616125a8565b60200260200101906001600160a01b031690816001600160a01b0316815250506121ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611490565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122019085906000908690309042906004016125db565b600060405180830381600087803b15801561221b57600080fd5b505af115801561222f573d6000803e3d6000fd5b505050505050565b60006120648284612595565b6000806040838503121561225657600080fd5b50508035926020909101359150565b600060208083528351808285015260005b8181101561229257858101830151858201604001528201612276565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461148d57600080fd5b600080604083850312156122db57600080fd5b82356122e6816122b3565b946020939093013593505050565b8035801515811461230457600080fd5b919050565b6000806040838503121561231c57600080fd5b8235612327816122b3565b9150612335602084016122f4565b90509250929050565b60008060006060848603121561235357600080fd5b833561235e816122b3565b9250602084013561236e816122b3565b929592945050506040919091013590565b60006020828403121561239157600080fd5b8135612064816122b3565b6000602082840312156123ae57600080fd5b5035919050565b6000602082840312156123c757600080fd5b612064826122f4565b6000806000606084860312156123e557600080fd5b6123ee846122f4565b95602085013595506040909401359392505050565b6000806040838503121561241657600080fd5b8235612421816122b3565b91506020830135612431816122b3565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156108cd576108cd612471565b600181811c908216806124ae57607f821691505b6020821081036124ce57634e487b7160e01b600052602260045260246000fd5b50919050565b80820281158282048414176108cd576108cd612471565b60008261250857634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108cd576108cd612471565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125d057600080fd5b8151612064816122b3565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561262b5784516001600160a01b031683529383019391830191600101612606565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ba7861f7a460e18f6c52e17b6ca7158d69c4465e7956a3e3864a19cf1e42328b64736f6c63430008130033

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.