ETH Price: $3,393.47 (+1.60%)
 

Overview

Max Total Supply

8,880,000,000 YYDS

Holders

120

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YYDSToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 9 : YYDSToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

/// @title YYDS: Yong Yuan De Shen Token
/// @notice Embrace the spirit of eternal greatness with YYDS, the token of legends.
contract YYDSToken is ERC20, Ownable {
    bool public tradingLive;
    uint256 private startOfTrade;

    address public marketingWallet;
    address public operationsWallet;
    address public futureAirdropWallet;
    address public devWallet;

    address public wethTokenAddress;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public constant MAX_TOKENS = 8_880_000_000 * 10 ** 18; // 8.88 billion tokens

    mapping(address => bool) private approvedAddresses;
    mapping(address => bool) public bannedUsers;

    constructor(
        address routerAddress,
        address wethAddr,
        address marketingAddr,
        address operationsAddr,
        address futureAirdropAddr,
        address devAddr
    ) ERC20("Yong Yuan De Shen", "YYDS") {
        wethTokenAddress = wethAddr;

        marketingWallet = marketingAddr;
        operationsWallet = operationsAddr;
        futureAirdropWallet = futureAirdropAddr;
        devWallet = devAddr;

        // Minting tokens based on the allocation strategy
        _mint(msg.sender, (MAX_TOKENS * 70) / 100); // 70% for Liquidity
        _mint(marketingWallet, (MAX_TOKENS * 10) / 100); // 10% for Marketing
        _mint(operationsWallet, (MAX_TOKENS * 10) / 100); // 10% for Operations
        _mint(futureAirdropWallet, (MAX_TOKENS * 5) / 100); // 5% for Future Airdrops
        _mint(devWallet, (MAX_TOKENS * 5) / 100); // 5% for the Dev Wallet

        // Setup Uniswap with the YYDS token
        uniswapV2Router = IUniswapV2Router02(routerAddress);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            wethAddr
        );

        // Whitelist essential addresses
        approvedAddresses[owner()] = true;
        approvedAddresses[address(this)] = true;
        approvedAddresses[routerAddress] = true;
        approvedAddresses[marketingWallet] = true;
        approvedAddresses[operationsWallet] = true;
        approvedAddresses[futureAirdropWallet] = true;
        approvedAddresses[devWallet] = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(sender != address(0), "Sender cannot be the zero address");
        require(!bannedUsers[sender], "Sender is in the hall of shame");
        require(!bannedUsers[recipient], "Recipient is in the hall of shame");

        if (approvedAddresses[sender] || approvedAddresses[recipient]) {
            super._transfer(sender, recipient, amount);
            return;
        }

        // Ensure trading is live before proceeding
        require(tradingLive, "The gates of trade are not yet open");

        // Special conditions for trading pairs
        if (recipient == uniswapV2Pair || sender == uniswapV2Pair) {
            // Apply a high tax to early trades to discourage sniper bots
            if (block.timestamp < startOfTrade + 5 minutes) {
                uint256 taxAmount = (amount * 99) / 100; // 99% tax
                uint256 taxedAmount = amount - taxAmount;

                // Redirect the tax to the reserve treasury
                super._transfer(sender, devWallet, taxAmount);

                // Complete the transaction for the remaining amount
                super._transfer(sender, recipient, taxedAmount);
            } else {
                // Proceed normally for transactions after the initial period
                super._transfer(sender, recipient, amount);
            }
        } else {
            // Standard transfer for non-trading pair transactions
            super._transfer(sender, recipient, amount);
        }
    }

    /// @notice Activates the gates of trading, allowing the flow of YYDS tokens
    function commenceTrading() external onlyOwner {
        tradingLive = true;
        startOfTrade = block.timestamp;
    }

    /// @notice Adds a list of unworthy addresses to the hall of shame
    /// @param accounts Array of addresses to be dishonored
    function addShame(address[] memory accounts) external onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            bannedUsers[accounts[i]] = true;
        }
    }

    /// @notice Redeems the honor of addresses, removing them from the hall of shame
    /// @param accounts Array of addresses to be reinstated in honor
    function removeShame(address[] memory accounts) external onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            bannedUsers[accounts[i]] = false;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 5 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 7 of 9 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 8 of 9 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

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

File 9 of 9 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"wethAddr","type":"address"},{"internalType":"address","name":"marketingAddr","type":"address"},{"internalType":"address","name":"operationsAddr","type":"address"},{"internalType":"address","name":"futureAirdropAddr","type":"address"},{"internalType":"address","name":"devAddr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addShame","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bannedUsers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"commenceTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"futureAirdropWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeShame","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wethTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620035db380380620035db833981810160405281019062000037919062000b53565b6040518060400160405280601181526020017f596f6e67205975616e204465205368656e0000000000000000000000000000008152506040518060400160405280600481526020017f59594453000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000e69565b508060049081620000c6919062000e69565b505050620000e9620000dd6200087a60201b60201c565b6200088260201b60201c565b84600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200026833606460466b1cb15d24956472c0b000000062000250919062000f7f565b6200025c919062000ff9565b6200094860201b60201c565b620002c4600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600a6b1cb15d24956472c0b0000000620002ac919062000f7f565b620002b8919062000ff9565b6200094860201b60201c565b62000320600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600a6b1cb15d24956472c0b000000062000308919062000f7f565b62000314919062000ff9565b6200094860201b60201c565b6200037c600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056b1cb15d24956472c0b000000062000364919062000f7f565b62000370919062000ff9565b6200094860201b60201c565b620003d8600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606460056b1cb15d24956472c0b0000000620003c0919062000f7f565b620003cc919062000ff9565b6200094860201b60201c565b85600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000487573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ad919062001031565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630876040518363ffffffff1660e01b8152600401620004e992919062001074565b6020604051808303816000875af115801562000509573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200052f919062001031565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60006200058562000ab560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050506200118d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b19062001102565b60405180910390fd5b620009ce6000838362000adf60201b60201c565b8060026000828254620009e2919062001124565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a95919062001170565b60405180910390a362000ab16000838362000ae460201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b1b8262000aee565b9050919050565b62000b2d8162000b0e565b811462000b3957600080fd5b50565b60008151905062000b4d8162000b22565b92915050565b60008060008060008060c0878903121562000b735762000b7262000ae9565b5b600062000b8389828a0162000b3c565b965050602062000b9689828a0162000b3c565b955050604062000ba989828a0162000b3c565b945050606062000bbc89828a0162000b3c565b935050608062000bcf89828a0162000b3c565b92505060a062000be289828a0162000b3c565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7157607f821691505b60208210810362000c875762000c8662000c29565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cf17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb2565b62000cfd868362000cb2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d4a62000d4462000d3e8462000d15565b62000d1f565b62000d15565b9050919050565b6000819050919050565b62000d668362000d29565b62000d7e62000d758262000d51565b84845462000cbf565b825550505050565b600090565b62000d9562000d86565b62000da281848462000d5b565b505050565b5b8181101562000dca5762000dbe60008262000d8b565b60018101905062000da8565b5050565b601f82111562000e195762000de38162000c8d565b62000dee8462000ca2565b8101602085101562000dfe578190505b62000e1662000e0d8562000ca2565b83018262000da7565b50505b505050565b600082821c905092915050565b600062000e3e6000198460080262000e1e565b1980831691505092915050565b600062000e59838362000e2b565b9150826002028217905092915050565b62000e748262000bef565b67ffffffffffffffff81111562000e905762000e8f62000bfa565b5b62000e9c825462000c58565b62000ea982828562000dce565b600060209050601f83116001811462000ee1576000841562000ecc578287015190505b62000ed8858262000e4b565b86555062000f48565b601f19841662000ef18662000c8d565b60005b8281101562000f1b5784890151825560018201915060208501945060208101905062000ef4565b8683101562000f3b578489015162000f37601f89168262000e2b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f8c8262000d15565b915062000f998362000d15565b925082820262000fa98162000d15565b9150828204841483151762000fc35762000fc262000f50565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010068262000d15565b9150620010138362000d15565b92508262001026576200102562000fca565b5b828204905092915050565b6000602082840312156200104a576200104962000ae9565b5b60006200105a8482850162000b3c565b91505092915050565b6200106e8162000b0e565b82525050565b60006040820190506200108b600083018562001063565b6200109a602083018462001063565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ea601f83620010a1565b9150620010f782620010b2565b602082019050919050565b600060208201905081810360008301526200111d81620010db565b9050919050565b6000620011318262000d15565b91506200113e8362000d15565b925082820190508082111562001159576200115862000f50565b5b92915050565b6200116a8162000d15565b82525050565b60006020820190506200118760008301846200115f565b92915050565b61243e806200119d6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063e8b5536d11610071578063e8b5536d146104c6578063f2fde38b146104e2578063f47c84c5146104fe578063fd72e22a1461051c576101a9565b8063a457c2d714610436578063a9059cbb14610466578063dd62ed3e14610496576101a9565b80638988d078116100d35780638988d078146103ac5780638da5cb5b146103dc5780638ea5220f146103fa57806395d89b4114610418576101a9565b806370a0823114610354578063715018a61461038457806375f0a8741461038e576101a9565b806323b872dd11610166578063395093511161014057806339509351146102e05780633e0655a31461031057806345f012381461031a57806349bd5a5e14610336576101a9565b806323b872dd146102745780632ea7f75e146102a4578063313ce567146102c2576101a9565b806306fdde03146101ae578063095ea7b3146101cc5780630f9dad71146101fc57806311704f521461021a5780631694505e1461023857806318160ddd14610256575b600080fd5b6101b661053a565b6040516101c3919061166a565b60405180910390f35b6101e660048036038101906101e19190611734565b6105cc565b6040516101f3919061178f565b60405180910390f35b6102046105ef565b60405161021191906117b9565b60405180910390f35b610222610615565b60405161022f919061178f565b60405180910390f35b610240610628565b60405161024d9190611833565b60405180910390f35b61025e61064e565b60405161026b919061185d565b60405180910390f35b61028e60048036038101906102899190611878565b610658565b60405161029b919061178f565b60405180910390f35b6102ac610687565b6040516102b991906117b9565b60405180910390f35b6102ca6106ad565b6040516102d791906118e7565b60405180910390f35b6102fa60048036038101906102f59190611734565b6106b6565b604051610307919061178f565b60405180910390f35b6103186106ed565b005b610334600480360381019061032f9190611a4a565b610719565b005b61033e6107b6565b60405161034b91906117b9565b60405180910390f35b61036e60048036038101906103699190611a93565b6107dc565b60405161037b919061185d565b60405180910390f35b61038c610824565b005b610396610838565b6040516103a391906117b9565b60405180910390f35b6103c660048036038101906103c19190611a93565b61085e565b6040516103d3919061178f565b60405180910390f35b6103e461087e565b6040516103f191906117b9565b60405180910390f35b6104026108a8565b60405161040f91906117b9565b60405180910390f35b6104206108ce565b60405161042d919061166a565b60405180910390f35b610450600480360381019061044b9190611734565b610960565b60405161045d919061178f565b60405180910390f35b610480600480360381019061047b9190611734565b6109d7565b60405161048d919061178f565b60405180910390f35b6104b060048036038101906104ab9190611ac0565b6109fa565b6040516104bd919061185d565b60405180910390f35b6104e060048036038101906104db9190611a4a565b610a81565b005b6104fc60048036038101906104f79190611a93565b610b1e565b005b610506610ba1565b604051610513919061185d565b60405180910390f35b610524610bb1565b60405161053191906117b9565b60405180910390f35b60606003805461054990611b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461057590611b2f565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b6000806105d7610bd7565b90506105e4818585610bdf565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560149054906101000a900460ff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610663610bd7565b9050610670858285610da8565b61067b858585610e34565b60019150509392505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6000806106c1610bd7565b90506106e28185856106d385896109fa565b6106dd9190611b8f565b610bdf565b600191505092915050565b6106f5611216565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b610721611216565b60005b81518110156107b2576001600f600084848151811061074657610745611bc3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107aa90611bf2565b915050610724565b5050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61082c611216565b6108366000611294565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546108dd90611b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461090990611b2f565b80156109565780601f1061092b57610100808354040283529160200191610956565b820191906000526020600020905b81548152906001019060200180831161093957829003601f168201915b5050505050905090565b60008061096b610bd7565b9050600061097982866109fa565b9050838110156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590611cac565b60405180910390fd5b6109cb8286868403610bdf565b60019250505092915050565b6000806109e2610bd7565b90506109ef818585610e34565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a89611216565b60005b8151811015610b1a576000600f6000848481518110610aae57610aad611bc3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b1290611bf2565b915050610a8c565b5050565b610b26611216565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90611d3e565b60405180910390fd5b610b9e81611294565b50565b6b1cb15d24956472c0b000000081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590611dd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490611e62565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9b919061185d565b60405180910390a3505050565b6000610db484846109fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e2e5781811015610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611ece565b60405180910390fd5b610e2d8484848403610bdf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90611f60565b60405180910390fd5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611fcc565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb49061205e565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061105e5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110735761106e83838361135a565b611211565b600560149054906101000a900460ff166110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906120f0565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061116b5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156112045761012c6006546111809190611b8f565b4210156111f357600060646063836111989190612110565b6111a29190612181565b9050600081836111b291906121b2565b90506111e185600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461135a565b6111ec85858361135a565b50506111ff565b6111fe83838361135a565b5b611210565b61120f83838361135a565b5b5b505050565b61121e610bd7565b73ffffffffffffffffffffffffffffffffffffffff1661123c61087e565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612232565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906122c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612356565b60405180910390fd5b6114438383836115d0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906123e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115b7919061185d565b60405180910390a36115ca8484846115d5565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116145780820151818401526020810190506115f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061163c826115da565b61164681856115e5565b93506116568185602086016115f6565b61165f81611620565b840191505092915050565b600060208201905081810360008301526116848184611631565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116cb826116a0565b9050919050565b6116db816116c0565b81146116e657600080fd5b50565b6000813590506116f8816116d2565b92915050565b6000819050919050565b611711816116fe565b811461171c57600080fd5b50565b60008135905061172e81611708565b92915050565b6000806040838503121561174b5761174a611696565b5b6000611759858286016116e9565b925050602061176a8582860161171f565b9150509250929050565b60008115159050919050565b61178981611774565b82525050565b60006020820190506117a46000830184611780565b92915050565b6117b3816116c0565b82525050565b60006020820190506117ce60008301846117aa565b92915050565b6000819050919050565b60006117f96117f46117ef846116a0565b6117d4565b6116a0565b9050919050565b600061180b826117de565b9050919050565b600061181d82611800565b9050919050565b61182d81611812565b82525050565b60006020820190506118486000830184611824565b92915050565b611857816116fe565b82525050565b6000602082019050611872600083018461184e565b92915050565b60008060006060848603121561189157611890611696565b5b600061189f868287016116e9565b93505060206118b0868287016116e9565b92505060406118c18682870161171f565b9150509250925092565b600060ff82169050919050565b6118e1816118cb565b82525050565b60006020820190506118fc60008301846118d8565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61193f82611620565b810181811067ffffffffffffffff8211171561195e5761195d611907565b5b80604052505050565b600061197161168c565b905061197d8282611936565b919050565b600067ffffffffffffffff82111561199d5761199c611907565b5b602082029050602081019050919050565b600080fd5b60006119c66119c184611982565b611967565b905080838252602082019050602084028301858111156119e9576119e86119ae565b5b835b81811015611a1257806119fe88826116e9565b8452602084019350506020810190506119eb565b5050509392505050565b600082601f830112611a3157611a30611902565b5b8135611a418482602086016119b3565b91505092915050565b600060208284031215611a6057611a5f611696565b5b600082013567ffffffffffffffff811115611a7e57611a7d61169b565b5b611a8a84828501611a1c565b91505092915050565b600060208284031215611aa957611aa8611696565b5b6000611ab7848285016116e9565b91505092915050565b60008060408385031215611ad757611ad6611696565b5b6000611ae5858286016116e9565b9250506020611af6858286016116e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4757607f821691505b602082108103611b5a57611b59611b00565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b9a826116fe565b9150611ba5836116fe565b9250828201905080821115611bbd57611bbc611b60565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611bfd826116fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c2f57611c2e611b60565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c966025836115e5565b9150611ca182611c3a565b604082019050919050565b60006020820190508181036000830152611cc581611c89565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d286026836115e5565b9150611d3382611ccc565b604082019050919050565b60006020820190508181036000830152611d5781611d1b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611dba6024836115e5565b9150611dc582611d5e565b604082019050919050565b60006020820190508181036000830152611de981611dad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4c6022836115e5565b9150611e5782611df0565b604082019050919050565b60006020820190508181036000830152611e7b81611e3f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611eb8601d836115e5565b9150611ec382611e82565b602082019050919050565b60006020820190508181036000830152611ee781611eab565b9050919050565b7f53656e6465722063616e6e6f7420626520746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4a6021836115e5565b9150611f5582611eee565b604082019050919050565b60006020820190508181036000830152611f7981611f3d565b9050919050565b7f53656e64657220697320696e207468652068616c6c206f66207368616d650000600082015250565b6000611fb6601e836115e5565b9150611fc182611f80565b602082019050919050565b60006020820190508181036000830152611fe581611fa9565b9050919050565b7f526563697069656e7420697320696e207468652068616c6c206f66207368616d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006120486021836115e5565b915061205382611fec565b604082019050919050565b600060208201905081810360008301526120778161203b565b9050919050565b7f546865206761746573206f6620747261646520617265206e6f7420796574206f60008201527f70656e0000000000000000000000000000000000000000000000000000000000602082015250565b60006120da6023836115e5565b91506120e58261207e565b604082019050919050565b60006020820190508181036000830152612109816120cd565b9050919050565b600061211b826116fe565b9150612126836116fe565b9250828202612134816116fe565b9150828204841483151761214b5761214a611b60565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061218c826116fe565b9150612197836116fe565b9250826121a7576121a6612152565b5b828204905092915050565b60006121bd826116fe565b91506121c8836116fe565b92508282039050818111156121e0576121df611b60565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061221c6020836115e5565b9150612227826121e6565b602082019050919050565b6000602082019050818103600083015261224b8161220f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122ae6025836115e5565b91506122b982612252565b604082019050919050565b600060208201905081810360008301526122dd816122a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123406023836115e5565b915061234b826122e4565b604082019050919050565b6000602082019050818103600083015261236f81612333565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123d26026836115e5565b91506123dd82612376565b604082019050919050565b60006020820190508181036000830152612401816123c5565b905091905056fea264697066735822122047951816f21374b2df948b8f2856ea65ba6ddfe3941d76766b804856fb040d2d64736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000017c0a207458b7114e3998af16c3d797745506179000000000000000000000000146a16155307e47c70f8fee45008a7b311cc4ddf00000000000000000000000013cf56c50daf79dfb3e8263bf5642b2eefd0fea4000000000000000000000000eab5877a3f7c9dde11d38611db0d548f93e2efe3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063e8b5536d11610071578063e8b5536d146104c6578063f2fde38b146104e2578063f47c84c5146104fe578063fd72e22a1461051c576101a9565b8063a457c2d714610436578063a9059cbb14610466578063dd62ed3e14610496576101a9565b80638988d078116100d35780638988d078146103ac5780638da5cb5b146103dc5780638ea5220f146103fa57806395d89b4114610418576101a9565b806370a0823114610354578063715018a61461038457806375f0a8741461038e576101a9565b806323b872dd11610166578063395093511161014057806339509351146102e05780633e0655a31461031057806345f012381461031a57806349bd5a5e14610336576101a9565b806323b872dd146102745780632ea7f75e146102a4578063313ce567146102c2576101a9565b806306fdde03146101ae578063095ea7b3146101cc5780630f9dad71146101fc57806311704f521461021a5780631694505e1461023857806318160ddd14610256575b600080fd5b6101b661053a565b6040516101c3919061166a565b60405180910390f35b6101e660048036038101906101e19190611734565b6105cc565b6040516101f3919061178f565b60405180910390f35b6102046105ef565b60405161021191906117b9565b60405180910390f35b610222610615565b60405161022f919061178f565b60405180910390f35b610240610628565b60405161024d9190611833565b60405180910390f35b61025e61064e565b60405161026b919061185d565b60405180910390f35b61028e60048036038101906102899190611878565b610658565b60405161029b919061178f565b60405180910390f35b6102ac610687565b6040516102b991906117b9565b60405180910390f35b6102ca6106ad565b6040516102d791906118e7565b60405180910390f35b6102fa60048036038101906102f59190611734565b6106b6565b604051610307919061178f565b60405180910390f35b6103186106ed565b005b610334600480360381019061032f9190611a4a565b610719565b005b61033e6107b6565b60405161034b91906117b9565b60405180910390f35b61036e60048036038101906103699190611a93565b6107dc565b60405161037b919061185d565b60405180910390f35b61038c610824565b005b610396610838565b6040516103a391906117b9565b60405180910390f35b6103c660048036038101906103c19190611a93565b61085e565b6040516103d3919061178f565b60405180910390f35b6103e461087e565b6040516103f191906117b9565b60405180910390f35b6104026108a8565b60405161040f91906117b9565b60405180910390f35b6104206108ce565b60405161042d919061166a565b60405180910390f35b610450600480360381019061044b9190611734565b610960565b60405161045d919061178f565b60405180910390f35b610480600480360381019061047b9190611734565b6109d7565b60405161048d919061178f565b60405180910390f35b6104b060048036038101906104ab9190611ac0565b6109fa565b6040516104bd919061185d565b60405180910390f35b6104e060048036038101906104db9190611a4a565b610a81565b005b6104fc60048036038101906104f79190611a93565b610b1e565b005b610506610ba1565b604051610513919061185d565b60405180910390f35b610524610bb1565b60405161053191906117b9565b60405180910390f35b60606003805461054990611b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461057590611b2f565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b6000806105d7610bd7565b90506105e4818585610bdf565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560149054906101000a900460ff1681565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610663610bd7565b9050610670858285610da8565b61067b858585610e34565b60019150509392505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b6000806106c1610bd7565b90506106e28185856106d385896109fa565b6106dd9190611b8f565b610bdf565b600191505092915050565b6106f5611216565b6001600560146101000a81548160ff02191690831515021790555042600681905550565b610721611216565b60005b81518110156107b2576001600f600084848151811061074657610745611bc3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107aa90611bf2565b915050610724565b5050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61082c611216565b6108366000611294565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546108dd90611b2f565b80601f016020809104026020016040519081016040528092919081815260200182805461090990611b2f565b80156109565780601f1061092b57610100808354040283529160200191610956565b820191906000526020600020905b81548152906001019060200180831161093957829003601f168201915b5050505050905090565b60008061096b610bd7565b9050600061097982866109fa565b9050838110156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590611cac565b60405180910390fd5b6109cb8286868403610bdf565b60019250505092915050565b6000806109e2610bd7565b90506109ef818585610e34565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a89611216565b60005b8151811015610b1a576000600f6000848481518110610aae57610aad611bc3565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b1290611bf2565b915050610a8c565b5050565b610b26611216565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c90611d3e565b60405180910390fd5b610b9e81611294565b50565b6b1cb15d24956472c0b000000081565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4590611dd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490611e62565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d9b919061185d565b60405180910390a3505050565b6000610db484846109fa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e2e5781811015610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790611ece565b60405180910390fd5b610e2d8484848403610bdf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a90611f60565b60405180910390fd5b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790611fcc565b60405180910390fd5b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb49061205e565b60405180910390fd5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061105e5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110735761106e83838361135a565b611211565b600560149054906101000a900460ff166110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b9906120f0565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061116b5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156112045761012c6006546111809190611b8f565b4210156111f357600060646063836111989190612110565b6111a29190612181565b9050600081836111b291906121b2565b90506111e185600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461135a565b6111ec85858361135a565b50506111ff565b6111fe83838361135a565b5b611210565b61120f83838361135a565b5b5b505050565b61121e610bd7565b73ffffffffffffffffffffffffffffffffffffffff1661123c61087e565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612232565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906122c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90612356565b60405180910390fd5b6114438383836115d0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906123e8565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115b7919061185d565b60405180910390a36115ca8484846115d5565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116145780820151818401526020810190506115f9565b60008484015250505050565b6000601f19601f8301169050919050565b600061163c826115da565b61164681856115e5565b93506116568185602086016115f6565b61165f81611620565b840191505092915050565b600060208201905081810360008301526116848184611631565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116cb826116a0565b9050919050565b6116db816116c0565b81146116e657600080fd5b50565b6000813590506116f8816116d2565b92915050565b6000819050919050565b611711816116fe565b811461171c57600080fd5b50565b60008135905061172e81611708565b92915050565b6000806040838503121561174b5761174a611696565b5b6000611759858286016116e9565b925050602061176a8582860161171f565b9150509250929050565b60008115159050919050565b61178981611774565b82525050565b60006020820190506117a46000830184611780565b92915050565b6117b3816116c0565b82525050565b60006020820190506117ce60008301846117aa565b92915050565b6000819050919050565b60006117f96117f46117ef846116a0565b6117d4565b6116a0565b9050919050565b600061180b826117de565b9050919050565b600061181d82611800565b9050919050565b61182d81611812565b82525050565b60006020820190506118486000830184611824565b92915050565b611857816116fe565b82525050565b6000602082019050611872600083018461184e565b92915050565b60008060006060848603121561189157611890611696565b5b600061189f868287016116e9565b93505060206118b0868287016116e9565b92505060406118c18682870161171f565b9150509250925092565b600060ff82169050919050565b6118e1816118cb565b82525050565b60006020820190506118fc60008301846118d8565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61193f82611620565b810181811067ffffffffffffffff8211171561195e5761195d611907565b5b80604052505050565b600061197161168c565b905061197d8282611936565b919050565b600067ffffffffffffffff82111561199d5761199c611907565b5b602082029050602081019050919050565b600080fd5b60006119c66119c184611982565b611967565b905080838252602082019050602084028301858111156119e9576119e86119ae565b5b835b81811015611a1257806119fe88826116e9565b8452602084019350506020810190506119eb565b5050509392505050565b600082601f830112611a3157611a30611902565b5b8135611a418482602086016119b3565b91505092915050565b600060208284031215611a6057611a5f611696565b5b600082013567ffffffffffffffff811115611a7e57611a7d61169b565b5b611a8a84828501611a1c565b91505092915050565b600060208284031215611aa957611aa8611696565b5b6000611ab7848285016116e9565b91505092915050565b60008060408385031215611ad757611ad6611696565b5b6000611ae5858286016116e9565b9250506020611af6858286016116e9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611b4757607f821691505b602082108103611b5a57611b59611b00565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b9a826116fe565b9150611ba5836116fe565b9250828201905080821115611bbd57611bbc611b60565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611bfd826116fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611c2f57611c2e611b60565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c966025836115e5565b9150611ca182611c3a565b604082019050919050565b60006020820190508181036000830152611cc581611c89565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d286026836115e5565b9150611d3382611ccc565b604082019050919050565b60006020820190508181036000830152611d5781611d1b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611dba6024836115e5565b9150611dc582611d5e565b604082019050919050565b60006020820190508181036000830152611de981611dad565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4c6022836115e5565b9150611e5782611df0565b604082019050919050565b60006020820190508181036000830152611e7b81611e3f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611eb8601d836115e5565b9150611ec382611e82565b602082019050919050565b60006020820190508181036000830152611ee781611eab565b9050919050565b7f53656e6465722063616e6e6f7420626520746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f4a6021836115e5565b9150611f5582611eee565b604082019050919050565b60006020820190508181036000830152611f7981611f3d565b9050919050565b7f53656e64657220697320696e207468652068616c6c206f66207368616d650000600082015250565b6000611fb6601e836115e5565b9150611fc182611f80565b602082019050919050565b60006020820190508181036000830152611fe581611fa9565b9050919050565b7f526563697069656e7420697320696e207468652068616c6c206f66207368616d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006120486021836115e5565b915061205382611fec565b604082019050919050565b600060208201905081810360008301526120778161203b565b9050919050565b7f546865206761746573206f6620747261646520617265206e6f7420796574206f60008201527f70656e0000000000000000000000000000000000000000000000000000000000602082015250565b60006120da6023836115e5565b91506120e58261207e565b604082019050919050565b60006020820190508181036000830152612109816120cd565b9050919050565b600061211b826116fe565b9150612126836116fe565b9250828202612134816116fe565b9150828204841483151761214b5761214a611b60565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061218c826116fe565b9150612197836116fe565b9250826121a7576121a6612152565b5b828204905092915050565b60006121bd826116fe565b91506121c8836116fe565b92508282039050818111156121e0576121df611b60565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061221c6020836115e5565b9150612227826121e6565b602082019050919050565b6000602082019050818103600083015261224b8161220f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122ae6025836115e5565b91506122b982612252565b604082019050919050565b600060208201905081810360008301526122dd816122a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006123406023836115e5565b915061234b826122e4565b604082019050919050565b6000602082019050818103600083015261236f81612333565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006123d26026836115e5565b91506123dd82612376565b604082019050919050565b60006020820190508181036000830152612401816123c5565b905091905056fea264697066735822122047951816f21374b2df948b8f2856ea65ba6ddfe3941d76766b804856fb040d2d64736f6c63430008140033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000017c0a207458b7114e3998af16c3d797745506179000000000000000000000000146a16155307e47c70f8fee45008a7b311cc4ddf00000000000000000000000013cf56c50daf79dfb3e8263bf5642b2eefd0fea4000000000000000000000000eab5877a3f7c9dde11d38611db0d548f93e2efe3

-----Decoded View---------------
Arg [0] : routerAddress (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : wethAddr (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [2] : marketingAddr (address): 0x17c0A207458b7114e3998af16c3D797745506179
Arg [3] : operationsAddr (address): 0x146A16155307e47C70f8fEE45008a7b311Cc4ddf
Arg [4] : futureAirdropAddr (address): 0x13CF56C50dAf79dFB3e8263BF5642b2EEfd0Fea4
Arg [5] : devAddr (address): 0xeaB5877A3f7c9dDE11d38611Db0D548F93E2Efe3

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [2] : 00000000000000000000000017c0a207458b7114e3998af16c3d797745506179
Arg [3] : 000000000000000000000000146a16155307e47c70f8fee45008a7b311cc4ddf
Arg [4] : 00000000000000000000000013cf56c50daf79dfb3e8263bf5642b2eefd0fea4
Arg [5] : 000000000000000000000000eab5877a3f7c9dde11d38611db0d548f93e2efe3


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.