ETH Price: $2,635.99 (+0.73%)
Gas: 8.23 Gwei

Token

EtherOS (ETHOS)
 

Overview

Max Total Supply

100,000 ETHOS

Holders

421

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
imreallyback.eth
Balance
0.000000528706161838 ETHOS

Value
$0.00
0x7aaACF5381a2A0E029f0526b85e07924eb09FA37
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:
EtherOSToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-11
*/

/*

Twitter: https://x.com/ether_os
Telegram: https://t.me/EtherOsPortal
Website: https://etheros.app/

*/


// File: interfaces/IERC20.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: contracts/ERC20.sol

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

pragma solidity >=0.5.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// File: interfaces/IEtherVistaRouter.sol

pragma solidity >=0.6.2;

interface IEtherVistaRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

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

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        uint deadline
    ) external returns (uint amountETH);
 
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;

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

    function launch(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        uint8 buyLpFee, 
        uint8 sellLpFee, 
        uint8 buyProtocolFee, 
        uint8 sellProtocolFee, 
        address protocolAddress
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);

}
// File: libraries/Address.sol

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: interfaces/IERC20Permit.sol

pragma solidity ^0.8.0;

interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

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

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

pragma solidity ^0.8.0;




library SafeERC20 {
    using Address for address;

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

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

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

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

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

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

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

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

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

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

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

pragma solidity >=0.4.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }

    function min(uint256 x, uint256 y) internal pure returns (uint256 z) {
        z = x < y ? x : y;
    }

    // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
    function sqrt(uint256 y) internal pure returns (uint256 z) {
        if (y > 3) {
            z = y;
            uint256 x = y / 2 + 1;
            while (x < z) {
                z = x;
                x = (y / x + x) / 2;
            }
        } else if (y != 0) {
            z = 1;
        }
    }
}
// File: contracts/EtherOS.sol

pragma solidity ^0.8.0;







contract EtherOSToken is ERC20 {
    using SafeMath for uint256;
    uint constant _initial_supply = 100000 * (10 ** 18); 
    address public owner;
    uint256 public blockLaunch;
    address public lpPair;
    uint256 fees = 2;

    uint256 public maxWalletPercent = 100;
    uint256 public maxWallet;
    uint256 private constant swapTokensAtAmountPercent = 50;
    uint256 private constant maxSwapableTokensPercent = 100;
    uint256 swapTokensAtAmount;
    uint256 _maxSwapableTokens;

    bool public isTradingLive = false;
    bool public swapEnabled = false;
    bool public limitsInEffect = true;

    bool private swapping;

    mapping(address => bool) public _isExcludedFromFees;
    mapping(address => bool) public _isExcludedmaxwallet;
    mapping(address => bool) public automatedMarketMakerPairs;

    IEtherVistaRouter public _router;



    constructor(address _routerAddress) ERC20("EtherOS", "ETHOS") {
        _mint(msg.sender, _initial_supply);
        owner = msg.sender;
        _router = IEtherVistaRouter(_routerAddress);
        _isExcludedFromFees[owner] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedmaxwallet[owner] = true;
        _isExcludedmaxwallet[address(this)] = true;

        maxWallet = (_initial_supply * maxWalletPercent) / 100;
        swapTokensAtAmount = (_initial_supply * swapTokensAtAmountPercent) / 10_000;
        _maxSwapableTokens = (_initial_supply * maxSwapableTokensPercent) / 10_000;
      }

    function launchToken(address _lp) public {
          require(msg.sender == owner);
          blockLaunch = block.number;
          lpPair = _lp;
          automatedMarketMakerPairs[lpPair] = true;
          isTradingLive = true;
          swapEnabled = true;
    }

    function updateSwapAmount(uint256 _newSwapAmount) public {
          require(msg.sender == owner);
          swapTokensAtAmount = _newSwapAmount;
    }

    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 (limitsInEffect) {
        if (from != owner && to != owner && to != address(0) && to != address(0xdead) && !swapping) {
          if (!isTradingLive) {
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
          }

          // BUY
          if (automatedMarketMakerPairs[from] && !_isExcludedmaxwallet[to]) {
            require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
          }
          // SELL
          else if (automatedMarketMakerPairs[to] && !_isExcludedmaxwallet[from]) {
            require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
          }
        }
      }

      uint256 contractTokenBalance = balanceOf(address(this));

      bool canSwap = contractTokenBalance >= swapTokensAtAmount;

      if (
        canSwap &&
        swapEnabled &&
        !swapping &&
        !automatedMarketMakerPairs[from] &&
        !_isExcludedFromFees[from] &&
        !_isExcludedFromFees[to]
      ) {
        swapping = true;
        swapBack(min(contractTokenBalance, _maxSwapableTokens));
        swapping = false;
      }

      bool takeFee = !swapping;

      if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
        takeFee = false;
      }

      uint256 fees = 0;

      if (takeFee) {
          fees = amount * getFees() / 100;

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

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

    function min(uint256 a, uint256 b) private pure returns (uint256) {
      return (a > b) ? b : a;
    }

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

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

      _router.swapExactTokensForETHSupportingFeeOnTransferTokens(
        tokenAmount,
        0,
        path,
        owner,
        block.timestamp
      );
    }

    function swapBack(uint256 amount) private {
      bool success;

      if (amount == 0) {
        return;
      }

      uint256 amountToSwapForETH = amount;
      swapTokensForEth(amountToSwapForETH);
      uint256 ethBalance = address(this).balance;
      (success, ) = address(owner).call{ value: ethBalance }("");
    }



    function updateRouter(address _new) public {
        require(msg.sender == owner);
        _router = IEtherVistaRouter(_new);
    }

    function updatePair(address _new) public {
        require(msg.sender == owner);
        lpPair = _new;
    }

    function excludeFromFees(address _address, bool _bool) public {
        require(msg.sender == owner);
        _isExcludedFromFees[_address] = _bool;
    }

    function removeMaxWallet() public {
        require(msg.sender == owner);
        limitsInEffect = false;
    }

    function getFees() public view returns(uint256) {
        uint256 taxFees;
        if(block.number <= blockLaunch + 3) {
            taxFees = 40;
        } else if(block.number <= blockLaunch + 12) {
            taxFees = 20;
        } else {
            taxFees = 2;
        }
        return taxFees;
    }

    function updateSwapEnabled(bool _isEnable) external {
        require(msg.sender == owner);
        swapEnabled = _isEnable;
    }

     function manualSwap(uint256 amount) external {
        require(msg.sender == owner);
        require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
        swapBack(amount);
    }

    function recoverTokensFromContract(address _tokenAddress, uint256 _amount) external {
        require(msg.sender == owner);
        bool succ = ERC20(_tokenAddress).transfer(owner, _amount);
        require(succ, "Transfer failed");
  }

  function excluded(address[] memory _address) public {
        require(msg.sender == owner);
        for (uint256 i = 0; i < _address.length; i++) {
            _isExcludedFromFees[_address[i]] = true;
        }
    }
    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxwallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"contract IEtherVistaRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockLaunch","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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"excluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"isTradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"}],"name":"launchToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverTokensFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAmount","type":"uint256"}],"name":"updateSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnable","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260026008556064600955600d805462ffffff1916620100001790553480156200002c57600080fd5b5060405162001f5a38038062001f5a8339810160408190526200004f9162000345565b604080518082018252600781526645746865724f5360c81b6020808301918252835180850190945260058452644554484f5360d81b9084015281519192916200009b916003916200029f565b508051620000b19060049060208401906200029f565b505050620000d03369152d02c7e14af6800000620001d860201b60201c565b600580546001600160a01b03199081163317808355601180546001600160a01b038681169190941617905581166000908152600e60209081526040808320805460ff19908116600190811790925530808652838620805483168417905596549095168452600f909252808320805485168317905593825292902080549091169091179055600954606490620001709069152d02c7e14af6800000620003f1565b6200017c9190620003d0565b600a5561271062000199603269152d02c7e14af6800000620003f1565b620001a59190620003d0565b600b55612710620001c2606469152d02c7e14af6800000620003f1565b620001ce9190620003d0565b600c555062000466565b6001600160a01b0382166200020a5760405162461bcd60e51b8152600401620002019062000375565b60405180910390fd5b62000218600083836200029a565b80600260008282546200022c9190620003b5565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000280908590620003ac565b60405180910390a362000296600083836200029a565b5050565b505050565b828054620002ad9062000413565b90600052602060002090601f016020900481019282620002d157600085556200031c565b82601f10620002ec57805160ff19168380011785556200031c565b828001600101855582156200031c579182015b828111156200031c578251825591602001919060010190620002ff565b506200032a9291506200032e565b5090565b5b808211156200032a57600081556001016200032f565b60006020828403121562000357578081fd5b81516001600160a01b03811681146200036e578182fd5b9392505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003cb57620003cb62000450565b500190565b600082620003ec57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156200040e576200040e62000450565b500290565b6002810460018216806200042857607f821691505b602082108114156200044a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611ae480620004766000396000f3fe6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610566578063e0bf7fd114610586578063e6be4a72146105a6578063edae876f146105c6578063f8b45b05146105db57610204565b8063c0246668146104fc578063c851cc321461051c578063db8d55f11461053c578063dc07b6171461055157610204565b8063a9059cbb116100dc578063a9059cbb1461047c578063ab3b55451461049c578063b62496f5146104bc578063b70143c9146104dc57610204565b80638da5cb5b14610412578063924de9b71461042757806395d89b4114610447578063a457c2d71461045c57610204565b80633d9a3d19116101905780636ddd17131161015f5780636ddd17131461038857806370a082311461039d5780637a3c8640146103bd5780637f5fffd8146103dd5780638d0fdc6d146103f257610204565b80633d9a3d191461031c5780634484961814610331578063452ed4f1146103515780634a62bb651461037357610204565b806323b872dd116101cc57806323b872dd146102a55780632ded0b04146102c5578063313ce567146102da57806339509351146102fc57610204565b806306fdde0314610209578063095ea7b31461023457806318160ddd146102615780631b56bbf91461028357610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6105f0565b60405161022b9190611645565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046114ce565b610682565b60405161022b919061163a565b34801561026d57600080fd5b506102766106a4565b60405161022b9190611914565b34801561028f57600080fd5b506102a361029e3660046113f1565b6106aa565b005b3480156102b157600080fd5b506102546102c0366004611461565b6106e3565b3480156102d157600080fd5b50610254610711565b3480156102e657600080fd5b506102ef61071a565b60405161022b919061198d565b34801561030857600080fd5b506102546103173660046114ce565b61071f565b34801561032857600080fd5b5061027661074b565b34801561033d57600080fd5b506102a361034c3660046114f9565b610751565b34801561035d57600080fd5b506103666107e2565b60405161022b919061160d565b34801561037f57600080fd5b506102546107f1565b34801561039457600080fd5b50610254610800565b3480156103a957600080fd5b506102766103b83660046113f1565b61080e565b3480156103c957600080fd5b506102a36103d83660046113f1565b61082d565b3480156103e957600080fd5b5061027661089b565b3480156103fe57600080fd5b5061025461040d3660046113f1565b6108a1565b34801561041e57600080fd5b506103666108b6565b34801561043357600080fd5b506102a36104423660046115ba565b6108c5565b34801561045357600080fd5b5061021e6108f6565b34801561046857600080fd5b506102546104773660046114ce565b610905565b34801561048857600080fd5b506102546104973660046114ce565b610956565b3480156104a857600080fd5b506102a36104b73660046115f2565b61096e565b3480156104c857600080fd5b506102546104d73660046113f1565b61098a565b3480156104e857600080fd5b506102a36104f73660046115f2565b61099f565b34801561050857600080fd5b506102a36105173660046114a1565b6109f6565b34801561052857600080fd5b506102a36105373660046113f1565b610a38565b34801561054857600080fd5b50610276610a71565b34801561055d57600080fd5b506102a3610ab6565b34801561057257600080fd5b50610276610581366004611429565b610adb565b34801561059257600080fd5b506102546105a13660046113f1565b610b06565b3480156105b257600080fd5b506102a36105c13660046114ce565b610b1b565b3480156105d257600080fd5b50610366610bdd565b3480156105e757600080fd5b50610276610bec565b6060600380546105ff90611a09565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611a09565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610bf2565b905061069a818585610bf6565b5060019392505050565b60025490565b6005546001600160a01b031633146106c157600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106ee610bf2565b90506106fb858285610caa565b610706858585610cf4565b506001949350505050565b600d5460ff1681565b601290565b60008061072a610bf2565b905061069a81858561073c8589610adb565b610746919061199b565b610bf6565b60095481565b6005546001600160a01b0316331461076857600080fd5b60005b81518110156107de576001600e600084848151811061079a57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107d681611a44565b91505061076b565b5050565b6007546001600160a01b031681565b600d5462010000900460ff1681565b600d54610100900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b0316331461084457600080fd5b43600655600780546001600160a01b0319166001600160a01b039283161790819055166000908152601060205260409020805460ff199081166001908117909255600d8054610100921690921761ff001916179055565b60065481565b600f6020526000908152604090205460ff1681565b6005546001600160a01b031681565b6005546001600160a01b031633146108dc57600080fd5b600d80549115156101000261ff0019909216919091179055565b6060600480546105ff90611a09565b600080610910610bf2565b9050600061091e8286610adb565b9050838110156109495760405162461bcd60e51b8152600401610940906118a9565b60405180910390fd5b6107068286868403610bf6565b600080610961610bf2565b905061069a818585610cf4565b6005546001600160a01b0316331461098557600080fd5b600b55565b60106020526000908152604090205460ff1681565b6005546001600160a01b031633146109b657600080fd5b6109bf3061080e565b81111580156109ce5750600081115b6109ea5760405162461bcd60e51b8152600401610940906118ee565b6109f3816110d3565b50565b6005546001600160a01b03163314610a0d57600080fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f57600080fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806006546003610a83919061199b565b4311610a9157506028610ab1565b600654610a9f90600c61199b565b4311610aad57506014610ab1565b5060025b905090565b6005546001600160a01b03163314610acd57600080fd5b600d805462ff000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e6020526000908152604090205460ff1681565b6005546001600160a01b03163314610b3257600080fd5b60055460405163a9059cbb60e01b81526000916001600160a01b038086169263a9059cbb92610b679216908690600401611621565b602060405180830381600087803b158015610b8157600080fd5b505af1158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb991906115d6565b905080610bd85760405162461bcd60e51b81526004016109409061174d565b505050565b6011546001600160a01b031681565b600a5481565b3390565b6001600160a01b038316610c1c5760405162461bcd60e51b815260040161094090611838565b6001600160a01b038216610c425760405162461bcd60e51b81526004016109409061170b565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c9d908590611914565b60405180910390a3505050565b6000610cb68484610adb565b90506000198114610cee5781811015610ce15760405162461bcd60e51b815260040161094090611776565b610cee8484848403610bf6565b50505050565b6001600160a01b038316610d1a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b038216610d405760405162461bcd60e51b815260040161094090611698565b80610d5657610d5183836000611144565b610bd8565b600d5462010000900460ff1615610f37576005546001600160a01b03848116911614801590610d9357506005546001600160a01b03838116911614155b8015610da757506001600160a01b03821615155b8015610dbe57506001600160a01b03821661dead14155b8015610dd45750600d546301000000900460ff16155b15610f3757600d5460ff16610e3e576001600160a01b0383166000908152600e602052604090205460ff1680610e2257506001600160a01b0382166000908152600e602052604090205460ff165b610e3e5760405162461bcd60e51b8152600401610940906116db565b6001600160a01b03831660009081526010602052604090205460ff168015610e7f57506001600160a01b0382166000908152600f602052604090205460ff16155b15610ebd57600a54610e908361080e565b610e9a908361199b565b1115610eb85760405162461bcd60e51b81526004016109409061187c565b610f37565b6001600160a01b03821660009081526010602052604090205460ff168015610efe57506001600160a01b0383166000908152600f602052604090205460ff16155b15610f3757600a54610f0f8361080e565b610f19908361199b565b1115610f375760405162461bcd60e51b81526004016109409061187c565b6000610f423061080e565b600b5490915081108015908190610f605750600d54610100900460ff165b8015610f765750600d546301000000900460ff16155b8015610f9b57506001600160a01b03851660009081526010602052604090205460ff16155b8015610fc057506001600160a01b0385166000908152600e602052604090205460ff16155b8015610fe557506001600160a01b0384166000908152600e602052604090205460ff16155b1561102257600d805463ff00000019166301000000179055600c546110149061100f908490611245565b6110d3565b600d805463ff000000191690555b600d546001600160a01b0386166000908152600e602052604090205460ff630100000090920482161591168061107057506001600160a01b0385166000908152600e602052604090205460ff165b15611079575060005b600081156110bf57606461108b610a71565b61109590876119d3565b61109f91906119b3565b905080156110b2576110b2873083611144565b6110bc81866119f2565b94505b6110ca878787611144565b50505050505050565b6000816110e057506109f3565b816110ea8161125d565b60055460405147916001600160a01b03169082906111079061160a565b60006040518083038185875af1925050503d80600081146110ca576040519150601f19603f3d011682016040523d82523d6000602084013e6110ca565b6001600160a01b03831661116a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b0382166111905760405162461bcd60e51b815260040161094090611698565b61119b838383610bd8565b6001600160a01b038316600090815260208190526040902054818110156111d45760405162461bcd60e51b8152600401610940906117ad565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611232908690611914565b60405180910390a3610cee848484610bd8565b60008183116112545782611256565b815b9392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112a057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156112f457600080fd5b505afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c919061140d565b8160018151811061134d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526011546113739130911684610bf6565b60115460055460405163791ac94760e01b81526001600160a01b039283169263791ac947926113b09287926000928892911690429060040161191d565b600060405180830381600087803b1580156113ca57600080fd5b505af11580156113de573d6000803e3d6000fd5b505050505050565b803561082881611a8b565b600060208284031215611402578081fd5b813561125681611a8b565b60006020828403121561141e578081fd5b815161125681611a8b565b6000806040838503121561143b578081fd5b823561144681611a8b565b9150602083013561145681611a8b565b809150509250929050565b600080600060608486031215611475578081fd5b833561148081611a8b565b9250602084013561149081611a8b565b929592945050506040919091013590565b600080604083850312156114b3578182fd5b82356114be81611a8b565b9150602083013561145681611aa0565b600080604083850312156114e0578182fd5b82356114eb81611a8b565b946020939093013593505050565b6000602080838503121561150b578182fd5b823567ffffffffffffffff80821115611522578384fd5b818501915085601f830112611535578384fd5b81358181111561154757611547611a75565b8381026040518582820101818110858211171561156657611566611a75565b604052828152858101935084860182860187018a1015611584578788fd5b8795505b838610156115ad57611599816113e6565b855260019590950194938601938601611588565b5098975050505050505050565b6000602082840312156115cb578081fd5b813561125681611aa0565b6000602082840312156115e7578081fd5b815161125681611aa0565b600060208284031215611603578081fd5b5035919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561167157858101830151858201604001528201611655565b818111156116825783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600c908201526b15dc9bdb99c8185b5bdd5b9d60a21b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561196c5784516001600160a01b031683529383019391830191600101611947565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b600082198211156119ae576119ae611a5f565b500190565b6000826119ce57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119ed576119ed611a5f565b500290565b600082821015611a0457611a04611a5f565b500390565b600281046001821680611a1d57607f821691505b60208210811415611a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5857611a58611a5f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f357600080fd5b80151581146109f357600080fdfea26469706673582212201e6074164b4e469a3ae0dd6387d94a72d5d6a247c11d346b66630d609777929c64736f6c6343000800003300000000000000000000000021cf0e184b380cd0bc9fe69b20ab564d8817c100

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610566578063e0bf7fd114610586578063e6be4a72146105a6578063edae876f146105c6578063f8b45b05146105db57610204565b8063c0246668146104fc578063c851cc321461051c578063db8d55f11461053c578063dc07b6171461055157610204565b8063a9059cbb116100dc578063a9059cbb1461047c578063ab3b55451461049c578063b62496f5146104bc578063b70143c9146104dc57610204565b80638da5cb5b14610412578063924de9b71461042757806395d89b4114610447578063a457c2d71461045c57610204565b80633d9a3d19116101905780636ddd17131161015f5780636ddd17131461038857806370a082311461039d5780637a3c8640146103bd5780637f5fffd8146103dd5780638d0fdc6d146103f257610204565b80633d9a3d191461031c5780634484961814610331578063452ed4f1146103515780634a62bb651461037357610204565b806323b872dd116101cc57806323b872dd146102a55780632ded0b04146102c5578063313ce567146102da57806339509351146102fc57610204565b806306fdde0314610209578063095ea7b31461023457806318160ddd146102615780631b56bbf91461028357610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6105f0565b60405161022b9190611645565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046114ce565b610682565b60405161022b919061163a565b34801561026d57600080fd5b506102766106a4565b60405161022b9190611914565b34801561028f57600080fd5b506102a361029e3660046113f1565b6106aa565b005b3480156102b157600080fd5b506102546102c0366004611461565b6106e3565b3480156102d157600080fd5b50610254610711565b3480156102e657600080fd5b506102ef61071a565b60405161022b919061198d565b34801561030857600080fd5b506102546103173660046114ce565b61071f565b34801561032857600080fd5b5061027661074b565b34801561033d57600080fd5b506102a361034c3660046114f9565b610751565b34801561035d57600080fd5b506103666107e2565b60405161022b919061160d565b34801561037f57600080fd5b506102546107f1565b34801561039457600080fd5b50610254610800565b3480156103a957600080fd5b506102766103b83660046113f1565b61080e565b3480156103c957600080fd5b506102a36103d83660046113f1565b61082d565b3480156103e957600080fd5b5061027661089b565b3480156103fe57600080fd5b5061025461040d3660046113f1565b6108a1565b34801561041e57600080fd5b506103666108b6565b34801561043357600080fd5b506102a36104423660046115ba565b6108c5565b34801561045357600080fd5b5061021e6108f6565b34801561046857600080fd5b506102546104773660046114ce565b610905565b34801561048857600080fd5b506102546104973660046114ce565b610956565b3480156104a857600080fd5b506102a36104b73660046115f2565b61096e565b3480156104c857600080fd5b506102546104d73660046113f1565b61098a565b3480156104e857600080fd5b506102a36104f73660046115f2565b61099f565b34801561050857600080fd5b506102a36105173660046114a1565b6109f6565b34801561052857600080fd5b506102a36105373660046113f1565b610a38565b34801561054857600080fd5b50610276610a71565b34801561055d57600080fd5b506102a3610ab6565b34801561057257600080fd5b50610276610581366004611429565b610adb565b34801561059257600080fd5b506102546105a13660046113f1565b610b06565b3480156105b257600080fd5b506102a36105c13660046114ce565b610b1b565b3480156105d257600080fd5b50610366610bdd565b3480156105e757600080fd5b50610276610bec565b6060600380546105ff90611a09565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611a09565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610bf2565b905061069a818585610bf6565b5060019392505050565b60025490565b6005546001600160a01b031633146106c157600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106ee610bf2565b90506106fb858285610caa565b610706858585610cf4565b506001949350505050565b600d5460ff1681565b601290565b60008061072a610bf2565b905061069a81858561073c8589610adb565b610746919061199b565b610bf6565b60095481565b6005546001600160a01b0316331461076857600080fd5b60005b81518110156107de576001600e600084848151811061079a57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107d681611a44565b91505061076b565b5050565b6007546001600160a01b031681565b600d5462010000900460ff1681565b600d54610100900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b0316331461084457600080fd5b43600655600780546001600160a01b0319166001600160a01b039283161790819055166000908152601060205260409020805460ff199081166001908117909255600d8054610100921690921761ff001916179055565b60065481565b600f6020526000908152604090205460ff1681565b6005546001600160a01b031681565b6005546001600160a01b031633146108dc57600080fd5b600d80549115156101000261ff0019909216919091179055565b6060600480546105ff90611a09565b600080610910610bf2565b9050600061091e8286610adb565b9050838110156109495760405162461bcd60e51b8152600401610940906118a9565b60405180910390fd5b6107068286868403610bf6565b600080610961610bf2565b905061069a818585610cf4565b6005546001600160a01b0316331461098557600080fd5b600b55565b60106020526000908152604090205460ff1681565b6005546001600160a01b031633146109b657600080fd5b6109bf3061080e565b81111580156109ce5750600081115b6109ea5760405162461bcd60e51b8152600401610940906118ee565b6109f3816110d3565b50565b6005546001600160a01b03163314610a0d57600080fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f57600080fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806006546003610a83919061199b565b4311610a9157506028610ab1565b600654610a9f90600c61199b565b4311610aad57506014610ab1565b5060025b905090565b6005546001600160a01b03163314610acd57600080fd5b600d805462ff000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e6020526000908152604090205460ff1681565b6005546001600160a01b03163314610b3257600080fd5b60055460405163a9059cbb60e01b81526000916001600160a01b038086169263a9059cbb92610b679216908690600401611621565b602060405180830381600087803b158015610b8157600080fd5b505af1158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb991906115d6565b905080610bd85760405162461bcd60e51b81526004016109409061174d565b505050565b6011546001600160a01b031681565b600a5481565b3390565b6001600160a01b038316610c1c5760405162461bcd60e51b815260040161094090611838565b6001600160a01b038216610c425760405162461bcd60e51b81526004016109409061170b565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c9d908590611914565b60405180910390a3505050565b6000610cb68484610adb565b90506000198114610cee5781811015610ce15760405162461bcd60e51b815260040161094090611776565b610cee8484848403610bf6565b50505050565b6001600160a01b038316610d1a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b038216610d405760405162461bcd60e51b815260040161094090611698565b80610d5657610d5183836000611144565b610bd8565b600d5462010000900460ff1615610f37576005546001600160a01b03848116911614801590610d9357506005546001600160a01b03838116911614155b8015610da757506001600160a01b03821615155b8015610dbe57506001600160a01b03821661dead14155b8015610dd45750600d546301000000900460ff16155b15610f3757600d5460ff16610e3e576001600160a01b0383166000908152600e602052604090205460ff1680610e2257506001600160a01b0382166000908152600e602052604090205460ff165b610e3e5760405162461bcd60e51b8152600401610940906116db565b6001600160a01b03831660009081526010602052604090205460ff168015610e7f57506001600160a01b0382166000908152600f602052604090205460ff16155b15610ebd57600a54610e908361080e565b610e9a908361199b565b1115610eb85760405162461bcd60e51b81526004016109409061187c565b610f37565b6001600160a01b03821660009081526010602052604090205460ff168015610efe57506001600160a01b0383166000908152600f602052604090205460ff16155b15610f3757600a54610f0f8361080e565b610f19908361199b565b1115610f375760405162461bcd60e51b81526004016109409061187c565b6000610f423061080e565b600b5490915081108015908190610f605750600d54610100900460ff165b8015610f765750600d546301000000900460ff16155b8015610f9b57506001600160a01b03851660009081526010602052604090205460ff16155b8015610fc057506001600160a01b0385166000908152600e602052604090205460ff16155b8015610fe557506001600160a01b0384166000908152600e602052604090205460ff16155b1561102257600d805463ff00000019166301000000179055600c546110149061100f908490611245565b6110d3565b600d805463ff000000191690555b600d546001600160a01b0386166000908152600e602052604090205460ff630100000090920482161591168061107057506001600160a01b0385166000908152600e602052604090205460ff165b15611079575060005b600081156110bf57606461108b610a71565b61109590876119d3565b61109f91906119b3565b905080156110b2576110b2873083611144565b6110bc81866119f2565b94505b6110ca878787611144565b50505050505050565b6000816110e057506109f3565b816110ea8161125d565b60055460405147916001600160a01b03169082906111079061160a565b60006040518083038185875af1925050503d80600081146110ca576040519150601f19603f3d011682016040523d82523d6000602084013e6110ca565b6001600160a01b03831661116a5760405162461bcd60e51b8152600401610940906117f3565b6001600160a01b0382166111905760405162461bcd60e51b815260040161094090611698565b61119b838383610bd8565b6001600160a01b038316600090815260208190526040902054818110156111d45760405162461bcd60e51b8152600401610940906117ad565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611232908690611914565b60405180910390a3610cee848484610bd8565b60008183116112545782611256565b815b9392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112a057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156112f457600080fd5b505afa158015611308573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132c919061140d565b8160018151811061134d57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526011546113739130911684610bf6565b60115460055460405163791ac94760e01b81526001600160a01b039283169263791ac947926113b09287926000928892911690429060040161191d565b600060405180830381600087803b1580156113ca57600080fd5b505af11580156113de573d6000803e3d6000fd5b505050505050565b803561082881611a8b565b600060208284031215611402578081fd5b813561125681611a8b565b60006020828403121561141e578081fd5b815161125681611a8b565b6000806040838503121561143b578081fd5b823561144681611a8b565b9150602083013561145681611a8b565b809150509250929050565b600080600060608486031215611475578081fd5b833561148081611a8b565b9250602084013561149081611a8b565b929592945050506040919091013590565b600080604083850312156114b3578182fd5b82356114be81611a8b565b9150602083013561145681611aa0565b600080604083850312156114e0578182fd5b82356114eb81611a8b565b946020939093013593505050565b6000602080838503121561150b578182fd5b823567ffffffffffffffff80821115611522578384fd5b818501915085601f830112611535578384fd5b81358181111561154757611547611a75565b8381026040518582820101818110858211171561156657611566611a75565b604052828152858101935084860182860187018a1015611584578788fd5b8795505b838610156115ad57611599816113e6565b855260019590950194938601938601611588565b5098975050505050505050565b6000602082840312156115cb578081fd5b813561125681611aa0565b6000602082840312156115e7578081fd5b815161125681611aa0565b600060208284031215611603578081fd5b5035919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561167157858101830151858201604001528201611655565b818111156116825783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600c908201526b15dc9bdb99c8185b5bdd5b9d60a21b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561196c5784516001600160a01b031683529383019391830191600101611947565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b600082198211156119ae576119ae611a5f565b500190565b6000826119ce57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119ed576119ed611a5f565b500290565b600082821015611a0457611a04611a5f565b500390565b600281046001821680611a1d57607f821691505b60208210811415611a3e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5857611a58611a5f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f357600080fd5b80151581146109f357600080fdfea26469706673582212201e6074164b4e469a3ae0dd6387d94a72d5d6a247c11d346b66630d609777929c64736f6c63430008000033

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

00000000000000000000000021cf0e184b380cd0bc9fe69b20ab564d8817c100

-----Decoded View---------------
Arg [0] : _routerAddress (address): 0x21cF0E184B380cD0BC9FE69b20aB564d8817C100

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000021cf0e184b380cd0bc9fe69b20ab564d8817c100


Deployed Bytecode Sourcemap

49496:6490:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6331:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8691:201;;;;;;;;;;-1:-1:-1;8691:201:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7460:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54393:112::-;;;;;;;;;;-1:-1:-1;54393:112:0;;;;;:::i;:::-;;:::i;:::-;;9472:261;;;;;;;;;;-1:-1:-1;9472:261:0;;;;;:::i;:::-;;:::i;50006:33::-;;;;;;;;;;;;;:::i;7302:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10142:238::-;;;;;;;;;;-1:-1:-1;10142:238:0;;;;;:::i;:::-;;:::i;49739:37::-;;;;;;;;;;;;;:::i;55725:221::-;;;;;;;;;;-1:-1:-1;55725:221:0;;;;;:::i;:::-;;:::i;49686:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50084:33::-;;;;;;;;;;;;;:::i;50046:31::-;;;;;;;;;;;;;:::i;7631:127::-;;;;;;;;;;-1:-1:-1;7631:127:0;;;;;:::i;:::-;;:::i;51024:271::-;;;;;;;;;;-1:-1:-1;51024:271:0;;;;;:::i;:::-;;:::i;49653:26::-;;;;;;;;;;;;;:::i;50214:52::-;;;;;;;;;;-1:-1:-1;50214:52:0;;;;;:::i;:::-;;:::i;49626:20::-;;;;;;;;;;;;;:::i;55126:133::-;;;;;;;;;;-1:-1:-1;55126:133:0;;;;;:::i;:::-;;:::i;6550:104::-;;;;;;;;;;;;;:::i;10883:436::-;;;;;;;;;;-1:-1:-1;10883:436:0;;;;;:::i;:::-;;:::i;7964:193::-;;;;;;;;;;-1:-1:-1;7964:193:0;;;;;:::i;:::-;;:::i;51303:154::-;;;;;;;;;;-1:-1:-1;51303:154:0;;;;;:::i;:::-;;:::i;50273:57::-;;;;;;;;;;-1:-1:-1;50273:57:0;;;;;:::i;:::-;;:::i;55268:203::-;;;;;;;;;;-1:-1:-1;55268:203:0;;;;;:::i;:::-;;:::i;54513:157::-;;;;;;;;;;-1:-1:-1;54513:157:0;;;;;:::i;:::-;;:::i;54251:134::-;;;;;;;;;;-1:-1:-1;54251:134:0;;;;;:::i;:::-;;:::i;54800:318::-;;;;;;;;;;;;;:::i;54678:114::-;;;;;;;;;;;;;:::i;8220:151::-;;;;;;;;;;-1:-1:-1;8220:151:0;;;;;:::i;:::-;;:::i;50156:51::-;;;;;;;;;;-1:-1:-1;50156:51:0;;;;;:::i;:::-;;:::i;55479:240::-;;;;;;;;;;-1:-1:-1;55479:240:0;;;;;:::i;:::-;;:::i;50339:32::-;;;;;;;;;;;;;:::i;49783:24::-;;;;;;;;;;;;;:::i;6331:100::-;6385:13;6418:5;6411:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6331:100;:::o;8691:201::-;8774:4;8791:13;8807:12;:10;:12::i;:::-;8791:28;;8830:32;8839:5;8846:7;8855:6;8830:8;:32::i;:::-;-1:-1:-1;8880:4:0;;8691:201;-1:-1:-1;;;8691:201:0:o;7460:108::-;7548:12;;7460:108;:::o;54393:112::-;54467:5;;-1:-1:-1;;;;;54467:5:0;54453:10;:19;54445:28;;;;;;54484:6;:13;;-1:-1:-1;;;;;;54484:13:0;-1:-1:-1;;;;;54484:13:0;;;;;;;;;;54393:112::o;9472:261::-;9569:4;9586:15;9604:12;:10;:12::i;:::-;9586:30;;9627:38;9643:4;9649:7;9658:6;9627:15;:38::i;:::-;9676:27;9686:4;9692:2;9696:6;9676:9;:27::i;:::-;-1:-1:-1;9721:4:0;;9472:261;-1:-1:-1;;;;9472:261:0:o;50006:33::-;;;;;;:::o;7302:93::-;7385:2;7302:93;:::o;10142:238::-;10230:4;10247:13;10263:12;:10;:12::i;:::-;10247:28;;10286:64;10295:5;10302:7;10339:10;10311:25;10321:5;10328:7;10311:9;:25::i;:::-;:38;;;;:::i;:::-;10286:8;:64::i;49739:37::-;;;;:::o;55725:221::-;55810:5;;-1:-1:-1;;;;;55810:5:0;55796:10;:19;55788:28;;;;;;55832:9;55827:112;55851:8;:15;55847:1;:19;55827:112;;;55923:4;55888:19;:32;55908:8;55917:1;55908:11;;;;;;-1:-1:-1;;;55908:11:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55888:32:0;;;;;;;;;;;-1:-1:-1;55888:32:0;:39;;-1:-1:-1;;55888:39:0;;;;;;;;;;55868:3;;;;:::i;:::-;;;;55827:112;;;;55725:221;:::o;49686:21::-;;;-1:-1:-1;;;;;49686:21:0;;:::o;50084:33::-;;;;;;;;;:::o;50046:31::-;;;;;;;;;:::o;7631:127::-;-1:-1:-1;;;;;7732:18:0;;7705:7;7732:18;;;;;;;;;;;7631:127;;;;:::o;51024:271::-;51100:5;;-1:-1:-1;;;;;51100:5:0;51086:10;:19;51078:28;;;;;;51133:12;51119:11;:26;51158:6;:12;;-1:-1:-1;;;;;;51158:12:0;-1:-1:-1;;;;;51158:12:0;;;;;;;;51209:6;-1:-1:-1;51183:33:0;;;:25;:33;;;;;:40;;-1:-1:-1;;51183:40:0;;;-1:-1:-1;51183:40:0;;;;;;51236:13;:20;;51158:12;51236:20;;;;;-1:-1:-1;;51269:18:0;;;;51024:271::o;49653:26::-;;;;:::o;50214:52::-;;;;;;;;;;;;;;;:::o;49626:20::-;;;-1:-1:-1;;;;;49626:20:0;;:::o;55126:133::-;55211:5;;-1:-1:-1;;;;;55211:5:0;55197:10;:19;55189:28;;;;;;55228:11;:23;;;;;;;-1:-1:-1;;55228:23:0;;;;;;;;;55126:133::o;6550:104::-;6606:13;6639:7;6632:14;;;;;:::i;10883:436::-;10976:4;10993:13;11009:12;:10;:12::i;:::-;10993:28;;11032:24;11059:25;11069:5;11076:7;11059:9;:25::i;:::-;11032:52;;11123:15;11103:16;:35;;11095:85;;;;-1:-1:-1;;;11095:85:0;;;;;;;:::i;:::-;;;;;;;;;11216:60;11225:5;11232:7;11260:15;11241:16;:34;11216:8;:60::i;7964:193::-;8043:4;8060:13;8076:12;:10;:12::i;:::-;8060:28;;8099;8109:5;8116:2;8120:6;8099:9;:28::i;51303:154::-;51395:5;;-1:-1:-1;;;;;51395:5:0;51381:10;:19;51373:28;;;;;;51414:18;:35;51303:154::o;50273:57::-;;;;;;;;;;;;;;;:::o;55268:203::-;55346:5;;-1:-1:-1;;;;;55346:5:0;55332:10;:19;55324:28;;;;;;55381:24;55399:4;55381:9;:24::i;:::-;55371:6;:34;;:48;;;;;55418:1;55409:6;:10;55371:48;55363:73;;;;-1:-1:-1;;;55363:73:0;;;;;;;:::i;:::-;55447:16;55456:6;55447:8;:16::i;:::-;55268:203;:::o;54513:157::-;54608:5;;-1:-1:-1;;;;;54608:5:0;54594:10;:19;54586:28;;;;;;-1:-1:-1;;;;;54625:29:0;;;;;;;;:19;:29;;;;;:37;;-1:-1:-1;;54625:37:0;;;;;;;;;;54513:157::o;54251:134::-;54327:5;;-1:-1:-1;;;;;54327:5:0;54313:10;:19;54305:28;;;;;;54344:7;:33;;-1:-1:-1;;;;;;54344:33:0;-1:-1:-1;;;;;54344:33:0;;;;;;;;;;54251:134::o;54800:318::-;54839:7;54859:15;54904:11;;54918:1;54904:15;;;;:::i;:::-;54888:12;:31;54885:201;;-1:-1:-1;54946:2:0;54885:201;;;54985:11;;:16;;54999:2;54985:16;:::i;:::-;54969:12;:32;54966:120;;-1:-1:-1;55028:2:0;54966:120;;;-1:-1:-1;55073:1:0;54966:120;55103:7;-1:-1:-1;54800:318:0;:::o;54678:114::-;54745:5;;-1:-1:-1;;;;;54745:5:0;54731:10;:19;54723:28;;;;;;54762:14;:22;;-1:-1:-1;;54762:22:0;;;54678:114::o;8220:151::-;-1:-1:-1;;;;;8336:18:0;;;8309:7;8336:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8220:151::o;50156:51::-;;;;;;;;;;;;;;;:::o;55479:240::-;55596:5;;-1:-1:-1;;;;;55596:5:0;55582:10;:19;55574:28;;;;;;55655:5;;55625:45;;-1:-1:-1;;;55625:45:0;;55613:9;;-1:-1:-1;;;;;55625:29:0;;;;;;:45;;55655:5;;55662:7;;55625:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55613:57;;55689:4;55681:32;;;;-1:-1:-1;;;55681:32:0;;;;;;;:::i;:::-;55479:240;;;:::o;50339:32::-;;;-1:-1:-1;;;;;50339:32:0;;:::o;49783:24::-;;;;:::o;4074:98::-;4154:10;4074:98;:::o;14876:346::-;-1:-1:-1;;;;;14978:19:0;;14970:68;;;;-1:-1:-1;;;14970:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15057:21:0;;15049:68;;;;-1:-1:-1;;;15049:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15130:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15182:32;;;;;15160:6;;15182:32;:::i;:::-;;;;;;;;14876:346;;;:::o;15513:419::-;15614:24;15641:25;15651:5;15658:7;15641:9;:25::i;:::-;15614:52;;-1:-1:-1;;15681:16:0;:37;15677:248;;15763:6;15743:16;:26;;15735:68;;;;-1:-1:-1;;;15735:68:0;;;;;;;:::i;:::-;15847:51;15856:5;15863:7;15891:6;15872:16;:25;15847:8;:51::i;:::-;15513:419;;;;:::o;51465:1900::-;-1:-1:-1;;;;;51561:18:0;;51553:68;;;;-1:-1:-1;;;51553:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51638:16:0;;51630:64;;;;-1:-1:-1;;;51630:64:0;;;;;;;:::i;:::-;51709:11;51705:83;;51733:28;51749:4;51755:2;51759:1;51733:15;:28::i;:::-;51772:7;;51705:83;51802:14;;;;;;;51798:684;;;51841:5;;-1:-1:-1;;;;;51833:13:0;;;51841:5;;51833:13;;;;:28;;-1:-1:-1;51856:5:0;;-1:-1:-1;;;;;51850:11:0;;;51856:5;;51850:11;;51833:28;:48;;;;-1:-1:-1;;;;;;51865:16:0;;;;51833:48;:73;;;;-1:-1:-1;;;;;;51885:21:0;;51899:6;51885:21;;51833:73;:86;;;;-1:-1:-1;51911:8:0;;;;;;;51910:9;51833:86;51829:644;;;51939:13;;;;51934:136;;-1:-1:-1;;;;;51977:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;52006:23:0;;;;;;:19;:23;;;;;;;;51977:52;51969:87;;;;-1:-1:-1;;;51969:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52106:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;52142:24:0;;;;;;:20;:24;;;;;;;;52141:25;52106:60;52102:360;;;52217:9;;52200:13;52210:2;52200:9;:13::i;:::-;52191:22;;:6;:22;:::i;:::-;:35;;52183:67;;;;-1:-1:-1;;;52183:67:0;;;;;;;:::i;:::-;52102:360;;;-1:-1:-1;;;;;52304:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;52338:26:0;;;;;;:20;:26;;;;;;;;52337:27;52304:60;52300:162;;;52415:9;;52398:13;52408:2;52398:9;:13::i;:::-;52389:22;;:6;:22;:::i;:::-;:35;;52381:67;;;;-1:-1:-1;;;52381:67:0;;;;;;;:::i;:::-;52492:28;52523:24;52541:4;52523:9;:24::i;:::-;52597:18;;52492:55;;-1:-1:-1;52573:42:0;;;;;;;52640:31;;-1:-1:-1;52660:11:0;;;;;;;52640:31;:53;;;;-1:-1:-1;52685:8:0;;;;;;;52684:9;52640:53;:98;;;;-1:-1:-1;;;;;;52707:31:0;;;;;;:25;:31;;;;;;;;52706:32;52640:98;:137;;;;-1:-1:-1;;;;;;52752:25:0;;;;;;:19;:25;;;;;;;;52751:26;52640:137;:174;;;;-1:-1:-1;;;;;;52791:23:0;;;;;;:19;:23;;;;;;;;52790:24;52640:174;52626:327;;;52835:8;:15;;-1:-1:-1;;52835:15:0;;;;;52896:18;;52861:55;;52870:45;;52874:20;;52870:3;:45::i;:::-;52861:8;:55::i;:::-;52927:8;:16;;-1:-1:-1;;52927:16:0;;;52626:327;52979:8;;-1:-1:-1;;;;;53002:25:0;;52963:12;53002:25;;;:19;:25;;;;;;52979:8;;;;;;;52978:9;;53002:25;;:52;;-1:-1:-1;;;;;;53031:23:0;;;;;;:19;:23;;;;;;;;53002:52;52998:94;;;-1:-1:-1;53077:5:0;52998:94;53102:12;53133:7;53129:185;;;53183:3;53171:9;:7;:9::i;:::-;53162:18;;:6;:18;:::i;:::-;:24;;;;:::i;:::-;53155:31;-1:-1:-1;53203:8:0;;53199:81;;53226:42;53242:4;53256;53263;53226:15;:42::i;:::-;53290:14;53300:4;53290:14;;:::i;:::-;;;53129:185;53324:33;53340:4;53346:2;53350:6;53324:15;:33::i;:::-;51465:1900;;;;;;;:::o;53905:334::-;53956:12;53983:11;53979:44;;54007:7;;;53979:44;54062:6;54077:36;54062:6;54077:16;:36::i;:::-;54195:5;;54187:44;;54143:21;;-1:-1:-1;;;;;54195:5:0;;54143:21;;54187:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11789:806;-1:-1:-1;;;;;11886:18:0;;11878:68;;;;-1:-1:-1;;;11878:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11965:16:0;;11957:64;;;;-1:-1:-1;;;11957:64:0;;;;;;;:::i;:::-;12034:38;12055:4;12061:2;12065:6;12034:20;:38::i;:::-;-1:-1:-1;;;;;12107:15:0;;12085:19;12107:15;;;;;;;;;;;12141:21;;;;12133:72;;;;-1:-1:-1;;;12133:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12241:15:0;;;:9;:15;;;;;;;;;;;12259:20;;;12241:38;;12459:13;;;;;;;;;;:23;;;;;;12511:26;;;;;;12273:6;;12511:26;:::i;:::-;;;;;;;;12550:37;12570:4;12576:2;12580:6;12550:19;:37::i;53373:105::-;53430:7;53460:1;53456;:5;53455:15;;53469:1;53455:15;;;53465:1;53455:15;53448:22;53373:105;-1:-1:-1;;;53373:105:0:o;53486:411::-;53574:16;;;53588:1;53574:16;;;;;;;;53550:21;;53574:16;;;;;;;;;;-1:-1:-1;53574:16:0;53550:40;;53617:4;53599;53604:1;53599:7;;;;;;-1:-1:-1;;;53599:7:0;;;;;;;;;-1:-1:-1;;;;;53599:23:0;;;:7;;;;;;;;;;:23;;;;53641:7;;:14;;;-1:-1:-1;;;53641:14:0;;;;:7;;;;;:12;;:14;;;;;53599:7;;53641:14;;;;;:7;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53631:4;53636:1;53631:7;;;;;;-1:-1:-1;;;53631:7:0;;;;;;;;;-1:-1:-1;;;;;53631:24:0;;;:7;;;;;;;;;:24;53698:7;;53666:54;;53683:4;;53698:7;53708:11;53666:8;:54::i;:::-;53731:7;;53849:5;;53731:158;;-1:-1:-1;;;53731:158:0;;-1:-1:-1;;;;;53731:7:0;;;;:58;;:158;;53800:11;;53731:7;;53834:4;;53849:5;;;53865:15;;53731:158;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53486:411;;:::o;14:138:1:-;84:20;;113:33;84:20;113:33;:::i;157:259::-;;269:2;257:9;248:7;244:23;240:32;237:2;;;290:6;282;275:22;237:2;334:9;321:23;353:33;380:5;353:33;:::i;421:263::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;565:6;557;550:22;512:2;602:9;596:16;621:33;648:5;621:33;:::i;689:402::-;;;818:2;806:9;797:7;793:23;789:32;786:2;;;839:6;831;824:22;786:2;883:9;870:23;902:33;929:5;902:33;:::i;:::-;954:5;-1:-1:-1;1011:2:1;996:18;;983:32;1024:35;983:32;1024:35;:::i;:::-;1078:7;1068:17;;;776:315;;;;;:::o;1096:470::-;;;;1242:2;1230:9;1221:7;1217:23;1213:32;1210:2;;;1263:6;1255;1248:22;1210:2;1307:9;1294:23;1326:33;1353:5;1326:33;:::i;:::-;1378:5;-1:-1:-1;1435:2:1;1420:18;;1407:32;1448:35;1407:32;1448:35;:::i;:::-;1200:366;;1502:7;;-1:-1:-1;;;1556:2:1;1541:18;;;;1528:32;;1200:366::o;1571:396::-;;;1697:2;1685:9;1676:7;1672:23;1668:32;1665:2;;;1718:6;1710;1703:22;1665:2;1762:9;1749:23;1781:33;1808:5;1781:33;:::i;:::-;1833:5;-1:-1:-1;1890:2:1;1875:18;;1862:32;1903;1862;1903;:::i;1972:327::-;;;2101:2;2089:9;2080:7;2076:23;2072:32;2069:2;;;2122:6;2114;2107:22;2069:2;2166:9;2153:23;2185:33;2212:5;2185:33;:::i;:::-;2237:5;2289:2;2274:18;;;;2261:32;;-1:-1:-1;;;2059:240:1:o;2304:1166::-;;2419:2;2462;2450:9;2441:7;2437:23;2433:32;2430:2;;;2483:6;2475;2468:22;2430:2;2528:9;2515:23;2557:18;2598:2;2590:6;2587:14;2584:2;;;2619:6;2611;2604:22;2584:2;2662:6;2651:9;2647:22;2637:32;;2707:7;2700:4;2696:2;2692:13;2688:27;2678:2;;2734:6;2726;2719:22;2678:2;2775;2762:16;2797:2;2793;2790:10;2787:2;;;2803:18;;:::i;:::-;2850:2;2846;2842:11;2882:2;2876:9;2933:2;2928;2920:6;2916:15;2912:24;2986:6;2974:10;2971:22;2966:2;2954:10;2951:18;2948:46;2945:2;;;2997:18;;:::i;:::-;3033:2;3026:22;3083:18;;;3117:15;;;;-1:-1:-1;3152:11:1;;;3182;;;3178:20;;3175:33;-1:-1:-1;3172:2:1;;;3226:6;3218;3211:22;3172:2;3253:6;3244:15;;3268:171;3282:2;3279:1;3276:9;3268:171;;;3339:25;3360:3;3339:25;:::i;:::-;3327:38;;3300:1;3293:9;;;;;3385:12;;;;3417;;3268:171;;;-1:-1:-1;3458:6:1;2399:1071;-1:-1:-1;;;;;;;;2399:1071:1:o;3475:253::-;;3584:2;3572:9;3563:7;3559:23;3555:32;3552:2;;;3605:6;3597;3590:22;3552:2;3649:9;3636:23;3668:30;3692:5;3668:30;:::i;3733:257::-;;3853:2;3841:9;3832:7;3828:23;3824:32;3821:2;;;3874:6;3866;3859:22;3821:2;3911:9;3905:16;3930:30;3954:5;3930:30;:::i;3995:190::-;;4107:2;4095:9;4086:7;4082:23;4078:32;4075:2;;;4128:6;4120;4113:22;4075:2;-1:-1:-1;4156:23:1;;4065:120;-1:-1:-1;4065:120:1:o;4190:205::-;4390:3;4381:14::o;4400:203::-;-1:-1:-1;;;;;4564:32:1;;;;4546:51;;4534:2;4519:18;;4501:102::o;4608:274::-;-1:-1:-1;;;;;4800:32:1;;;;4782:51;;4864:2;4849:18;;4842:34;4770:2;4755:18;;4737:145::o;4887:187::-;5052:14;;5045:22;5027:41;;5015:2;5000:18;;4982:92::o;5313:603::-;;5454:2;5483;5472:9;5465:21;5515:6;5509:13;5558:6;5553:2;5542:9;5538:18;5531:34;5583:4;5596:140;5610:6;5607:1;5604:13;5596:140;;;5705:14;;;5701:23;;5695:30;5671:17;;;5690:2;5667:26;5660:66;5625:10;;5596:140;;;5754:6;5751:1;5748:13;5745:2;;;5824:4;5819:2;5810:6;5799:9;5795:22;5791:31;5784:45;5745:2;-1:-1:-1;5900:2:1;5879:15;-1:-1:-1;;5875:29:1;5860:45;;;;5907:2;5856:54;;5434:482;-1:-1:-1;;;5434:482:1:o;5921:399::-;6123:2;6105:21;;;6162:2;6142:18;;;6135:30;6201:34;6196:2;6181:18;;6174:62;-1:-1:-1;;;6267:2:1;6252:18;;6245:33;6310:3;6295:19;;6095:225::o;6325:346::-;6527:2;6509:21;;;6566:2;6546:18;;;6539:30;-1:-1:-1;;;6600:2:1;6585:18;;6578:52;6662:2;6647:18;;6499:172::o;6676:398::-;6878:2;6860:21;;;6917:2;6897:18;;;6890:30;6956:34;6951:2;6936:18;;6929:62;-1:-1:-1;;;7022:2:1;7007:18;;7000:32;7064:3;7049:19;;6850:224::o;7079:339::-;7281:2;7263:21;;;7320:2;7300:18;;;7293:30;-1:-1:-1;;;7354:2:1;7339:18;;7332:45;7409:2;7394:18;;7253:165::o;7423:353::-;7625:2;7607:21;;;7664:2;7644:18;;;7637:30;7703:31;7698:2;7683:18;;7676:59;7767:2;7752:18;;7597:179::o;7781:402::-;7983:2;7965:21;;;8022:2;8002:18;;;7995:30;8061:34;8056:2;8041:18;;8034:62;-1:-1:-1;;;8127:2:1;8112:18;;8105:36;8173:3;8158:19;;7955:228::o;8188:401::-;8390:2;8372:21;;;8429:2;8409:18;;;8402:30;8468:34;8463:2;8448:18;;8441:62;-1:-1:-1;;;8534:2:1;8519:18;;8512:35;8579:3;8564:19;;8362:227::o;8594:400::-;8796:2;8778:21;;;8835:2;8815:18;;;8808:30;8874:34;8869:2;8854:18;;8847:62;-1:-1:-1;;;8940:2:1;8925:18;;8918:34;8984:3;8969:19;;8768:226::o;8999:343::-;9201:2;9183:21;;;9240:2;9220:18;;;9213:30;-1:-1:-1;;;9274:2:1;9259:18;;9252:49;9333:2;9318:18;;9173:169::o;9347:401::-;9549:2;9531:21;;;9588:2;9568:18;;;9561:30;9627:34;9622:2;9607:18;;9600:62;-1:-1:-1;;;9693:2:1;9678:18;;9671:35;9738:3;9723:19;;9521:227::o;9753:336::-;9955:2;9937:21;;;9994:2;9974:18;;;9967:30;-1:-1:-1;;;10028:2:1;10013:18;;10006:42;10080:2;10065:18;;9927:162::o;10094:177::-;10240:25;;;10228:2;10213:18;;10195:76::o;10276:983::-;;10586:3;10575:9;10571:19;10617:6;10606:9;10599:25;10643:2;10681:6;10676:2;10665:9;10661:18;10654:34;10724:3;10719:2;10708:9;10704:18;10697:31;10748:6;10783;10777:13;10814:6;10806;10799:22;10852:3;10841:9;10837:19;10830:26;;10891:2;10883:6;10879:15;10865:29;;10912:4;10925:195;10939:6;10936:1;10933:13;10925:195;;;11004:13;;-1:-1:-1;;;;;11000:39:1;10988:52;;11095:15;;;;11060:12;;;;11036:1;10954:9;10925:195;;;-1:-1:-1;;;;;;;11176:32:1;;;;11171:2;11156:18;;11149:60;-1:-1:-1;;;11240:3:1;11225:19;11218:35;11137:3;10547:712;-1:-1:-1;;;10547:712:1:o;11264:184::-;11436:4;11424:17;;;;11406:36;;11394:2;11379:18;;11361:87::o;11453:128::-;;11524:1;11520:6;11517:1;11514:13;11511:2;;;11530:18;;:::i;:::-;-1:-1:-1;11566:9:1;;11501:80::o;11586:217::-;;11652:1;11642:2;;-1:-1:-1;;;11677:31:1;;11731:4;11728:1;11721:15;11759:4;11684:1;11749:15;11642:2;-1:-1:-1;11788:9:1;;11632:171::o;11808:168::-;;11914:1;11910;11906:6;11902:14;11899:1;11896:21;11891:1;11884:9;11877:17;11873:45;11870:2;;;11921:18;;:::i;:::-;-1:-1:-1;11961:9:1;;11860:116::o;11981:125::-;;12049:1;12046;12043:8;12040:2;;;12054:18;;:::i;:::-;-1:-1:-1;12091:9:1;;12030:76::o;12111:380::-;12196:1;12186:12;;12243:1;12233:12;;;12254:2;;12308:4;12300:6;12296:17;12286:27;;12254:2;12361;12353:6;12350:14;12330:18;12327:38;12324:2;;;12407:10;12402:3;12398:20;12395:1;12388:31;12442:4;12439:1;12432:15;12470:4;12467:1;12460:15;12324:2;;12166:325;;;:::o;12496:135::-;;-1:-1:-1;;12556:17:1;;12553:2;;;12576:18;;:::i;:::-;-1:-1:-1;12623:1:1;12612:13;;12543:88::o;12636:127::-;12697:10;12692:3;12688:20;12685:1;12678:31;12728:4;12725:1;12718:15;12752:4;12749:1;12742:15;12768:127;12829:10;12824:3;12820:20;12817:1;12810:31;12860:4;12857:1;12850:15;12884:4;12881:1;12874:15;12900:133;-1:-1:-1;;;;;12977:31:1;;12967:42;;12957:2;;13023:1;13020;13013:12;13038:120;13126:5;13119:13;13112:21;13105:5;13102:32;13092:2;;13148:1;13145;13138:12

Swarm Source

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