ETH Price: $3,383.97 (-1.83%)
Gas: 3 Gwei

Token

EcoTool (ETO)
 

Overview

Max Total Supply

99,265,633.534996740628960143 ETO

Holders

386 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 ETO

Value
$0.00
0xe69df133fb7cb2efebd9f63b9d48262bc542fa5a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

EcoTool is a groundbreaking trading bot that uses an ecosystem of strategies to continuously monitor the market and look for specific patterns, signals, or indicators aligned with its programmed strategies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EcoTool

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-23
*/

// ███████╗ ██████╗ ██████╗ ████████╗ ██████╗  ██████╗ ██╗        ██╗ ██████╗ 
// ██╔════╝██╔════╝██╔═══██╗╚══██╔══╝██╔═══██╗██╔═══██╗██║        ██║██╔═══██╗
// █████╗  ██║     ██║   ██║   ██║   ██║   ██║██║   ██║██║        ██║██║   ██║
// ██╔══╝  ██║     ██║   ██║   ██║   ██║   ██║██║   ██║██║        ██║██║   ██║
// ███████╗╚██████╗╚██████╔╝   ██║   ╚██████╔╝╚██████╔╝███████╗██╗██║╚██████╔╝
// ╚══════╝ ╚═════╝ ╚═════╝    ╚═╝    ╚═════╝  ╚═════╝ ╚══════╝╚═╝╚═╝ ╚═════╝ 
                                                                           
                                                                      
// File: @openzeppelin\contracts\utils\math\SafeMath.sol

// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin\contracts\utils\structs\EnumerableSet.sol

// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: @openzeppelin\contracts\token\ERC20\IERC20.sol

// 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: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/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: @openzeppelin\contracts\utils\Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin\contracts\token\ERC20\ERC20.sol

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/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: @openzeppelin\contracts\access\Ownable.sol

// OpenZeppelin Contracts (last updated v4.9.0) (access/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: contracts\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: contracts\IUniswapV2Router02.sol

pragma solidity >=0.6.2;
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;
}

// File: contracts\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: contracts\IUniswapV2Pair.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: contracts\EcoTool.sol

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
contract EcoTool is Ownable, ERC20 {
    using SafeMath for uint256;
    using EnumerableSet for EnumerableSet.AddressSet;

    uint256 public initToken = 100000000 * 1e18;

    IUniswapV2Router02 public uniswapV2Router;
    IUniswapV2Factory public factory;
    EnumerableSet.AddressSet private _pairs;
    address public foundationAddress;
    address public ryspAddress; // Real Yield Sharing Pool
    uint public foundationPercent = 50;

    uint256 public buyFee = 5;
    uint256 public sellFee = 5;
    bool inSwap = false;

    mapping(address => bool) public isExcludedFromFee;
    uint256 public checkBot = 6400000 * 1e18;
    uint256 public numTokensSellToAddToETH = 80000 * 1e18;
    uint256 public maxTokenSellToAddToETH = 2000000 * 1e18;

    uint256 public blockBotDuration = 30;
    uint256 public blockBotTime;
    bool private initialized;

    constructor(string memory name, string memory symbol, address _router) ERC20(name, symbol) {
        _mint(_msgSender(), initToken);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_router);
        uniswapV2Router = _uniswapV2Router;
        factory = IUniswapV2Factory(_uniswapV2Router.factory());
        foundationAddress = address(0x5aC11C8697E018a69F932DD6C2D7179fE5278146);
        ryspAddress = address(0xE50d196808559Cb53123506BCBCBbc3F6CD2e460);
        isExcludedFromFee[_msgSender()] = true;
        isExcludedFromFee[foundationAddress] = true;
    }

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

    function initializePair() external onlyOwner {
        require(!initialized, "Already initialized");
        address pair = factory.createPair(uniswapV2Router.WETH(), address(this));
        _pairs.add(pair);
        initialized = true;
    }

    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        uint256 transferFee;
        //check fee
        if(!isExcludedFromFee[sender] && isPair(recipient)) {
            transferFee = sellFee;
        } else if(!isExcludedFromFee[recipient] && isPair(sender)) {
            transferFee = buyFee;
        }

        //is bot
        if (
            blockBotTime > block.timestamp &&
            amount > checkBot &&
            sender != address(this) &&
            recipient != address(this) &&
            isPair(sender)
        ) {
            transferFee = 80;
        }

        //add liquid
        if (blockBotTime == 0 && transferFee > 0 && amount > 0) {
            blockBotTime = block.timestamp + blockBotDuration;
        }

        if (inSwap) {
            super._transfer(sender, recipient, amount);
            return;
        }

        if (transferFee > 0 && sender != address(this) && recipient != address(this)) {
            uint256 _fee = amount.mul(transferFee).div(100);
            super._transfer(sender, address(this), _fee);
            amount = amount.sub(_fee);
        } else {
            callToTreasury();
        }

        super._transfer(sender, recipient, amount);
    }

    function callToTreasury() internal lockTheSwap {
        uint256 balanceThis = balanceOf(address(this));

        if (balanceThis > numTokensSellToAddToETH) {
            if(balanceThis > maxTokenSellToAddToETH) balanceThis = maxTokenSellToAddToETH;
            swapTokensForETH(balanceThis);
        }
    }

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

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

        uniswapV2Router.swapExactTokensForETH(tokenAmount, 0, path, address(this), block.timestamp);
        uint256 ethBalance = address(this).balance;
        uint ethToFoundation = ethBalance * foundationPercent / 100;
        payable(address(foundationAddress)).call{value: ethToFoundation}("");
        payable(address(ryspAddress)).call{value: ethBalance-ethToFoundation}("");
    }

    function setExcludeFromFee(address _address, bool _status) external onlyOwner {
        require(_address != address(0), "0x is not accepted here");
        require(isExcludedFromFee[_address] != _status, "Status was set");
        isExcludedFromFee[_address] = _status;
    }

    function changeFoundationWallet(address _foundationWallet) external {
        require(_msgSender() == foundationAddress, "Only Foundation Wallet!");
        require(_foundationWallet != address(0), "0x is not accepted here");

        foundationAddress = _foundationWallet;
    }

    function changeRyspAddress(address _ryspAddress) external {
        require(_msgSender() == ryspAddress, "Only Rysp Wallet!");
        require(_ryspAddress != address(0), "0x is not accepted here");

        ryspAddress = _ryspAddress;
    }

    function changeNumTokensSellToAddToETH(uint256 _numTokensSellToAddToETH) external onlyOwner {
        require(_numTokensSellToAddToETH != 0, "_numTokensSellToAddToETH !=0");
        numTokensSellToAddToETH = _numTokensSellToAddToETH;
    }

    function changeFoundationPercent(uint256 _foundationPercent) external onlyOwner {
        require(_foundationPercent <=100, "_foundationPercent <= 100");
        foundationPercent = _foundationPercent;
    }

    function isPair(address account) public view returns (bool) {
        return _pairs.contains(account);
    }

    function addPair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "ECOTOOL: pair is the zero address");
        return _pairs.add(pair);
    }

    function delPair(address pair) public onlyOwner returns (bool) {
        require(pair != address(0), "ECOTOOL: pair is the zero address");
        return _pairs.remove(pair);
    }

    function getMinterLength() public view returns (uint256) {
        return _pairs.length();
    }

    function getPair(uint256 index) public view returns (address) {
        require(index <= _pairs.length() - 1, "ECOTOOL: index out of bounds");
        return _pairs.at(index);
    }

    // receive eth
    receive() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"_router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"addPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"blockBotDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockBotTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_foundationPercent","type":"uint256"}],"name":"changeFoundationPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_foundationWallet","type":"address"}],"name":"changeFoundationWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokensSellToAddToETH","type":"uint256"}],"name":"changeNumTokensSellToAddToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ryspAddress","type":"address"}],"name":"changeRyspAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkBot","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":"pair","type":"address"}],"name":"delPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundationPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getPair","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":"initToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initializePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSellToAddToETH","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":"numTokensSellToAddToETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ryspAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setExcludeFromFee","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":[{"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a52b7d2dcc80cd2e40000006006556032600d556005600e819055600f556010805460ff191690556a054b40b1f852bda00000006012556910f0cf064dd5920000006013556a01a784379d99db42000000601455601e6015553480156200006a57600080fd5b5060405162002478380380620024788339810160408190526200008d9162000418565b82826200009a3362000219565b6004620000a8838262000522565b506005620000b7828262000522565b505050620000d7620000ce6200021560201b60201c565b60065462000269565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905183929163c45a01559160048083019260209291908290030181865afa15801562000133573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001599190620005ee565b600880546001600160a01b03929092166001600160a01b0319928316179055600b80548216735ac11c8697e018a69f932dd6c2d7179fe5278146179055600c805490911673e50d196808559cb53123506bcbcbbc3f6cd2e460179055600160116000620001c33390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600b5490911681526011909252902080549091166001179055506200063b92505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002c45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620002d8919062000613565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200035e57600080fd5b81516001600160401b03808211156200037b576200037b62000336565b604051601f8301601f19908116603f01168101908282118183101715620003a657620003a662000336565b81604052838152602092508683858801011115620003c357600080fd5b600091505b83821015620003e75785820183015181830184015290820190620003c8565b600093810190920192909252949350505050565b80516001600160a01b03811681146200041357600080fd5b919050565b6000806000606084860312156200042e57600080fd5b83516001600160401b03808211156200044657600080fd5b62000454878388016200034c565b945060208601519150808211156200046b57600080fd5b506200047a868287016200034c565b9250506200048b60408501620003fb565b90509250925092565b600181811c90821680620004a957607f821691505b602082108103620004ca57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033157600081815260208120601f850160051c81016020861015620004f95750805b601f850160051c820191505b818110156200051a5782815560010162000505565b505050505050565b81516001600160401b038111156200053e576200053e62000336565b62000556816200054f845462000494565b84620004d0565b602080601f8311600181146200058e5760008415620005755750858301515b600019600386901b1c1916600185901b1785556200051a565b600085815260208120601f198616915b82811015620005bf578886015182559484019460019091019084016200059e565b5085821015620005de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200060157600080fd5b6200060c82620003fb565b9392505050565b808201808211156200063557634e487b7160e01b600052601160045260246000fd5b92915050565b611e2d806200064b6000396000f3fe60806040526004361061023f5760003560e01c806395d89b411161012e578063bdf391cc116100ab578063e5e31b131161006f578063e5e31b1314610683578063e66738cd146106a3578063e893065c146106b9578063f2fde38b146106d9578063fcf07c6b146106f957600080fd5b8063bdf391cc146105ed578063c2b7bbb61461060d578063c45a01551461062d578063cb09c97c1461064d578063dd62ed3e1461066357600080fd5b8063a9059cbb116100f2578063a9059cbb14610561578063a9b66df614610581578063ad16a0cf14610597578063af9549e0146105ad578063bc2e9e42146105cd57600080fd5b806395d89b41146104cc578063999545cf146104e1578063a39a145014610501578063a457c2d714610521578063a5bc50851461054157600080fd5b806341d59776116101bc57806361b188d11161018057806361b188d11461043757806370a082311461044d578063715018a6146104835780638da5cb5b146104985780639144a2c5146104b657600080fd5b806341d597761461039a57806342966c68146103bc57806347062402146103dc5780634fab9e4c146103f25780635342acb41461040757600080fd5b806323b872dd1161020357806323b872dd146103125780632b14ca56146103325780632c1c13e114610348578063313ce5671461035e578063395093511461037a57600080fd5b80630323aac71461024b57806306fdde0314610273578063095ea7b3146102955780631694505e146102c557806318160ddd146102fd57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610719565b6040519081526020015b60405180910390f35b34801561027f57600080fd5b5061028861072a565b60405161026a91906119d0565b3480156102a157600080fd5b506102b56102b0366004611a33565b6107bc565b604051901515815260200161026a565b3480156102d157600080fd5b506007546102e5906001600160a01b031681565b6040516001600160a01b03909116815260200161026a565b34801561030957600080fd5b50600354610260565b34801561031e57600080fd5b506102b561032d366004611a5f565b6107d6565b34801561033e57600080fd5b50610260600f5481565b34801561035457600080fd5b5061026060155481565b34801561036a57600080fd5b506040516012815260200161026a565b34801561038657600080fd5b506102b5610395366004611a33565b6107fa565b3480156103a657600080fd5b506103ba6103b5366004611aa0565b61081c565b005b3480156103c857600080fd5b506103ba6103d7366004611abd565b6108c0565b3480156103e857600080fd5b50610260600e5481565b3480156103fe57600080fd5b506103ba6108cd565b34801561041357600080fd5b506102b5610422366004611aa0565b60116020526000908152604090205460ff1681565b34801561044357600080fd5b5061026060125481565b34801561045957600080fd5b50610260610468366004611aa0565b6001600160a01b031660009081526001602052604090205490565b34801561048f57600080fd5b506103ba610a29565b3480156104a457600080fd5b506000546001600160a01b03166102e5565b3480156104c257600080fd5b50610260600d5481565b3480156104d857600080fd5b50610288610a3d565b3480156104ed57600080fd5b50600c546102e5906001600160a01b031681565b34801561050d57600080fd5b506103ba61051c366004611abd565b610a4c565b34801561052d57600080fd5b506102b561053c366004611a33565b610aa9565b34801561054d57600080fd5b506102b561055c366004611aa0565b610b24565b34801561056d57600080fd5b506102b561057c366004611a33565b610b5f565b34801561058d57600080fd5b5061026060145481565b3480156105a357600080fd5b5061026060135481565b3480156105b957600080fd5b506103ba6105c8366004611ad6565b610b6d565b3480156105d957600080fd5b506103ba6105e8366004611abd565b610c27565b3480156105f957600080fd5b506102e5610608366004611abd565b610c85565b34801561061957600080fd5b506102b5610628366004611aa0565b610cf7565b34801561063957600080fd5b506008546102e5906001600160a01b031681565b34801561065957600080fd5b5061026060165481565b34801561066f57600080fd5b5061026061067e366004611b14565b610d32565b34801561068f57600080fd5b506102b561069e366004611aa0565b610d5d565b3480156106af57600080fd5b5061026060065481565b3480156106c557600080fd5b506103ba6106d4366004611aa0565b610d6a565b3480156106e557600080fd5b506103ba6106f4366004611aa0565b610e15565b34801561070557600080fd5b50600b546102e5906001600160a01b031681565b60006107256009610e8b565b905090565b60606004805461073990611b42565b80601f016020809104026020016040519081016040528092919081815260200182805461076590611b42565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b6000336107ca818585610e95565b60019150505b92915050565b6000336107e4858285610fba565b6107ef858585611034565b506001949350505050565b6000336107ca81858561080d8383610d32565b6108179190611b92565b610e95565b600c546001600160a01b0316336001600160a01b0316146108785760405162461bcd60e51b81526020600482015260116024820152704f6e6c7920527973702057616c6c65742160781b60448201526064015b60405180910390fd5b6001600160a01b03811661089e5760405162461bcd60e51b815260040161086f90611ba5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6108ca33826111bf565b50565b6108d56112eb565b60175460ff161561091e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015260640161086f565b600854600754604080516315ab88c960e31b815290516000936001600160a01b039081169363c9c653969391169163ad5c4648916004808201926020929091908290030181865afa158015610977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099b9190611bdc565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af11580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b9190611bdc565b9050610a18600982611345565b50506017805460ff19166001179055565b610a316112eb565b610a3b6000611361565b565b60606005805461073990611b42565b610a546112eb565b80600003610aa45760405162461bcd60e51b815260206004820152601c60248201527f5f6e756d546f6b656e7353656c6c546f416464546f45544820213d3000000000604482015260640161086f565b601355565b60003381610ab78286610d32565b905083811015610b175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161086f565b6107ef8286868403610e95565b6000610b2e6112eb565b6001600160a01b038216610b545760405162461bcd60e51b815260040161086f90611bf9565b6107d06009836113b1565b6000336107ca818585611034565b610b756112eb565b6001600160a01b038216610b9b5760405162461bcd60e51b815260040161086f90611ba5565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503610bfc5760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b604482015260640161086f565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b610c2f6112eb565b6064811115610c805760405162461bcd60e51b815260206004820152601960248201527f5f666f756e646174696f6e50657263656e74203c3d2031303000000000000000604482015260640161086f565b600d55565b60006001610c936009610e8b565b610c9d9190611c3a565b821115610cec5760405162461bcd60e51b815260206004820152601c60248201527f45434f544f4f4c3a20696e646578206f7574206f6620626f756e647300000000604482015260640161086f565b6107d06009836113c6565b6000610d016112eb565b6001600160a01b038216610d275760405162461bcd60e51b815260040161086f90611bf9565b6107d0600983611345565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006107d06009836113d2565b600b546001600160a01b0316336001600160a01b031614610dcd5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920466f756e646174696f6e2057616c6c657421000000000000000000604482015260640161086f565b6001600160a01b038116610df35760405162461bcd60e51b815260040161086f90611ba5565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610e1d6112eb565b6001600160a01b038116610e825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086f565b6108ca81611361565b60006107d0825490565b6001600160a01b038316610ef75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086f565b6001600160a01b038216610f585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610fc68484610d32565b9050600019811461102e57818110156110215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161086f565b61102e8484848403610e95565b50505050565b6001600160a01b03831660009081526011602052604081205460ff16158015611061575061106183610d5d565b1561106f5750600f546110a6565b6001600160a01b03831660009081526011602052604090205460ff1615801561109c575061109c84610d5d565b156110a65750600e545b426016541180156110b8575060125482115b80156110cd57506001600160a01b0384163014155b80156110e257506001600160a01b0383163014155b80156110f257506110f284610d5d565b156110fb575060505b60165415801561110b5750600081115b80156111175750600082115b1561112d576015546111299042611b92565b6016555b60105460ff16156111435761102e8484846113f4565b60008111801561115c57506001600160a01b0384163014155b801561117157506001600160a01b0383163014155b156111ac57600061118d6064611187858561159f565b906115ab565b905061119a8530836113f4565b6111a483826115b7565b9250506111b4565b6111b46115c3565b61102e8484846113f4565b6001600160a01b03821661121f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161086f565b6001600160a01b038216600090815260016020526040902054818110156112935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161086f565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610fad565b6000546001600160a01b03163314610a3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161086f565b600061135a836001600160a01b038416611622565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061135a836001600160a01b038416611671565b600061135a8383611764565b6001600160a01b0381166000908152600183016020526040812054151561135a565b6001600160a01b0383166114585760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086f565b6001600160a01b0382166114ba5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086f565b6001600160a01b038316600090815260016020526040902054818110156115325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161086f565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115929086815260200190565b60405180910390a361102e565b600061135a8284611c4d565b600061135a8284611c64565b600061135a8284611c3a565b6010805460ff1916600117905560006115f1306001600160a01b031660009081526001602052604090205490565b90506013548111156116155760145481111561160c57506014545b6116158161178e565b506010805460ff19169055565b6000818152600183016020526040812054611669575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107d0565b5060006107d0565b6000818152600183016020526040812054801561175a576000611695600183611c3a565b85549091506000906116a990600190611c3a565b905081811461170e5760008660000182815481106116c9576116c9611c86565b90600052602060002001549050808760000184815481106116ec576116ec611c86565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061171f5761171f611c9c565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506107d0565b60009150506107d0565b600082600001828154811061177b5761177b611c86565b9060005260206000200154905092915050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106117c3576117c3611c86565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561181c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118409190611bdc565b8160018151811061185357611853611c86565b6001600160a01b0392831660209182029290920101526007546118799130911684610e95565b6007546040516318cbafe560e01b81526001600160a01b03909116906318cbafe5906118b2908590600090869030904290600401611cc8565b6000604051808303816000875af11580156118d1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118f99190810190611d39565b50600d54479060009060649061190f9084611c4d565b6119199190611c64565b600b546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611967576040519150601f19603f3d011682016040523d82523d6000602084013e61196c565b606091505b5050600c546001600160a01b031690506119868284611c3a565b604051600081818185875af1925050503d80600081146119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b50505050505050565b600060208083528351808285015260005b818110156119fd578581018301518582016040015282016119e1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108ca57600080fd5b60008060408385031215611a4657600080fd5b8235611a5181611a1e565b946020939093013593505050565b600080600060608486031215611a7457600080fd5b8335611a7f81611a1e565b92506020840135611a8f81611a1e565b929592945050506040919091013590565b600060208284031215611ab257600080fd5b813561135a81611a1e565b600060208284031215611acf57600080fd5b5035919050565b60008060408385031215611ae957600080fd5b8235611af481611a1e565b915060208301358015158114611b0957600080fd5b809150509250929050565b60008060408385031215611b2757600080fd5b8235611b3281611a1e565b91506020830135611b0981611a1e565b600181811c90821680611b5657607f821691505b602082108103611b7657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107d0576107d0611b7c565b60208082526017908201527f3078206973206e6f742061636365707465642068657265000000000000000000604082015260600190565b600060208284031215611bee57600080fd5b815161135a81611a1e565b60208082526021908201527f45434f544f4f4c3a207061697220697320746865207a65726f206164647265736040820152607360f81b606082015260800190565b818103818111156107d0576107d0611b7c565b80820281158282048414176107d0576107d0611b7c565b600082611c8157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d185784516001600160a01b031683529383019391830191600101611cf3565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611d4c57600080fd5b825167ffffffffffffffff80821115611d6457600080fd5b818501915085601f830112611d7857600080fd5b815181811115611d8a57611d8a611cb2565b8060051b604051601f19603f83011681018181108582111715611daf57611daf611cb2565b604052918252848201925083810185019188831115611dcd57600080fd5b938501935b82851015611deb57845184529385019392850192611dd2565b9897505050505050505056fea2646970667358221220367758799a43e96e12c328e9288d7412bb90eea2dcc018fccb04b4a4d8e2c04a64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000745636f546f6f6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000345544f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806395d89b411161012e578063bdf391cc116100ab578063e5e31b131161006f578063e5e31b1314610683578063e66738cd146106a3578063e893065c146106b9578063f2fde38b146106d9578063fcf07c6b146106f957600080fd5b8063bdf391cc146105ed578063c2b7bbb61461060d578063c45a01551461062d578063cb09c97c1461064d578063dd62ed3e1461066357600080fd5b8063a9059cbb116100f2578063a9059cbb14610561578063a9b66df614610581578063ad16a0cf14610597578063af9549e0146105ad578063bc2e9e42146105cd57600080fd5b806395d89b41146104cc578063999545cf146104e1578063a39a145014610501578063a457c2d714610521578063a5bc50851461054157600080fd5b806341d59776116101bc57806361b188d11161018057806361b188d11461043757806370a082311461044d578063715018a6146104835780638da5cb5b146104985780639144a2c5146104b657600080fd5b806341d597761461039a57806342966c68146103bc57806347062402146103dc5780634fab9e4c146103f25780635342acb41461040757600080fd5b806323b872dd1161020357806323b872dd146103125780632b14ca56146103325780632c1c13e114610348578063313ce5671461035e578063395093511461037a57600080fd5b80630323aac71461024b57806306fdde0314610273578063095ea7b3146102955780631694505e146102c557806318160ddd146102fd57600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610719565b6040519081526020015b60405180910390f35b34801561027f57600080fd5b5061028861072a565b60405161026a91906119d0565b3480156102a157600080fd5b506102b56102b0366004611a33565b6107bc565b604051901515815260200161026a565b3480156102d157600080fd5b506007546102e5906001600160a01b031681565b6040516001600160a01b03909116815260200161026a565b34801561030957600080fd5b50600354610260565b34801561031e57600080fd5b506102b561032d366004611a5f565b6107d6565b34801561033e57600080fd5b50610260600f5481565b34801561035457600080fd5b5061026060155481565b34801561036a57600080fd5b506040516012815260200161026a565b34801561038657600080fd5b506102b5610395366004611a33565b6107fa565b3480156103a657600080fd5b506103ba6103b5366004611aa0565b61081c565b005b3480156103c857600080fd5b506103ba6103d7366004611abd565b6108c0565b3480156103e857600080fd5b50610260600e5481565b3480156103fe57600080fd5b506103ba6108cd565b34801561041357600080fd5b506102b5610422366004611aa0565b60116020526000908152604090205460ff1681565b34801561044357600080fd5b5061026060125481565b34801561045957600080fd5b50610260610468366004611aa0565b6001600160a01b031660009081526001602052604090205490565b34801561048f57600080fd5b506103ba610a29565b3480156104a457600080fd5b506000546001600160a01b03166102e5565b3480156104c257600080fd5b50610260600d5481565b3480156104d857600080fd5b50610288610a3d565b3480156104ed57600080fd5b50600c546102e5906001600160a01b031681565b34801561050d57600080fd5b506103ba61051c366004611abd565b610a4c565b34801561052d57600080fd5b506102b561053c366004611a33565b610aa9565b34801561054d57600080fd5b506102b561055c366004611aa0565b610b24565b34801561056d57600080fd5b506102b561057c366004611a33565b610b5f565b34801561058d57600080fd5b5061026060145481565b3480156105a357600080fd5b5061026060135481565b3480156105b957600080fd5b506103ba6105c8366004611ad6565b610b6d565b3480156105d957600080fd5b506103ba6105e8366004611abd565b610c27565b3480156105f957600080fd5b506102e5610608366004611abd565b610c85565b34801561061957600080fd5b506102b5610628366004611aa0565b610cf7565b34801561063957600080fd5b506008546102e5906001600160a01b031681565b34801561065957600080fd5b5061026060165481565b34801561066f57600080fd5b5061026061067e366004611b14565b610d32565b34801561068f57600080fd5b506102b561069e366004611aa0565b610d5d565b3480156106af57600080fd5b5061026060065481565b3480156106c557600080fd5b506103ba6106d4366004611aa0565b610d6a565b3480156106e557600080fd5b506103ba6106f4366004611aa0565b610e15565b34801561070557600080fd5b50600b546102e5906001600160a01b031681565b60006107256009610e8b565b905090565b60606004805461073990611b42565b80601f016020809104026020016040519081016040528092919081815260200182805461076590611b42565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b6000336107ca818585610e95565b60019150505b92915050565b6000336107e4858285610fba565b6107ef858585611034565b506001949350505050565b6000336107ca81858561080d8383610d32565b6108179190611b92565b610e95565b600c546001600160a01b0316336001600160a01b0316146108785760405162461bcd60e51b81526020600482015260116024820152704f6e6c7920527973702057616c6c65742160781b60448201526064015b60405180910390fd5b6001600160a01b03811661089e5760405162461bcd60e51b815260040161086f90611ba5565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6108ca33826111bf565b50565b6108d56112eb565b60175460ff161561091e5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015260640161086f565b600854600754604080516315ab88c960e31b815290516000936001600160a01b039081169363c9c653969391169163ad5c4648916004808201926020929091908290030181865afa158015610977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061099b9190611bdc565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201523060248201526044016020604051808303816000875af11580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b9190611bdc565b9050610a18600982611345565b50506017805460ff19166001179055565b610a316112eb565b610a3b6000611361565b565b60606005805461073990611b42565b610a546112eb565b80600003610aa45760405162461bcd60e51b815260206004820152601c60248201527f5f6e756d546f6b656e7353656c6c546f416464546f45544820213d3000000000604482015260640161086f565b601355565b60003381610ab78286610d32565b905083811015610b175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161086f565b6107ef8286868403610e95565b6000610b2e6112eb565b6001600160a01b038216610b545760405162461bcd60e51b815260040161086f90611bf9565b6107d06009836113b1565b6000336107ca818585611034565b610b756112eb565b6001600160a01b038216610b9b5760405162461bcd60e51b815260040161086f90611ba5565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503610bfc5760405162461bcd60e51b815260206004820152600e60248201526d14dd185d1d5cc81dd85cc81cd95d60921b604482015260640161086f565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b610c2f6112eb565b6064811115610c805760405162461bcd60e51b815260206004820152601960248201527f5f666f756e646174696f6e50657263656e74203c3d2031303000000000000000604482015260640161086f565b600d55565b60006001610c936009610e8b565b610c9d9190611c3a565b821115610cec5760405162461bcd60e51b815260206004820152601c60248201527f45434f544f4f4c3a20696e646578206f7574206f6620626f756e647300000000604482015260640161086f565b6107d06009836113c6565b6000610d016112eb565b6001600160a01b038216610d275760405162461bcd60e51b815260040161086f90611bf9565b6107d0600983611345565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60006107d06009836113d2565b600b546001600160a01b0316336001600160a01b031614610dcd5760405162461bcd60e51b815260206004820152601760248201527f4f6e6c7920466f756e646174696f6e2057616c6c657421000000000000000000604482015260640161086f565b6001600160a01b038116610df35760405162461bcd60e51b815260040161086f90611ba5565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610e1d6112eb565b6001600160a01b038116610e825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086f565b6108ca81611361565b60006107d0825490565b6001600160a01b038316610ef75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161086f565b6001600160a01b038216610f585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161086f565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610fc68484610d32565b9050600019811461102e57818110156110215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161086f565b61102e8484848403610e95565b50505050565b6001600160a01b03831660009081526011602052604081205460ff16158015611061575061106183610d5d565b1561106f5750600f546110a6565b6001600160a01b03831660009081526011602052604090205460ff1615801561109c575061109c84610d5d565b156110a65750600e545b426016541180156110b8575060125482115b80156110cd57506001600160a01b0384163014155b80156110e257506001600160a01b0383163014155b80156110f257506110f284610d5d565b156110fb575060505b60165415801561110b5750600081115b80156111175750600082115b1561112d576015546111299042611b92565b6016555b60105460ff16156111435761102e8484846113f4565b60008111801561115c57506001600160a01b0384163014155b801561117157506001600160a01b0383163014155b156111ac57600061118d6064611187858561159f565b906115ab565b905061119a8530836113f4565b6111a483826115b7565b9250506111b4565b6111b46115c3565b61102e8484846113f4565b6001600160a01b03821661121f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161086f565b6001600160a01b038216600090815260016020526040902054818110156112935760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161086f565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610fad565b6000546001600160a01b03163314610a3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161086f565b600061135a836001600160a01b038416611622565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061135a836001600160a01b038416611671565b600061135a8383611764565b6001600160a01b0381166000908152600183016020526040812054151561135a565b6001600160a01b0383166114585760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161086f565b6001600160a01b0382166114ba5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161086f565b6001600160a01b038316600090815260016020526040902054818110156115325760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161086f565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115929086815260200190565b60405180910390a361102e565b600061135a8284611c4d565b600061135a8284611c64565b600061135a8284611c3a565b6010805460ff1916600117905560006115f1306001600160a01b031660009081526001602052604090205490565b90506013548111156116155760145481111561160c57506014545b6116158161178e565b506010805460ff19169055565b6000818152600183016020526040812054611669575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107d0565b5060006107d0565b6000818152600183016020526040812054801561175a576000611695600183611c3a565b85549091506000906116a990600190611c3a565b905081811461170e5760008660000182815481106116c9576116c9611c86565b90600052602060002001549050808760000184815481106116ec576116ec611c86565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061171f5761171f611c9c565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506107d0565b60009150506107d0565b600082600001828154811061177b5761177b611c86565b9060005260206000200154905092915050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106117c3576117c3611c86565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561181c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118409190611bdc565b8160018151811061185357611853611c86565b6001600160a01b0392831660209182029290920101526007546118799130911684610e95565b6007546040516318cbafe560e01b81526001600160a01b03909116906318cbafe5906118b2908590600090869030904290600401611cc8565b6000604051808303816000875af11580156118d1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118f99190810190611d39565b50600d54479060009060649061190f9084611c4d565b6119199190611c64565b600b546040519192506001600160a01b0316908290600081818185875af1925050503d8060008114611967576040519150601f19603f3d011682016040523d82523d6000602084013e61196c565b606091505b5050600c546001600160a01b031690506119868284611c3a565b604051600081818185875af1925050503d80600081146119c2576040519150601f19603f3d011682016040523d82523d6000602084013e6119c7565b606091505b50505050505050565b600060208083528351808285015260005b818110156119fd578581018301518582016040015282016119e1565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108ca57600080fd5b60008060408385031215611a4657600080fd5b8235611a5181611a1e565b946020939093013593505050565b600080600060608486031215611a7457600080fd5b8335611a7f81611a1e565b92506020840135611a8f81611a1e565b929592945050506040919091013590565b600060208284031215611ab257600080fd5b813561135a81611a1e565b600060208284031215611acf57600080fd5b5035919050565b60008060408385031215611ae957600080fd5b8235611af481611a1e565b915060208301358015158114611b0957600080fd5b809150509250929050565b60008060408385031215611b2757600080fd5b8235611b3281611a1e565b91506020830135611b0981611a1e565b600181811c90821680611b5657607f821691505b602082108103611b7657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156107d0576107d0611b7c565b60208082526017908201527f3078206973206e6f742061636365707465642068657265000000000000000000604082015260600190565b600060208284031215611bee57600080fd5b815161135a81611a1e565b60208082526021908201527f45434f544f4f4c3a207061697220697320746865207a65726f206164647265736040820152607360f81b606082015260800190565b818103818111156107d0576107d0611b7c565b80820281158282048414176107d0576107d0611b7c565b600082611c8157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d185784516001600160a01b031683529383019391830191600101611cf3565b50506001600160a01b03969096166060850152505050608001529392505050565b60006020808385031215611d4c57600080fd5b825167ffffffffffffffff80821115611d6457600080fd5b818501915085601f830112611d7857600080fd5b815181811115611d8a57611d8a611cb2565b8060051b604051601f19603f83011681018181108582111715611daf57611daf611cb2565b604052918252848201925083810185019188831115611dcd57600080fd5b938501935b82851015611deb57845184529385019392850192611dd2565b9897505050505050505056fea2646970667358221220367758799a43e96e12c328e9288d7412bb90eea2dcc018fccb04b4a4d8e2c04a64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000000745636f546f6f6c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000345544f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): EcoTool
Arg [1] : symbol (string): ETO
Arg [2] : _router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 45636f546f6f6c00000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 45544f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50255:6407:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56310:98;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;56310:98:0;;;;;;;;28226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30586:201::-;;;;;;;;;;-1:-1:-1;30586:201:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;30586:201:0;1205:187:1;50439:41:0;;;;;;;;;;-1:-1:-1;50439:41:0;;;;-1:-1:-1;;;;;50439:41:0;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;50439:41:0;1397:230:1;29355:108:0;;;;;;;;;;-1:-1:-1;29443:12:0;;29355:108;;31367:261;;;;;;;;;;-1:-1:-1;31367:261:0;;;;;:::i;:::-;;:::i;50746:26::-;;;;;;;;;;;;;;;;51033:36;;;;;;;;;;;;;;;;29197:93;;;;;;;;;;-1:-1:-1;29197:93:0;;29280:2;2235:36:1;;2223:2;2208:18;29197:93:0;2093:184:1;32037:238:0;;;;;;;;;;-1:-1:-1;32037:238:0;;;;;:::i;:::-;;:::i;55091:246::-;;;;;;;;;;-1:-1:-1;55091:246:0;;;;;:::i;:::-;;:::i;:::-;;52094:83;;;;;;;;;;-1:-1:-1;52094:83:0;;;;;:::i;:::-;;:::i;50714:25::-;;;;;;;;;;;;;;;;51839:247;;;;;;;;;;;;;:::i;50807:49::-;;;;;;;;;;-1:-1:-1;50807:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;50863:40;;;;;;;;;;;;;;;;29526:127;;;;;;;;;;-1:-1:-1;29526:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;29627:18:0;29600:7;29627:18;;;:9;:18;;;;;;;29526:127;41091:103;;;;;;;;;;;;;:::i;40450:87::-;;;;;;;;;;-1:-1:-1;40496:7:0;40523:6;-1:-1:-1;;;;;40523:6:0;40450:87;;50671:34;;;;;;;;;;;;;;;;28445:104;;;;;;;;;;;;;:::i;50611:26::-;;;;;;;;;;-1:-1:-1;50611:26:0;;;;-1:-1:-1;;;;;50611:26:0;;;55345:242;;;;;;;;;;-1:-1:-1;55345:242:0;;;;;:::i;:::-;;:::i;32778:436::-;;;;;;;;;;-1:-1:-1;32778:436:0;;;;;:::i;:::-;;:::i;56119:183::-;;;;;;;;;;-1:-1:-1;56119:183:0;;;;;:::i;:::-;;:::i;29859:193::-;;;;;;;;;;-1:-1:-1;29859:193:0;;;;;:::i;:::-;;:::i;50970:54::-;;;;;;;;;;;;;;;;50910:53;;;;;;;;;;;;;;;;54512:279;;;;;;;;;;-1:-1:-1;54512:279:0;;;;;:::i;:::-;;:::i;55595:210::-;;;;;;;;;;-1:-1:-1;55595:210:0;;;;;:::i;:::-;;:::i;56416:184::-;;;;;;;;;;-1:-1:-1;56416:184:0;;;;;:::i;:::-;;:::i;55931:180::-;;;;;;;;;;-1:-1:-1;55931:180:0;;;;;:::i;:::-;;:::i;50487:32::-;;;;;;;;;;-1:-1:-1;50487:32:0;;;;-1:-1:-1;;;;;50487:32:0;;;51076:27;;;;;;;;;;;;;;;;30115:151;;;;;;;;;;-1:-1:-1;30115:151:0;;;;;:::i;:::-;;:::i;55813:110::-;;;;;;;;;;-1:-1:-1;55813:110:0;;;;;:::i;:::-;;:::i;50387:43::-;;;;;;;;;;;;;;;;54799:284;;;;;;;;;;-1:-1:-1;54799:284:0;;;;;:::i;:::-;;:::i;41349:201::-;;;;;;;;;;-1:-1:-1;41349:201:0;;;;;:::i;:::-;;:::i;50572:32::-;;;;;;;;;;-1:-1:-1;50572:32:0;;;;-1:-1:-1;;;;;50572:32:0;;;56310:98;56358:7;56385:15;:6;:13;:15::i;:::-;56378:22;;56310:98;:::o;28226:100::-;28280:13;28313:5;28306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28226:100;:::o;30586:201::-;30669:4;25948:10;30725:32;25948:10;30741:7;30750:6;30725:8;:32::i;:::-;30775:4;30768:11;;;30586:201;;;;;:::o;31367:261::-;31464:4;25948:10;31522:38;31538:4;25948:10;31553:6;31522:15;:38::i;:::-;31571:27;31581:4;31587:2;31591:6;31571:9;:27::i;:::-;-1:-1:-1;31616:4:0;;31367:261;-1:-1:-1;;;;31367:261:0:o;32037:238::-;32125:4;25948:10;32181:64;25948:10;32197:7;32234:10;32206:25;25948:10;32197:7;32206:9;:25::i;:::-;:38;;;;:::i;:::-;32181:8;:64::i;55091:246::-;55184:11;;-1:-1:-1;;;;;55184:11:0;25948:10;-1:-1:-1;;;;;55168:27:0;;55160:57;;;;-1:-1:-1;;;55160:57:0;;4824:2:1;55160:57:0;;;4806:21:1;4863:2;4843:18;;;4836:30;-1:-1:-1;;;4882:18:1;;;4875:47;4939:18;;55160:57:0;;;;;;;;;-1:-1:-1;;;;;55236:26:0;;55228:62;;;;-1:-1:-1;;;55228:62:0;;;;;;;:::i;:::-;55303:11;:26;;-1:-1:-1;;;;;;55303:26:0;-1:-1:-1;;;;;55303:26:0;;;;;;;;;;55091:246::o;52094:83::-;52142:27;25948:10;52162:6;52142:5;:27::i;:::-;52094:83;:::o;51839:247::-;40336:13;:11;:13::i;:::-;51904:11:::1;::::0;::::1;;51903:12;51895:44;;;::::0;-1:-1:-1;;;51895:44:0;;5522:2:1;51895:44:0::1;::::0;::::1;5504:21:1::0;5561:2;5541:18;;;5534:30;-1:-1:-1;;;5580:18:1;;;5573:49;5639:18;;51895:44:0::1;5320:343:1::0;51895:44:0::1;51965:7;::::0;51984:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;51984:22:0;;;;51950:12:::1;::::0;-1:-1:-1;;;;;51965:7:0;;::::1;::::0;:18:::1;::::0;51984:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51965:57;::::0;-1:-1:-1;;;;;;51965:57:0::1;::::0;;;;;;-1:-1:-1;;;;;6154:15:1;;;51965:57:0::1;::::0;::::1;6136:34:1::0;52016:4:0::1;6186:18:1::0;;;6179:43;6071:18;;51965:57:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51950:72:::0;-1:-1:-1;52033:16:0::1;:6;51950:72:::0;52033:10:::1;:16::i;:::-;-1:-1:-1::0;;52060:11:0::1;:18:::0;;-1:-1:-1;;52060:18:0::1;52074:4;52060:18;::::0;;51839:247::o;41091:103::-;40336:13;:11;:13::i;:::-;41156:30:::1;41183:1;41156:18;:30::i;:::-;41091:103::o:0;28445:104::-;28501:13;28534:7;28527:14;;;;;:::i;55345:242::-;40336:13;:11;:13::i;:::-;55456:24:::1;55484:1;55456:29:::0;55448:70:::1;;;::::0;-1:-1:-1;;;55448:70:0;;6435:2:1;55448:70:0::1;::::0;::::1;6417:21:1::0;6474:2;6454:18;;;6447:30;6513;6493:18;;;6486:58;6561:18;;55448:70:0::1;6233:352:1::0;55448:70:0::1;55529:23;:50:::0;55345:242::o;32778:436::-;32871:4;25948:10;32871:4;32954:25;25948:10;32971:7;32954:9;:25::i;:::-;32927:52;;33018:15;32998:16;:35;;32990:85;;;;-1:-1:-1;;;32990:85:0;;6792:2:1;32990:85:0;;;6774:21:1;6831:2;6811:18;;;6804:30;6870:34;6850:18;;;6843:62;-1:-1:-1;;;6921:18:1;;;6914:35;6966:19;;32990:85:0;6590:401:1;32990:85:0;33111:60;33120:5;33127:7;33155:15;33136:16;:34;33111:8;:60::i;56119:183::-;56176:4;40336:13;:11;:13::i;:::-;-1:-1:-1;;;;;56201:18:0;::::1;56193:64;;;;-1:-1:-1::0;;;56193:64:0::1;;;;;;;:::i;:::-;56275:19;:6;56289:4:::0;56275:13:::1;:19::i;29859:193::-:0;29938:4;25948:10;29994:28;25948:10;30011:2;30015:6;29994:9;:28::i;54512:279::-;40336:13;:11;:13::i;:::-;-1:-1:-1;;;;;54609:22:0;::::1;54601:58;;;;-1:-1:-1::0;;;54601:58:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54678:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;:38;::::1;;:27;::::0;;::::1;:38;;::::0;54670:65:::1;;;::::0;-1:-1:-1;;;54670:65:0;;7600:2:1;54670:65:0::1;::::0;::::1;7582:21:1::0;7639:2;7619:18;;;7612:30;-1:-1:-1;;;7658:18:1;;;7651:44;7712:18;;54670:65:0::1;7398:338:1::0;54670:65:0::1;-1:-1:-1::0;;;;;54746:27:0;;;::::1;;::::0;;;:17:::1;:27;::::0;;;;:37;;-1:-1:-1;;54746:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54512:279::o;55595:210::-;40336:13;:11;:13::i;:::-;55715:3:::1;55694:18;:24;;55686:62;;;::::0;-1:-1:-1;;;55686:62:0;;7943:2:1;55686:62:0::1;::::0;::::1;7925:21:1::0;7982:2;7962:18;;;7955:30;8021:27;8001:18;;;7994:55;8066:18;;55686:62:0::1;7741:349:1::0;55686:62:0::1;55759:17;:38:::0;55595:210::o;56416:184::-;56469:7;56524:1;56506:15;:6;:13;:15::i;:::-;:19;;;;:::i;:::-;56497:5;:28;;56489:69;;;;-1:-1:-1;;;56489:69:0;;8430:2:1;56489:69:0;;;8412:21:1;8469:2;8449:18;;;8442:30;8508;8488:18;;;8481:58;8556:18;;56489:69:0;8228:352:1;56489:69:0;56576:16;:6;56586:5;56576:9;:16::i;55931:180::-;55988:4;40336:13;:11;:13::i;:::-;-1:-1:-1;;;;;56013:18:0;::::1;56005:64;;;;-1:-1:-1::0;;;56005:64:0::1;;;;;;;:::i;:::-;56087:16;:6;56098:4:::0;56087:10:::1;:16::i;30115:151::-:0;-1:-1:-1;;;;;30231:18:0;;;30204:7;30231:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30115:151::o;55813:110::-;55867:4;55891:24;:6;55907:7;55891:15;:24::i;54799:284::-;54902:17;;-1:-1:-1;;;;;54902:17:0;25948:10;-1:-1:-1;;;;;54886:33:0;;54878:69;;;;-1:-1:-1;;;54878:69:0;;8787:2:1;54878:69:0;;;8769:21:1;8826:2;8806:18;;;8799:30;8865:25;8845:18;;;8838:53;8908:18;;54878:69:0;8585:347:1;54878:69:0;-1:-1:-1;;;;;54966:31:0;;54958:67;;;;-1:-1:-1;;;54958:67:0;;;;;;;:::i;:::-;55038:17;:37;;-1:-1:-1;;;;;;55038:37:0;-1:-1:-1;;;;;55038:37:0;;;;;;;;;;54799:284::o;41349:201::-;40336:13;:11;:13::i;:::-;-1:-1:-1;;;;;41438:22:0;::::1;41430:73;;;::::0;-1:-1:-1;;;41430:73:0;;9139:2:1;41430:73:0::1;::::0;::::1;9121:21:1::0;9178:2;9158:18;;;9151:30;9217:34;9197:18;;;9190:62;-1:-1:-1;;;9268:18:1;;;9261:36;9314:19;;41430:73:0::1;8937:402:1::0;41430:73:0::1;41514:28;41533:8;41514:18;:28::i;17649:117::-:0;17712:7;17739:19;17747:3;12949:18;;12866:109;36771:346;-1:-1:-1;;;;;36873:19:0;;36865:68;;;;-1:-1:-1;;;36865:68:0;;9546:2:1;36865:68:0;;;9528:21:1;9585:2;9565:18;;;9558:30;9624:34;9604:18;;;9597:62;-1:-1:-1;;;9675:18:1;;;9668:34;9719:19;;36865:68:0;9344:400:1;36865:68:0;-1:-1:-1;;;;;36952:21:0;;36944:68;;;;-1:-1:-1;;;36944:68:0;;9951:2:1;36944:68:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;-1:-1:-1;;;10080:18:1;;;10073:32;10122:19;;36944:68:0;9749:398:1;36944:68:0;-1:-1:-1;;;;;37025:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37077:32;;160:25:1;;;37077:32:0;;133:18:1;37077:32:0;;;;;;;;36771:346;;;:::o;37408:419::-;37509:24;37536:25;37546:5;37553:7;37536:9;:25::i;:::-;37509:52;;-1:-1:-1;;37576:16:0;:37;37572:248;;37658:6;37638:16;:26;;37630:68;;;;-1:-1:-1;;;37630:68:0;;10354:2:1;37630:68:0;;;10336:21:1;10393:2;10373:18;;;10366:30;10432:31;10412:18;;;10405:59;10481:18;;37630:68:0;10152:353:1;37630:68:0;37742:51;37751:5;37758:7;37786:6;37767:16;:25;37742:8;:51::i;:::-;37498:329;37408:419;;;:::o;52185:1332::-;-1:-1:-1;;;;;52381:25:0;;52326:19;52381:25;;;:17;:25;;;;;;;;52380:26;:47;;;;;52410:17;52417:9;52410:6;:17::i;:::-;52377:205;;;-1:-1:-1;52458:7:0;;52377:205;;;-1:-1:-1;;;;;52487:28:0;;;;;;:17;:28;;;;;;;;52486:29;:47;;;;;52519:14;52526:6;52519;:14::i;:::-;52483:99;;;-1:-1:-1;52564:6:0;;52483:99;52645:15;52630:12;;:30;:64;;;;;52686:8;;52677:6;:17;52630:64;:104;;;;-1:-1:-1;;;;;;52711:23:0;;52729:4;52711:23;;52630:104;:147;;;;-1:-1:-1;;;;;;52751:26:0;;52772:4;52751:26;;52630:147;:178;;;;;52794:14;52801:6;52794;:14::i;:::-;52612:251;;;-1:-1:-1;52849:2:0;52612:251;52901:12;;:17;:36;;;;;52936:1;52922:11;:15;52901:36;:50;;;;;52950:1;52941:6;:10;52901:50;52897:132;;;53001:16;;52983:34;;:15;:34;:::i;:::-;52968:12;:49;52897:132;53045:6;;;;53041:102;;;53068:42;53084:6;53092:9;53103:6;53068:15;:42::i;53041:102::-;53173:1;53159:11;:15;:42;;;;-1:-1:-1;;;;;;53178:23:0;;53196:4;53178:23;;53159:42;:72;;;;-1:-1:-1;;;;;;53205:26:0;;53226:4;53205:26;;53159:72;53155:300;;;53248:12;53263:32;53291:3;53263:23;:6;53274:11;53263:10;:23::i;:::-;:27;;:32::i;:::-;53248:47;;53310:44;53326:6;53342:4;53349;53310:15;:44::i;:::-;53378:16;:6;53389:4;53378:10;:16::i;:::-;53369:25;;53233:173;53155:300;;;53427:16;:14;:16::i;:::-;53467:42;53483:6;53491:9;53502:6;53467:15;:42::i;35658:675::-;-1:-1:-1;;;;;35742:21:0;;35734:67;;;;-1:-1:-1;;;35734:67:0;;10712:2:1;35734:67:0;;;10694:21:1;10751:2;10731:18;;;10724:30;10790:34;10770:18;;;10763:62;-1:-1:-1;;;10841:18:1;;;10834:31;10882:19;;35734:67:0;10510:397:1;35734:67:0;-1:-1:-1;;;;;35901:18:0;;35876:22;35901:18;;;:9;:18;;;;;;35938:24;;;;35930:71;;;;-1:-1:-1;;;35930:71:0;;11114:2:1;35930:71:0;;;11096:21:1;11153:2;11133:18;;;11126:30;11192:34;11172:18;;;11165:62;-1:-1:-1;;;11243:18:1;;;11236:32;11285:19;;35930:71:0;10912:398:1;35930:71:0;-1:-1:-1;;;;;36037:18:0;;;;;;:9;:18;;;;;;;;36058:23;;;36037:44;;36176:12;:22;;;;;;;36227:37;160:25:1;;;36037:18:0;;;36227:37;;133:18:1;36227:37:0;14:177:1;40615:132:0;40496:7;40523:6;-1:-1:-1;;;;;40523:6:0;25948:10;40679:23;40671:68;;;;-1:-1:-1;;;40671:68:0;;11517:2:1;40671:68:0;;;11499:21:1;;;11536:18;;;11529:30;11595:34;11575:18;;;11568:62;11647:18;;40671:68:0;11315:356:1;16824:152:0;16894:4;16918:50;16923:3;-1:-1:-1;;;;;16943:23:0;;16918:4;:50::i;:::-;16911:57;16824:152;-1:-1:-1;;;16824:152:0:o;41710:191::-;41784:16;41803:6;;-1:-1:-1;;;;;41820:17:0;;;-1:-1:-1;;;;;;41820:17:0;;;;;;41853:40;;41803:6;;;;;;;41853:40;;41784:16;41853:40;41773:128;41710:191;:::o;17152:158::-;17225:4;17249:53;17257:3;-1:-1:-1;;;;;17277:23:0;;17249:7;:53::i;18120:158::-;18194:7;18245:22;18249:3;18261:5;18245:3;:22::i;17396:167::-;-1:-1:-1;;;;;17530:23:0;;17476:4;12748:19;;;:12;;;:19;;;;;;:24;;17500:55;12651:129;33684:806;-1:-1:-1;;;;;33781:18:0;;33773:68;;;;-1:-1:-1;;;33773:68:0;;11878:2:1;33773:68:0;;;11860:21:1;11917:2;11897:18;;;11890:30;11956:34;11936:18;;;11929:62;-1:-1:-1;;;12007:18:1;;;12000:35;12052:19;;33773:68:0;11676:401:1;33773:68:0;-1:-1:-1;;;;;33860:16:0;;33852:64;;;;-1:-1:-1;;;33852:64:0;;12284:2:1;33852:64:0;;;12266:21:1;12323:2;12303:18;;;12296:30;12362:34;12342:18;;;12335:62;-1:-1:-1;;;12413:18:1;;;12406:33;12456:19;;33852:64:0;12082:399:1;33852:64:0;-1:-1:-1;;;;;34002:15:0;;33980:19;34002:15;;;:9;:15;;;;;;34036:21;;;;34028:72;;;;-1:-1:-1;;;34028:72:0;;12688:2:1;34028:72:0;;;12670:21:1;12727:2;12707:18;;;12700:30;12766:34;12746:18;;;12739:62;-1:-1:-1;;;12817:18:1;;;12810:36;12863:19;;34028:72:0;12486:402:1;34028:72:0;-1:-1:-1;;;;;34136:15:0;;;;;;;:9;:15;;;;;;34154:20;;;34136:38;;34354:13;;;;;;;;;;:23;;;;;;34406:26;;;;;;34168:6;160:25:1;;148:2;133:18;;14:177;34406:26:0;;;;;;;;34445:37;35658:675;4917:98;4975:7;5002:5;5006:1;5002;:5;:::i;5316:98::-;5374:7;5401:5;5405:1;5401;:5;:::i;4560:98::-;4618:7;4645:5;4649:1;4645;:5;:::i;53525:315::-;51773:6;:13;;-1:-1:-1;;51773:13:0;51782:4;51773:13;;;:6;53605:24:::1;53623:4;-1:-1:-1::0;;;;;29627:18:0;29600:7;29627:18;;;:9;:18;;;;;;;29526:127;53605:24:::1;53583:46;;53660:23;;53646:11;:37;53642:191;;;53717:22;;53703:11;:36;53700:77;;;-1:-1:-1::0;53755:22:0::1;::::0;53700:77:::1;53792:29;53809:11;53792:16;:29::i;:::-;-1:-1:-1::0;51809:6:0;:14;;-1:-1:-1;;51809:14:0;;;53525:315::o;10555:414::-;10618:4;12748:19;;;:12;;;:19;;;;;;10635:327;;-1:-1:-1;10678:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;10861:18;;10839:19;;;:12;;;:19;;;;;;:40;;;;10894:11;;10635:327;-1:-1:-1;10945:5:0;10938:12;;11145:1420;11211:4;11350:19;;;:12;;;:19;;;;;;11386:15;;11382:1176;;11761:21;11785:14;11798:1;11785:10;:14;:::i;:::-;11834:18;;11761:38;;-1:-1:-1;11814:17:0;;11834:22;;11855:1;;11834:22;:::i;:::-;11814:42;;11890:13;11877:9;:26;11873:405;;11924:17;11944:3;:11;;11956:9;11944:22;;;;;;;;:::i;:::-;;;;;;;;;11924:42;;12098:9;12069:3;:11;;12081:13;12069:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;12183:23;;;:12;;;:23;;;;;:36;;;11873:405;12359:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;12454:3;:12;;:19;12467:5;12454:19;;;;;;;;;;;12447:26;;;12497:4;12490:11;;;;;;;11382:1176;12541:5;12534:12;;;;;13329:120;13396:7;13423:3;:11;;13435:5;13423:18;;;;;;;;:::i;:::-;;;;;;;;;13416:25;;13329:120;;;;:::o;53848:656::-;53938:16;;;53952:1;53938:16;;;;;;;;53914:21;;53938:16;;;;;;;;;;-1:-1:-1;53938:16:0;53914:40;;53983:4;53965;53970:1;53965:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53965:23:0;;;:7;;;;;;;;;;:23;;;;54009:15;;:22;;;-1:-1:-1;;;54009:22:0;;;;:15;;;;;:20;;:22;;;;;53965:7;;54009:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53999:4;54004:1;53999:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;53999:32:0;;;:7;;;;;;;;;:32;54076:15;;54044:62;;54061:4;;54076:15;54094:11;54044:8;:62::i;:::-;54119:15;;:91;;-1:-1:-1;;;54119:91:0;;-1:-1:-1;;;;;54119:15:0;;;;:37;;:91;;54157:11;;54119:15;;54173:4;;54187;;54194:15;;54119:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54119:91:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;54310:17:0;;54242:21;;54221:18;;54330:3;;54297:30;;54242:21;54297:30;:::i;:::-;:36;;;;:::i;:::-;54360:17;;54344:68;;54274:59;;-1:-1:-1;;;;;;54360:17:0;;54274:59;;54344:68;;;;54274:59;54360:17;54344:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54439:11:0;;-1:-1:-1;;;;;54439:11:0;;-1:-1:-1;54465:26:0;54476:15;54465:10;:26;:::i;:::-;54423:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53903:601;;;53848:656;:::o;196:548:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;480:3;665:1;660:2;651:6;640:9;636:22;632:31;625:42;735:2;728;724:7;719:2;711:6;707:15;703:29;692:9;688:45;684:54;676:62;;;;196:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;885:315;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2282:247::-;2341:6;2394:2;2382:9;2373:7;2369:23;2365:32;2362:52;;;2410:1;2407;2400:12;2362:52;2449:9;2436:23;2468:31;2493:5;2468:31;:::i;2534:180::-;2593:6;2646:2;2634:9;2625:7;2621:23;2617:32;2614:52;;;2662:1;2659;2652:12;2614:52;-1:-1:-1;2685:23:1;;2534:180;-1:-1:-1;2534:180:1:o;2927:416::-;2992:6;3000;3053:2;3041:9;3032:7;3028:23;3024:32;3021:52;;;3069:1;3066;3059:12;3021:52;3108:9;3095:23;3127:31;3152:5;3127:31;:::i;:::-;3177:5;-1:-1:-1;3234:2:1;3219:18;;3206:32;3276:15;;3269:23;3257:36;;3247:64;;3307:1;3304;3297:12;3247:64;3330:7;3320:17;;;2927:416;;;;;:::o;3582:388::-;3650:6;3658;3711:2;3699:9;3690:7;3686:23;3682:32;3679:52;;;3727:1;3724;3717:12;3679:52;3766:9;3753:23;3785:31;3810:5;3785:31;:::i;:::-;3835:5;-1:-1:-1;3892:2:1;3877:18;;3864:32;3905:33;3864:32;3905:33;:::i;3975:380::-;4054:1;4050:12;;;;4097;;;4118:61;;4172:4;4164:6;4160:17;4150:27;;4118:61;4225:2;4217:6;4214:14;4194:18;4191:38;4188:161;;4271:10;4266:3;4262:20;4259:1;4252:31;4306:4;4303:1;4296:15;4334:4;4331:1;4324:15;4188:161;;3975:380;;;:::o;4360:127::-;4421:10;4416:3;4412:20;4409:1;4402:31;4452:4;4449:1;4442:15;4476:4;4473:1;4466:15;4492:125;4557:9;;;4578:10;;;4575:36;;;4591:18;;:::i;4968:347::-;5170:2;5152:21;;;5209:2;5189:18;;;5182:30;5248:25;5243:2;5228:18;;5221:53;5306:2;5291:18;;4968:347::o;5668:251::-;5738:6;5791:2;5779:9;5770:7;5766:23;5762:32;5759:52;;;5807:1;5804;5797:12;5759:52;5839:9;5833:16;5858:31;5883:5;5858:31;:::i;6996:397::-;7198:2;7180:21;;;7237:2;7217:18;;;7210:30;7276:34;7271:2;7256:18;;7249:62;-1:-1:-1;;;7342:2:1;7327:18;;7320:31;7383:3;7368:19;;6996:397::o;8095:128::-;8162:9;;;8183:11;;;8180:37;;;8197:18;;:::i;12893:168::-;12966:9;;;12997;;13014:15;;;13008:22;;12994:37;12984:71;;13035:18;;:::i;13066:217::-;13106:1;13132;13122:132;;13176:10;13171:3;13167:20;13164:1;13157:31;13211:4;13208:1;13201:15;13239:4;13236:1;13229:15;13122:132;-1:-1:-1;13268:9:1;;13066:217::o;13288:127::-;13349:10;13344:3;13340:20;13337:1;13330:31;13380:4;13377:1;13370:15;13404:4;13401:1;13394:15;13420:127;13481:10;13476:3;13472:20;13469:1;13462:31;13512:4;13509:1;13502:15;13536:4;13533:1;13526:15;13552:127;13613:10;13608:3;13604:20;13601:1;13594:31;13644:4;13641:1;13634:15;13668:4;13665:1;13658:15;13684:980;13946:4;13994:3;13983:9;13979:19;14025:6;14014:9;14007:25;14051:2;14089:6;14084:2;14073:9;14069:18;14062:34;14132:3;14127:2;14116:9;14112:18;14105:31;14156:6;14191;14185:13;14222:6;14214;14207:22;14260:3;14249:9;14245:19;14238:26;;14299:2;14291:6;14287:15;14273:29;;14320:1;14330:195;14344:6;14341:1;14338:13;14330:195;;;14409:13;;-1:-1:-1;;;;;14405:39:1;14393:52;;14500:15;;;;14465:12;;;;14441:1;14359:9;14330:195;;;-1:-1:-1;;;;;;;14581:32:1;;;;14576:2;14561:18;;14554:60;-1:-1:-1;;;14645:3:1;14630:19;14623:35;14542:3;13684:980;-1:-1:-1;;;13684:980:1:o;14669:1105::-;14764:6;14795:2;14838;14826:9;14817:7;14813:23;14809:32;14806:52;;;14854:1;14851;14844:12;14806:52;14887:9;14881:16;14916:18;14957:2;14949:6;14946:14;14943:34;;;14973:1;14970;14963:12;14943:34;15011:6;15000:9;14996:22;14986:32;;15056:7;15049:4;15045:2;15041:13;15037:27;15027:55;;15078:1;15075;15068:12;15027:55;15107:2;15101:9;15129:2;15125;15122:10;15119:36;;;15135:18;;:::i;:::-;15181:2;15178:1;15174:10;15213:2;15207:9;15276:2;15272:7;15267:2;15263;15259:11;15255:25;15247:6;15243:38;15331:6;15319:10;15316:22;15311:2;15299:10;15296:18;15293:46;15290:72;;;15342:18;;:::i;:::-;15378:2;15371:22;15428:18;;;15462:15;;;;-1:-1:-1;15504:11:1;;;15500:20;;;15532:19;;;15529:39;;;15564:1;15561;15554:12;15529:39;15588:11;;;;15608:135;15624:6;15619:3;15616:15;15608:135;;;15690:10;;15678:23;;15641:12;;;;15721;;;;15608:135;;;15762:6;14669:1105;-1:-1:-1;;;;;;;;14669:1105:1:o

Swarm Source

ipfs://367758799a43e96e12c328e9288d7412bb90eea2dcc018fccb04b4a4d8e2c04a
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.