ETH Price: $3,232.26 (+2.61%)
Gas: 3 Gwei

Token

DexTools (DexTools)
 

Overview

Max Total Supply

666,666,666 DexTools

Holders

39

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
DexTools

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : token.sol
// 
// ------------------------
//
//Welcome to DexTools, the ultimate analytics and trading toolkit designed exclusively for decentralized exchanges (DEXs). As the DeFi landscape evolves, it's time you had a suite of powerful tools at your disposal to make informed decisions, optimize your trades, and maximize your profits. DexTools is not just another platform; it's your command center for all things DeFi.
//
// ------------------------

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

// 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/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/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

// OpenZeppelin Contracts (last updated v4.6.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/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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 _name;
    string _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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 {}
}

pragma solidity ^0.8.19;

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

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

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    bool private isSwapping;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxPerTransaction;
    uint256 public swapTokensAtAmount;
    uint256 public maxAllowedPerWallet;

    uint256 public coefficientForOceanicDuoPyrolyticProcedures = 1;
    bool public isLPBurningEnabled = false;
    uint256 public MarinePairBioCatalyticPulseAssessment = 1360000000000 seconds;
    uint256 public ZenithLiquidSymbiosisCatalysisAnnals;

    uint256 public handDrivenReactionBoostedFlameChronoscope = 43210 minutes;
    uint256 public antecedentOperatorFocusedStreamFireMilestone;

    bool public isLimitEnabled = true;
    bool public isTradingActive = true;
    bool public isSwapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    uint256 public sellTax;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public buyTax;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // constraintRepository
    mapping(address => bool) public constraintRepositorys;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    constructor() ERC20("DexTools", "DexTools") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 20;
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 30;
        uint256 totalSupply = 666_666_666 * 1e18;
        // Whale prevention system (during first few blocks of launch)
        maxPerTransaction = (totalSupply * 50) / 10000;
        maxAllowedPerWallet = (totalSupply * 50) / 10000; // 0.5%
        swapTokensAtAmount = (totalSupply * 1) / 10000;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTax = buyMarketingFee + buyLiquidityFee + buyDevFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTax = sellMarketingFee + sellLiquidityFee + sellDevFee;
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(msg.sender, totalSupply);
    }

    // once enabled, can never be turned off
    function beginTrading() external onlyOwner {
        isTradingActive = true;
        isSwapEnabled = true;
        ZenithLiquidSymbiosisCatalysisAnnals = block.timestamp;
    }

    receive() external payable {}

    function constraintRepository(
        address[] calldata _addresses,
        bool _isconstraintRepositorying
    ) external onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            constraintRepositorys[_addresses[i]] = _isconstraintRepositorying;
        }
    }

    // remove limits after token is stable
    function removeAllLimits() external onlyOwner returns (bool) {
        isLimitEnabled = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function removeTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(
        uint256 newAmount
    ) external onlyOwner returns (bool) {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 10) / 1000,
            "Swap amount cannot be higher than 1% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxBuy(
        uint256 maxPerTx,
        uint256 maxPerWallet
    ) external onlyOwner {
        require(
            maxPerTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxPerTransaction lower than 0.1%"
        );
        maxPerTransaction = maxPerTx * (10 ** 18);

        require(
            maxPerWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxAllowedPerWallet lower than 0.5%"
        );
        maxAllowedPerWallet = maxPerWallet * (10 ** 18);
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxPerTransaction lower than 0.1%"
        );
        maxPerTransaction = newNum * (10 ** 18);
    }

    function updatemaxPerWalletDuringInitialAmount(
        uint256 newNum
    ) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxAllowedPerWallet lower than 0.5%"
        );
        maxAllowedPerWallet = newNum * (10 ** 18);
    }

    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        isSwapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTax = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTax <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTax = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTax <= 99, "Must keep fees at 99% or less");
    }

    function updateTaxes(uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTax = sellMarketingFee + sellLiquidityFee + sellDevFee;
        buyTax = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTax <= 25, "Must keep fees at 25% or less");
        require(sellTax <= 99, "Must keep fees at 99% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
    }

    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

    function updateMarketingWallet(
        address newMarketingWallet
    ) external onlyOwner {
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!constraintRepositorys[to] && !constraintRepositorys[from], "constraintRepositoryed");

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

        if (isLimitEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !isSwapping
            ) {
                if (!isTradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            isSwapEnabled &&
            !isSwapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            isSwapping = true;

            swapBack();

            isSwapping = false;
        }

        if (
            !isSwapping &&
            automatedMarketMakerPairs[to] &&
            isLPBurningEnabled &&
            block.timestamp >= ZenithLiquidSymbiosisCatalysisAnnals + MarinePairBioCatalyticPulseAssessment &&
            !_isExcludedFromFees[from]
        ) {
            autoBurnLiquidityPairTokens();
        }

        bool takeFee = !isSwapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTax > 0) {
                fees = amount.mul(sellTax).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTax;
                tokensForDev += (fees * sellDevFee) / sellTax;
                tokensForMarketing += (fees * sellMarketingFee) / sellTax;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTax > 0) {
                fees = amount.mul(buyTax).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTax;
                tokensForDev += (fees * buyDevFee) / buyTax;
                tokensForMarketing += (fees * buyMarketingFee) / buyTax;
            }

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

            amount -= fees;
        }

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

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

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

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function initializeAutoViscousTwosomeFireConfigs(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        MarinePairBioCatalyticPulseAssessment = _frequencyInSeconds;
        coefficientForOceanicDuoPyrolyticProcedures = _percent;
        isLPBurningEnabled = _Enabled;
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

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

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        ZenithLiquidSymbiosisCatalysisAnnals = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(coefficientForOceanicDuoPyrolyticProcedures).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }

    function operateHandguidedMarinePairSymbolEradication(
        uint256 percent
    ) external onlyOwner returns (bool) {
        require(
            block.timestamp > antecedentOperatorFocusedStreamFireMilestone + handDrivenReactionBoostedFlameChronoscope,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        antecedentOperatorFocusedStreamFireMilestone = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        return true;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MarinePairBioCatalyticPulseAssessment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ZenithLiquidSymbiosisCatalysisAnnals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antecedentOperatorFocusedStreamFireMilestone","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coefficientForOceanicDuoPyrolyticProcedures","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isconstraintRepositorying","type":"bool"}],"name":"constraintRepository","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"constraintRepositorys","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"handDrivenReactionBoostedFlameChronoscope","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"initializeAutoViscousTwosomeFireConfigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLPBurningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"operateHandguidedMarinePairSymbolEradication","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updatemaxPerWalletDuringInitialAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600881526020017f446578546f6f6c730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f446578546f6f6c7300000000000000000000000000000000000000000000000081525081600390816200012c919062000c89565b5080600490816200013e919062000c89565b5050506200016162000155620005de60201b60201c565b620005e660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200018d816001620006ac60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000233919062000dda565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c1919062000dda565b6040518363ffffffff1660e01b8152600401620002e092919062000e1d565b6020604051808303816000875af115801562000300573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000326919062000dda565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036e60a0516001620006ac60201b60201c565b6200038360a05160016200071760201b60201c565b6000806000601490506000806000601e905060006b02277428614a865b806800009050612710603282620003b8919062000e79565b620003c4919062000ef3565b600881905550612710603282620003dc919062000e79565b620003e8919062000ef3565b600a8190555061271060018262000400919062000e79565b6200040c919062000ef3565b60098190555086601c8190555085601d8190555084601e81905550601e54601d54601c546200043c919062000f2b565b62000448919062000f2b565b601b81905550836018819055508260198190555081601a81905550601a5460195460185462000478919062000f2b565b62000484919062000f2b565b6017819055506200049a6200077260201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ea6200077260201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054c6200053e6200077260201b60201c565b60016200079c60201b60201c565b6200055f3060016200079c60201b60201c565b6200057461dead60016200079c60201b60201c565b62000596620005886200077260201b60201c565b6001620006ac60201b60201c565b620005a9306001620006ac60201b60201c565b620005be61dead6001620006ac60201b60201c565b620005d033826200080760201b60201c565b505050505050505062001089565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bc6200097460201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007ac6200097460201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008709062000fc7565b60405180910390fd5b6200088d6000838362000a0560201b60201c565b8060026000828254620008a1919062000f2b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000954919062000ffa565b60405180910390a3620009706000838362000a0a60201b60201c565b5050565b62000984620005de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009aa6200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fa9062001067565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9157607f821691505b60208210810362000aa75762000aa662000a49565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad2565b62000b1d868362000ad2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6a62000b6462000b5e8462000b35565b62000b3f565b62000b35565b9050919050565b6000819050919050565b62000b868362000b49565b62000b9e62000b958262000b71565b84845462000adf565b825550505050565b600090565b62000bb562000ba6565b62000bc281848462000b7b565b505050565b5b8181101562000bea5762000bde60008262000bab565b60018101905062000bc8565b5050565b601f82111562000c395762000c038162000aad565b62000c0e8462000ac2565b8101602085101562000c1e578190505b62000c3662000c2d8562000ac2565b83018262000bc7565b50505b505050565b600082821c905092915050565b600062000c5e6000198460080262000c3e565b1980831691505092915050565b600062000c79838362000c4b565b9150826002028217905092915050565b62000c948262000a0f565b67ffffffffffffffff81111562000cb05762000caf62000a1a565b5b62000cbc825462000a78565b62000cc982828562000bee565b600060209050601f83116001811462000d01576000841562000cec578287015190505b62000cf8858262000c6b565b86555062000d68565b601f19841662000d118662000aad565b60005b8281101562000d3b5784890151825560018201915060208501945060208101905062000d14565b8683101562000d5b578489015162000d57601f89168262000c4b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000da28262000d75565b9050919050565b62000db48162000d95565b811462000dc057600080fd5b50565b60008151905062000dd48162000da9565b92915050565b60006020828403121562000df35762000df262000d70565b5b600062000e038482850162000dc3565b91505092915050565b62000e178162000d95565b82525050565b600060408201905062000e34600083018562000e0c565b62000e43602083018462000e0c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e868262000b35565b915062000e938362000b35565b925082820262000ea38162000b35565b9150828204841483151762000ebd5762000ebc62000e4a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f008262000b35565b915062000f0d8362000b35565b92508262000f205762000f1f62000ec4565b5b828204905092915050565b600062000f388262000b35565b915062000f458362000b35565b925082820190508082111562000f605762000f5f62000e4a565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000faf601f8362000f66565b915062000fbc8262000f77565b602082019050919050565b6000602082019050818103600083015262000fe28162000fa0565b9050919050565b62000ff48162000b35565b82525050565b600060208201905062001011600083018462000fe9565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200104f60208362000f66565b91506200105c8262001017565b602082019050919050565b60006020820190508181036000830152620010828162001040565b9050919050565b60805160a05161570862001111600039600081816114930152818161199701528181611c1001528181611cc701528181611cf4015281816128dc0152818161395201528181613a0b0152613a380152600081816111650152818161288401528181613b8201528181613c6301528181613c8a01528181613d260152613d4d01526157086000f3fe6080604052600436106103dd5760003560e01c80638ea5220f116101fd578063c17b5b8c11610118578063db05e5cb116100ab578063f11a24d31161007a578063f11a24d314610ece578063f2fde38b14610ef9578063f637434214610f22578063f8686f0714610f4d578063fa554d1f14610f78576103e4565b8063db05e5cb14610e10578063dd62ed3e14610e3b578063e2f4560514610e78578063e8148f8b14610ea3576103e4565b8063cc1776d3116100e7578063cc1776d314610d52578063d257b34f14610d7d578063da69d9ce14610dba578063daf4f66e14610de5576103e4565b8063c17b5b8c14610cbc578063c408c24514610ce5578063c53d4d5314610cfc578063c876d0b914610d27576103e4565b80639fccce3211610190578063aacebbe31161015f578063aacebbe314610bf0578063b62496f514610c19578063bcf31b3814610c56578063c024666814610c93576103e4565b80639fccce3214610b20578063a0d82dc514610b4b578063a457c2d714610b76578063a9059cbb14610bb3576103e4565b806395c39f2d116101cc57806395c39f2d14610a7857806395d89b4114610aa15780639a7a23d614610acc5780639c3b4fdc14610af5576103e4565b80638ea5220f146109bc57806392136913146109e7578063924de9b714610a1257806395aec2f814610a3b576103e4565b8063351a964d116102f857806369a926a81161028b57806375f0a8741161025a57806375f0a874146108e95780637b3c1030146109145780637bce5a041461093d5780638095d564146109685780638da5cb5b14610991576103e4565b806369a926a81461084157806370a082311461086c578063715018a6146108a95780637571336a146108c0576103e4565b80634b980d67116102c75780634b980d67146107835780634f7041a5146107ae5780634fbee193146107d95780635fc8bf4b14610816576103e4565b8063351a964d146106c557806339509351146106f0578063496327cd1461072d57806349bd5a5e14610758576103e4565b80631b721a951161037057806323b872dd1161033f57806323b872dd1461060957806327c8f83514610646578063298066b114610671578063313ce5671461069a576103e4565b80631b721a95146105615780631d61c8cf1461058c5780631f3fed8f146105b5578063203e727e146105e0576103e4565b80631694505e116103ac5780631694505e146104b757806318160ddd146104e25780631816467f1461050d5780631a8145bb14610536576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b9190613e8c565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613f4c565b611035565b6040516104489190613fa7565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fc2565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614002565b611144565b6040516104ae9190613fa7565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d9919061408e565b60405180910390f35b3480156104ee57600080fd5b506104f7611187565b60405161050491906140b8565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190614002565b611191565b005b34801561054257600080fd5b5061054b6111dd565b60405161055891906140b8565b60405180910390f35b34801561056d57600080fd5b506105766111e3565b60405161058391906140b8565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906140ff565b6111e9565b005b3480156105c157600080fd5b506105ca6112b5565b6040516105d791906140b8565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190614152565b6112bb565b005b34801561061557600080fd5b50610630600480360381019061062b919061417f565b611356565b60405161063d9190613fa7565b60405180910390f35b34801561065257600080fd5b5061065b611385565b60405161066891906141e1565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190614261565b61138b565b005b3480156106a657600080fd5b506106af611438565b6040516106bc91906142dd565b60405180910390f35b3480156106d157600080fd5b506106da611441565b6040516106e79190613fa7565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613f4c565b611454565b6040516107249190613fa7565b60405180910390f35b34801561073957600080fd5b5061074261148b565b60405161074f91906140b8565b60405180910390f35b34801561076457600080fd5b5061076d611491565b60405161077a91906141e1565b60405180910390f35b34801561078f57600080fd5b506107986114b5565b6040516107a591906140b8565b60405180910390f35b3480156107ba57600080fd5b506107c36114bb565b6040516107d091906140b8565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190614002565b6114c1565b60405161080d9190613fa7565b60405180910390f35b34801561082257600080fd5b5061082b611517565b60405161083891906140b8565b60405180910390f35b34801561084d57600080fd5b5061085661151d565b60405161086391906140b8565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190614002565b611523565b6040516108a091906140b8565b60405180910390f35b3480156108b557600080fd5b506108be61156b565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906142f8565b61157f565b005b3480156108f557600080fd5b506108fe6115e2565b60405161090b91906141e1565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613fc2565b611608565b005b34801561094957600080fd5b50610952611734565b60405161095f91906140b8565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a9190614338565b61173a565b005b34801561099d57600080fd5b506109a66117c5565b6040516109b391906141e1565b60405180910390f35b3480156109c857600080fd5b506109d16117ef565b6040516109de91906141e1565b60405180910390f35b3480156109f357600080fd5b506109fc611815565b604051610a0991906140b8565b60405180910390f35b348015610a1e57600080fd5b50610a396004803603810190610a34919061438b565b61181b565b005b348015610a4757600080fd5b50610a626004803603810190610a5d9190614002565b611840565b604051610a6f9190613fa7565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190614152565b611860565b005b348015610aad57600080fd5b50610ab66118fb565b604051610ac39190613e8c565b60405180910390f35b348015610ad857600080fd5b50610af36004803603810190610aee91906142f8565b61198d565b005b348015610b0157600080fd5b50610b0a611a31565b604051610b1791906140b8565b60405180910390f35b348015610b2c57600080fd5b50610b35611a37565b604051610b4291906140b8565b60405180910390f35b348015610b5757600080fd5b50610b60611a3d565b604051610b6d91906140b8565b60405180910390f35b348015610b8257600080fd5b50610b9d6004803603810190610b989190613f4c565b611a43565b604051610baa9190613fa7565b60405180910390f35b348015610bbf57600080fd5b50610bda6004803603810190610bd59190613f4c565b611aba565b604051610be79190613fa7565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190614002565b611add565b005b348015610c2557600080fd5b50610c406004803603810190610c3b9190614002565b611b29565b604051610c4d9190613fa7565b60405180910390f35b348015610c6257600080fd5b50610c7d6004803603810190610c789190614152565b611b49565b604051610c8a9190613fa7565b60405180910390f35b348015610c9f57600080fd5b50610cba6004803603810190610cb591906142f8565b611d81565b005b348015610cc857600080fd5b50610ce36004803603810190610cde9190614338565b611de4565b005b348015610cf157600080fd5b50610cfa611e6f565b005b348015610d0857600080fd5b50610d11611eb6565b604051610d1e9190613fa7565b60405180910390f35b348015610d3357600080fd5b50610d3c611ec9565b604051610d499190613fa7565b60405180910390f35b348015610d5e57600080fd5b50610d67611edc565b604051610d7491906140b8565b60405180910390f35b348015610d8957600080fd5b50610da46004803603810190610d9f9190614152565b611ee2565b604051610db19190613fa7565b60405180910390f35b348015610dc657600080fd5b50610dcf611fc3565b604051610ddc91906140b8565b60405180910390f35b348015610df157600080fd5b50610dfa611fc9565b604051610e079190613fa7565b60405180910390f35b348015610e1c57600080fd5b50610e25611fdc565b604051610e329190613fa7565b60405180910390f35b348015610e4757600080fd5b50610e626004803603810190610e5d91906143b8565b612008565b604051610e6f91906140b8565b60405180910390f35b348015610e8457600080fd5b50610e8d61208f565b604051610e9a91906140b8565b60405180910390f35b348015610eaf57600080fd5b50610eb8612095565b604051610ec591906140b8565b60405180910390f35b348015610eda57600080fd5b50610ee361209b565b604051610ef091906140b8565b60405180910390f35b348015610f0557600080fd5b50610f206004803603810190610f1b9190614002565b6120a1565b005b348015610f2e57600080fd5b50610f37612124565b604051610f4491906140b8565b60405180910390f35b348015610f5957600080fd5b50610f6261212a565b604051610f6f9190613fa7565b60405180910390f35b348015610f8457600080fd5b50610f8d612156565b604051610f9a9190613fa7565b60405180910390f35b606060038054610fb290614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614427565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b600080611040612169565b905061104d818585612171565b600191505092915050565b61106061233a565b80601a8190555081601e81905550601a546019546018546110819190614487565b61108b9190614487565b601781905550601e54601d54601c546110a49190614487565b6110ae9190614487565b601b819055506019601b5411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614507565b60405180910390fd5b60636017541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614573565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b61119961233a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600b5481565b6111f161233a565b610258831015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614605565b60405180910390fd5b6103e88211158015611249575060008210155b611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90614697565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60145481565b6112c361233a565b670de0b6b3a76400006103e860016112d9611187565b6112e391906146b7565b6112ed9190614728565b6112f79190614728565b811015611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906147cb565b60405180910390fd5b670de0b6b3a76400008161134d91906146b7565b60088190555050565b600080611361612169565b905061136e8582856123b8565b611379858585612444565b60019150509392505050565b61dead81565b61139361233a565b60005b838390508110156114325781602160008686858181106113b9576113b86147eb565b5b90506020020160208101906113ce9190614002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061142a9061481a565b915050611396565b50505050565b60006012905090565b601160029054906101000a900460ff1681565b60008061145f612169565b90506114808185856114718589612008565b61147b9190614487565b612171565b600191505092915050565b600d5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60085481565b601b5481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61157361233a565b61157d60006132bc565b565b61158761233a565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61161061233a565b670de0b6b3a76400006103e86001611626611187565b61163091906146b7565b61163a9190614728565b6116449190614728565b821015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906147cb565b60405180910390fd5b670de0b6b3a76400008261169a91906146b7565b600881905550670de0b6b3a76400006103e860056116b6611187565b6116c091906146b7565b6116ca9190614728565b6116d49190614728565b811015611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906148d4565b60405180910390fd5b670de0b6b3a76400008161172a91906146b7565b600a819055505050565b601c5481565b61174261233a565b82601c8190555081601d8190555080601e81905550601e54601d54601c5461176a9190614487565b6117749190614487565b601b819055506019601b5411156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790614507565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61182361233a565b80601160026101000a81548160ff02191690831515021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b61186861233a565b670de0b6b3a76400006103e8600561187e611187565b61188891906146b7565b6118929190614728565b61189c9190614728565b8110156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906148d4565b60405180910390fd5b670de0b6b3a7640000816118f291906146b7565b600a8190555050565b60606004805461190a90614427565b80601f016020809104026020016040519081016040528092919081815260200182805461193690614427565b80156119835780601f1061195857610100808354040283529160200191611983565b820191906000526020600020905b81548152906001019060200180831161196657829003601f168201915b5050505050905090565b61199561233a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90614966565b60405180910390fd5b611a2d8282613382565b5050565b601e5481565b60165481565b601a5481565b600080611a4e612169565b90506000611a5c8286612008565b905083811015611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a98906149f8565b60405180910390fd5b611aae8286868403612171565b60019250505092915050565b600080611ac5612169565b9050611ad2818585612444565b600191505092915050565b611ae561233a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b6000611b5361233a565b600f54601054611b639190614487565b4211611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90614a64565b60405180910390fd5b6103e8821115611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090614af6565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611c4b91906141e1565b602060405180830381865afa158015611c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8c9190614b2b565b90506000611cb7612710611ca986856133dd90919063ffffffff16565b6133f390919063ffffffff16565b90506000811115611cf057611cef7f000000000000000000000000000000000000000000000000000000000000000061dead83613409565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611d5d57600080fd5b505af1158015611d71573d6000803e3d6000fd5b5050505060019350505050919050565b611d8961233a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611dec61233a565b826018819055508160198190555080601a81905550601a54601954601854611e149190614487565b611e1e9190614487565b60178190555060636017541115611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190614573565b60405180910390fd5b505050565b611e7761233a565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601160019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b60175481565b6000611eec61233a565b620186a06001611efa611187565b611f0491906146b7565b611f0e9190614728565b821015611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614bca565b60405180910390fd5b6103e8600a611f5d611187565b611f6791906146b7565b611f719190614728565b821115611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90614c5c565b60405180910390fd5b8160098190555060019050919050565b600e5481565b601160009054906101000a900460ff1681565b6000611fe661233a565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b601d5481565b6120a961233a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90614cee565b60405180910390fd5b612121816132bc565b50565b60195481565b600061213461233a565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600c60009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614e12565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d91906140b8565b60405180910390a3505050565b612342612169565b73ffffffffffffffffffffffffffffffffffffffff166123606117c5565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614e7e565b60405180910390fd5b565b60006123c48484612008565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461243e5781811015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eea565b60405180910390fd5b61243d8484848403612171565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061500e565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c65750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061507a565b60405180910390fd5b6000810361261e5761261983836000613409565b6132b7565b601160009054906101000a900460ff1615612ce15761263b6117c5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a957506126796117c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127355750600560149054906101000a900460ff16155b15612ce057601160019054906101000a900460ff1661282f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127ef5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906150e6565b60405180910390fd5b5b601360009054906101000a900460ff16156129f75761284c6117c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128d357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129f65743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061519e565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b4157600854811115612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90615230565b60405180910390fd5b600a54612af083611523565b82612afb9190614487565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b339061529c565b60405180910390fd5b612cdf565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be45750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3357600854811115612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061532e565b60405180910390fd5b612cde565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cdd57600a54612c9083611523565b82612c9b9190614487565b1115612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd39061529c565b60405180910390fd5b5b5b5b5b5b6000612cec30611523565b905060006009548210159050808015612d115750601160029054906101000a900460ff165b8015612d2a5750600560149054906101000a900460ff16155b8015612d805750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dd65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e2c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e70576001600560146101000a81548160ff021916908315150217905550612e5461367f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ed65750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612eee5750600c60009054906101000a900460ff165b8015612f095750600d54600e54612f059190614487565b4210155b8015612f5f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e57612f6c613929565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b600081156132a757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601754115b1561315e576130be60646130b0601754886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601754601954826130d191906146b7565b6130db9190614728565b601560008282546130ec9190614487565b92505081905550601754601a548261310491906146b7565b61310e9190614728565b6016600082825461311f9190614487565b925050819055506017546018548261313791906146b7565b6131419190614728565b601460008282546131529190614487565b92505081905550613283565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b957506000601b54115b15613282576131e660646131d8601b54886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601b54601d54826131f991906146b7565b6132039190614728565b601560008282546132149190614487565b92505081905550601b54601e548261322c91906146b7565b6132369190614728565b601660008282546132479190614487565b92505081905550601b54601c548261325f91906146b7565b6132699190614728565b6014600082825461327a9190614487565b925050819055505b5b600081111561329857613297873083613409565b5b80856132a4919061534e565b94505b6132b2878787613409565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600081836133eb91906146b7565b905092915050565b600081836134019190614728565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346f90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de9061500e565b60405180910390fd5b6134f2838383613ac3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f906153f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366691906140b8565b60405180910390a3613679848484613ac8565b50505050565b600061368a30611523565b905060006016546014546015546136a19190614487565b6136ab9190614487565b90506000808314806136bd5750600082145b156136ca57505050613927565b60146009546136d991906146b7565b8311156136f25760146009546136ef91906146b7565b92505b60006002836015548661370591906146b7565b61370f9190614728565b6137199190614728565b905060006137308286613acd90919063ffffffff16565b9050600047905061374082613ae3565b60006137558247613acd90919063ffffffff16565b9050600061378087613772601454856133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060006137ab8861379d601654866133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060008183856137bc919061534e565b6137c6919061534e565b9050600060158190555060006014819055506000601681905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382690615445565b60006040518083038185875af1925050503d8060008114613863576040519150601f19603f3d011682016040523d82523d6000602084013e613868565b606091505b50508098505060008711801561387e5750600081115b1561388e5761388d8782613d20565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138d490615445565b60006040518083038185875af1925050503d8060008114613911576040519150601f19603f3d011682016040523d82523d6000602084013e613916565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161398d91906141e1565b602060405180830381865afa1580156139aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ce9190614b2b565b905060006139fb6127106139ed600b54856133dd90919063ffffffff16565b6133f390919063ffffffff16565b90506000811115613a3457613a337f000000000000000000000000000000000000000000000000000000000000000061dead83613409565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b60008183613adb919061534e565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61545a565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b456147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c0f919061549e565b81600181518110613c2357613c226147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c88307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cea9594939291906155c4565b600060405180830381600087803b158015613d0457600080fd5b505af1158015613d18573d6000803e3d6000fd5b505050505050565b613d4b307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613db29695949392919061561e565b60606040518083038185885af1158015613dd0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613df5919061567f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e36578082015181840152602081019050613e1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e5e82613dfc565b613e688185613e07565b9350613e78818560208601613e18565b613e8181613e42565b840191505092915050565b60006020820190508181036000830152613ea68184613e53565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ee382613eb8565b9050919050565b613ef381613ed8565b8114613efe57600080fd5b50565b600081359050613f1081613eea565b92915050565b6000819050919050565b613f2981613f16565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b60008060408385031215613f6357613f62613eae565b5b6000613f7185828601613f01565b9250506020613f8285828601613f37565b9150509250929050565b60008115159050919050565b613fa181613f8c565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b60008060408385031215613fd957613fd8613eae565b5b6000613fe785828601613f37565b9250506020613ff885828601613f37565b9150509250929050565b60006020828403121561401857614017613eae565b5b600061402684828501613f01565b91505092915050565b6000819050919050565b600061405461404f61404a84613eb8565b61402f565b613eb8565b9050919050565b600061406682614039565b9050919050565b60006140788261405b565b9050919050565b6140888161406d565b82525050565b60006020820190506140a3600083018461407f565b92915050565b6140b281613f16565b82525050565b60006020820190506140cd60008301846140a9565b92915050565b6140dc81613f8c565b81146140e757600080fd5b50565b6000813590506140f9816140d3565b92915050565b60008060006060848603121561411857614117613eae565b5b600061412686828701613f37565b935050602061413786828701613f37565b9250506040614148868287016140ea565b9150509250925092565b60006020828403121561416857614167613eae565b5b600061417684828501613f37565b91505092915050565b60008060006060848603121561419857614197613eae565b5b60006141a686828701613f01565b93505060206141b786828701613f01565b92505060406141c886828701613f37565b9150509250925092565b6141db81613ed8565b82525050565b60006020820190506141f660008301846141d2565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112614221576142206141fc565b5b8235905067ffffffffffffffff81111561423e5761423d614201565b5b60208301915083602082028301111561425a57614259614206565b5b9250929050565b60008060006040848603121561427a57614279613eae565b5b600084013567ffffffffffffffff81111561429857614297613eb3565b5b6142a48682870161420b565b935093505060206142b7868287016140ea565b9150509250925092565b600060ff82169050919050565b6142d7816142c1565b82525050565b60006020820190506142f260008301846142ce565b92915050565b6000806040838503121561430f5761430e613eae565b5b600061431d85828601613f01565b925050602061432e858286016140ea565b9150509250929050565b60008060006060848603121561435157614350613eae565b5b600061435f86828701613f37565b935050602061437086828701613f37565b925050604061438186828701613f37565b9150509250925092565b6000602082840312156143a1576143a0613eae565b5b60006143af848285016140ea565b91505092915050565b600080604083850312156143cf576143ce613eae565b5b60006143dd85828601613f01565b92505060206143ee85828601613f01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061443f57607f821691505b602082108103614452576144516143f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613f16565b915061449d83613f16565b92508282019050808211156144b5576144b4614458565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144f1601d83613e07565b91506144fc826144bb565b602082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b600061455d601d83613e07565b915061456882614527565b602082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006145ef603383613e07565b91506145fa82614593565b604082019050919050565b6000602082019050818103600083015261461e816145e2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614681603083613e07565b915061468c82614625565b604082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b60006146c282613f16565b91506146cd83613f16565b92508282026146db81613f16565b915082820484148315176146f2576146f1614458565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061473382613f16565b915061473e83613f16565b92508261474e5761474d6146f9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760008201527f6572207468616e20302e31250000000000000000000000000000000000000000602082015250565b60006147b5602c83613e07565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061482582613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361485757614856614458565b5b600182019050919050565b7f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60008201527f6f776572207468616e20302e3525000000000000000000000000000000000000602082015250565b60006148be602e83613e07565b91506148c982614862565b604082019050919050565b600060208201905081810360008301526148ed816148b1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614950603983613e07565b915061495b826148f4565b604082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006149e2602583613e07565b91506149ed82614986565b604082019050919050565b60006020820190508181036000830152614a11816149d5565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614a4e602083613e07565b9150614a5982614a18565b602082019050919050565b60006020820190508181036000830152614a7d81614a41565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614ae0602a83613e07565b9150614aeb82614a84565b604082019050919050565b60006020820190508181036000830152614b0f81614ad3565b9050919050565b600081519050614b2581613f20565b92915050565b600060208284031215614b4157614b40613eae565b5b6000614b4f84828501614b16565b91505092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614bb4603583613e07565b9150614bbf82614b58565b604082019050919050565b60006020820190508181036000830152614be381614ba7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614c46603283613e07565b9150614c5182614bea565b604082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cd8602683613e07565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602483613e07565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602283613e07565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e68602083613e07565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ed4601d83613e07565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f66602583613e07565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602383613e07565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f636f6e73747261696e745265706f7369746f7279656400000000000000000000600082015250565b6000615064601683613e07565b915061506f8261502e565b602082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d0601683613e07565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615188604983613e07565b915061519382615106565b606082019050919050565b600060208201905081810360008301526151b78161517b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785065725472616e73616374696f6e2e0000000000000000000000000000602082015250565b600061521a603283613e07565b9150615225826151be565b604082019050919050565b600060208201905081810360008301526152498161520d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615286601383613e07565b915061529182615250565b602082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785065725472616e73616374696f6e2e00000000000000000000000000602082015250565b6000615318603383613e07565b9150615323826152bc565b604082019050919050565b600060208201905081810360008301526153478161530b565b9050919050565b600061535982613f16565b915061536483613f16565b925082820390508181111561537c5761537b614458565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153de602683613e07565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600081905092915050565b50565b600061542f600083615414565b915061543a8261541f565b600082019050919050565b600061545082615422565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061549881613eea565b92915050565b6000602082840312156154b4576154b3613eae565b5b60006154c284828501615489565b91505092915050565b6000819050919050565b60006154f06154eb6154e6846154cb565b61402f565b613f16565b9050919050565b615500816154d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553b81613ed8565b82525050565b600061554d8383615532565b60208301905092915050565b6000602082019050919050565b600061557182615506565b61557b8185615511565b935061558683615522565b8060005b838110156155b757815161559e8882615541565b97506155a983615559565b92505060018101905061558a565b5085935050505092915050565b600060a0820190506155d960008301886140a9565b6155e660208301876154f7565b81810360408301526155f88186615566565b905061560760608301856141d2565b61561460808301846140a9565b9695505050505050565b600060c08201905061563360008301896141d2565b61564060208301886140a9565b61564d60408301876154f7565b61565a60608301866154f7565b61566760808301856141d2565b61567460a08301846140a9565b979650505050505050565b60008060006060848603121561569857615697613eae565b5b60006156a686828701614b16565b93505060206156b786828701614b16565b92505060406156c886828701614b16565b915050925092509256fea2646970667358221220a03f83a845c70c34698f12ae7a229bab8043509af61dadfc648d01a5ec13e4eb64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638ea5220f116101fd578063c17b5b8c11610118578063db05e5cb116100ab578063f11a24d31161007a578063f11a24d314610ece578063f2fde38b14610ef9578063f637434214610f22578063f8686f0714610f4d578063fa554d1f14610f78576103e4565b8063db05e5cb14610e10578063dd62ed3e14610e3b578063e2f4560514610e78578063e8148f8b14610ea3576103e4565b8063cc1776d3116100e7578063cc1776d314610d52578063d257b34f14610d7d578063da69d9ce14610dba578063daf4f66e14610de5576103e4565b8063c17b5b8c14610cbc578063c408c24514610ce5578063c53d4d5314610cfc578063c876d0b914610d27576103e4565b80639fccce3211610190578063aacebbe31161015f578063aacebbe314610bf0578063b62496f514610c19578063bcf31b3814610c56578063c024666814610c93576103e4565b80639fccce3214610b20578063a0d82dc514610b4b578063a457c2d714610b76578063a9059cbb14610bb3576103e4565b806395c39f2d116101cc57806395c39f2d14610a7857806395d89b4114610aa15780639a7a23d614610acc5780639c3b4fdc14610af5576103e4565b80638ea5220f146109bc57806392136913146109e7578063924de9b714610a1257806395aec2f814610a3b576103e4565b8063351a964d116102f857806369a926a81161028b57806375f0a8741161025a57806375f0a874146108e95780637b3c1030146109145780637bce5a041461093d5780638095d564146109685780638da5cb5b14610991576103e4565b806369a926a81461084157806370a082311461086c578063715018a6146108a95780637571336a146108c0576103e4565b80634b980d67116102c75780634b980d67146107835780634f7041a5146107ae5780634fbee193146107d95780635fc8bf4b14610816576103e4565b8063351a964d146106c557806339509351146106f0578063496327cd1461072d57806349bd5a5e14610758576103e4565b80631b721a951161037057806323b872dd1161033f57806323b872dd1461060957806327c8f83514610646578063298066b114610671578063313ce5671461069a576103e4565b80631b721a95146105615780631d61c8cf1461058c5780631f3fed8f146105b5578063203e727e146105e0576103e4565b80631694505e116103ac5780631694505e146104b757806318160ddd146104e25780631816467f1461050d5780631a8145bb14610536576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b9190613e8c565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613f4c565b611035565b6040516104489190613fa7565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fc2565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614002565b611144565b6040516104ae9190613fa7565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d9919061408e565b60405180910390f35b3480156104ee57600080fd5b506104f7611187565b60405161050491906140b8565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190614002565b611191565b005b34801561054257600080fd5b5061054b6111dd565b60405161055891906140b8565b60405180910390f35b34801561056d57600080fd5b506105766111e3565b60405161058391906140b8565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906140ff565b6111e9565b005b3480156105c157600080fd5b506105ca6112b5565b6040516105d791906140b8565b60405180910390f35b3480156105ec57600080fd5b5061060760048036038101906106029190614152565b6112bb565b005b34801561061557600080fd5b50610630600480360381019061062b919061417f565b611356565b60405161063d9190613fa7565b60405180910390f35b34801561065257600080fd5b5061065b611385565b60405161066891906141e1565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190614261565b61138b565b005b3480156106a657600080fd5b506106af611438565b6040516106bc91906142dd565b60405180910390f35b3480156106d157600080fd5b506106da611441565b6040516106e79190613fa7565b60405180910390f35b3480156106fc57600080fd5b5061071760048036038101906107129190613f4c565b611454565b6040516107249190613fa7565b60405180910390f35b34801561073957600080fd5b5061074261148b565b60405161074f91906140b8565b60405180910390f35b34801561076457600080fd5b5061076d611491565b60405161077a91906141e1565b60405180910390f35b34801561078f57600080fd5b506107986114b5565b6040516107a591906140b8565b60405180910390f35b3480156107ba57600080fd5b506107c36114bb565b6040516107d091906140b8565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190614002565b6114c1565b60405161080d9190613fa7565b60405180910390f35b34801561082257600080fd5b5061082b611517565b60405161083891906140b8565b60405180910390f35b34801561084d57600080fd5b5061085661151d565b60405161086391906140b8565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190614002565b611523565b6040516108a091906140b8565b60405180910390f35b3480156108b557600080fd5b506108be61156b565b005b3480156108cc57600080fd5b506108e760048036038101906108e291906142f8565b61157f565b005b3480156108f557600080fd5b506108fe6115e2565b60405161090b91906141e1565b60405180910390f35b34801561092057600080fd5b5061093b60048036038101906109369190613fc2565b611608565b005b34801561094957600080fd5b50610952611734565b60405161095f91906140b8565b60405180910390f35b34801561097457600080fd5b5061098f600480360381019061098a9190614338565b61173a565b005b34801561099d57600080fd5b506109a66117c5565b6040516109b391906141e1565b60405180910390f35b3480156109c857600080fd5b506109d16117ef565b6040516109de91906141e1565b60405180910390f35b3480156109f357600080fd5b506109fc611815565b604051610a0991906140b8565b60405180910390f35b348015610a1e57600080fd5b50610a396004803603810190610a34919061438b565b61181b565b005b348015610a4757600080fd5b50610a626004803603810190610a5d9190614002565b611840565b604051610a6f9190613fa7565b60405180910390f35b348015610a8457600080fd5b50610a9f6004803603810190610a9a9190614152565b611860565b005b348015610aad57600080fd5b50610ab66118fb565b604051610ac39190613e8c565b60405180910390f35b348015610ad857600080fd5b50610af36004803603810190610aee91906142f8565b61198d565b005b348015610b0157600080fd5b50610b0a611a31565b604051610b1791906140b8565b60405180910390f35b348015610b2c57600080fd5b50610b35611a37565b604051610b4291906140b8565b60405180910390f35b348015610b5757600080fd5b50610b60611a3d565b604051610b6d91906140b8565b60405180910390f35b348015610b8257600080fd5b50610b9d6004803603810190610b989190613f4c565b611a43565b604051610baa9190613fa7565b60405180910390f35b348015610bbf57600080fd5b50610bda6004803603810190610bd59190613f4c565b611aba565b604051610be79190613fa7565b60405180910390f35b348015610bfc57600080fd5b50610c176004803603810190610c129190614002565b611add565b005b348015610c2557600080fd5b50610c406004803603810190610c3b9190614002565b611b29565b604051610c4d9190613fa7565b60405180910390f35b348015610c6257600080fd5b50610c7d6004803603810190610c789190614152565b611b49565b604051610c8a9190613fa7565b60405180910390f35b348015610c9f57600080fd5b50610cba6004803603810190610cb591906142f8565b611d81565b005b348015610cc857600080fd5b50610ce36004803603810190610cde9190614338565b611de4565b005b348015610cf157600080fd5b50610cfa611e6f565b005b348015610d0857600080fd5b50610d11611eb6565b604051610d1e9190613fa7565b60405180910390f35b348015610d3357600080fd5b50610d3c611ec9565b604051610d499190613fa7565b60405180910390f35b348015610d5e57600080fd5b50610d67611edc565b604051610d7491906140b8565b60405180910390f35b348015610d8957600080fd5b50610da46004803603810190610d9f9190614152565b611ee2565b604051610db19190613fa7565b60405180910390f35b348015610dc657600080fd5b50610dcf611fc3565b604051610ddc91906140b8565b60405180910390f35b348015610df157600080fd5b50610dfa611fc9565b604051610e079190613fa7565b60405180910390f35b348015610e1c57600080fd5b50610e25611fdc565b604051610e329190613fa7565b60405180910390f35b348015610e4757600080fd5b50610e626004803603810190610e5d91906143b8565b612008565b604051610e6f91906140b8565b60405180910390f35b348015610e8457600080fd5b50610e8d61208f565b604051610e9a91906140b8565b60405180910390f35b348015610eaf57600080fd5b50610eb8612095565b604051610ec591906140b8565b60405180910390f35b348015610eda57600080fd5b50610ee361209b565b604051610ef091906140b8565b60405180910390f35b348015610f0557600080fd5b50610f206004803603810190610f1b9190614002565b6120a1565b005b348015610f2e57600080fd5b50610f37612124565b604051610f4491906140b8565b60405180910390f35b348015610f5957600080fd5b50610f6261212a565b604051610f6f9190613fa7565b60405180910390f35b348015610f8457600080fd5b50610f8d612156565b604051610f9a9190613fa7565b60405180910390f35b606060038054610fb290614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614427565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b600080611040612169565b905061104d818585612171565b600191505092915050565b61106061233a565b80601a8190555081601e81905550601a546019546018546110819190614487565b61108b9190614487565b601781905550601e54601d54601c546110a49190614487565b6110ae9190614487565b601b819055506019601b5411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614507565b60405180910390fd5b60636017541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614573565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b61119961233a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60155481565b600b5481565b6111f161233a565b610258831015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614605565b60405180910390fd5b6103e88211158015611249575060008210155b611288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127f90614697565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60145481565b6112c361233a565b670de0b6b3a76400006103e860016112d9611187565b6112e391906146b7565b6112ed9190614728565b6112f79190614728565b811015611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906147cb565b60405180910390fd5b670de0b6b3a76400008161134d91906146b7565b60088190555050565b600080611361612169565b905061136e8582856123b8565b611379858585612444565b60019150509392505050565b61dead81565b61139361233a565b60005b838390508110156114325781602160008686858181106113b9576113b86147eb565b5b90506020020160208101906113ce9190614002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061142a9061481a565b915050611396565b50505050565b60006012905090565b601160029054906101000a900460ff1681565b60008061145f612169565b90506114808185856114718589612008565b61147b9190614487565b612171565b600191505092915050565b600d5481565b7f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d81565b60085481565b601b5481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60105481565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61157361233a565b61157d60006132bc565b565b61158761233a565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61161061233a565b670de0b6b3a76400006103e86001611626611187565b61163091906146b7565b61163a9190614728565b6116449190614728565b821015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d906147cb565b60405180910390fd5b670de0b6b3a76400008261169a91906146b7565b600881905550670de0b6b3a76400006103e860056116b6611187565b6116c091906146b7565b6116ca9190614728565b6116d49190614728565b811015611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906148d4565b60405180910390fd5b670de0b6b3a76400008161172a91906146b7565b600a819055505050565b601c5481565b61174261233a565b82601c8190555081601d8190555080601e81905550601e54601d54601c5461176a9190614487565b6117749190614487565b601b819055506019601b5411156117c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b790614507565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61182361233a565b80601160026101000a81548160ff02191690831515021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b61186861233a565b670de0b6b3a76400006103e8600561187e611187565b61188891906146b7565b6118929190614728565b61189c9190614728565b8110156118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906148d4565b60405180910390fd5b670de0b6b3a7640000816118f291906146b7565b600a8190555050565b60606004805461190a90614427565b80601f016020809104026020016040519081016040528092919081815260200182805461193690614427565b80156119835780601f1061195857610100808354040283529160200191611983565b820191906000526020600020905b81548152906001019060200180831161196657829003601f168201915b5050505050905090565b61199561233a565b7f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90614966565b60405180910390fd5b611a2d8282613382565b5050565b601e5481565b60165481565b601a5481565b600080611a4e612169565b90506000611a5c8286612008565b905083811015611aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a98906149f8565b60405180910390fd5b611aae8286868403612171565b60019250505092915050565b600080611ac5612169565b9050611ad2818585612444565b600191505092915050565b611ae561233a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b6000611b5361233a565b600f54601054611b639190614487565b4211611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90614a64565b60405180910390fd5b6103e8821115611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be090614af6565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d6040518263ffffffff1660e01b8152600401611c4b91906141e1565b602060405180830381865afa158015611c68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c8c9190614b2b565b90506000611cb7612710611ca986856133dd90919063ffffffff16565b6133f390919063ffffffff16565b90506000811115611cf057611cef7f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d61dead83613409565b5b60007f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611d5d57600080fd5b505af1158015611d71573d6000803e3d6000fd5b5050505060019350505050919050565b611d8961233a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611dec61233a565b826018819055508160198190555080601a81905550601a54601954601854611e149190614487565b611e1e9190614487565b60178190555060636017541115611e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6190614573565b60405180910390fd5b505050565b611e7761233a565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601160019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b60175481565b6000611eec61233a565b620186a06001611efa611187565b611f0491906146b7565b611f0e9190614728565b821015611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614bca565b60405180910390fd5b6103e8600a611f5d611187565b611f6791906146b7565b611f719190614728565b821115611fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611faa90614c5c565b60405180910390fd5b8160098190555060019050919050565b600e5481565b601160009054906101000a900460ff1681565b6000611fe661233a565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600f5481565b601d5481565b6120a961233a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612118576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210f90614cee565b60405180910390fd5b612121816132bc565b50565b60195481565b600061213461233a565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600c60009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614e12565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d91906140b8565b60405180910390a3505050565b612342612169565b73ffffffffffffffffffffffffffffffffffffffff166123606117c5565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614e7e565b60405180910390fd5b565b60006123c48484612008565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461243e5781811015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eea565b60405180910390fd5b61243d8484848403612171565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061500e565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c65750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061507a565b60405180910390fd5b6000810361261e5761261983836000613409565b6132b7565b601160009054906101000a900460ff1615612ce15761263b6117c5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a957506126796117c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127355750600560149054906101000a900460ff16155b15612ce057601160019054906101000a900460ff1661282f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127ef5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906150e6565b60405180910390fd5b5b601360009054906101000a900460ff16156129f75761284c6117c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128d357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292b57507f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129f65743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061519e565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b4157600854811115612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90615230565b60405180910390fd5b600a54612af083611523565b82612afb9190614487565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b339061529c565b60405180910390fd5b612cdf565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be45750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3357600854811115612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061532e565b60405180910390fd5b612cde565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cdd57600a54612c9083611523565b82612c9b9190614487565b1115612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd39061529c565b60405180910390fd5b5b5b5b5b5b6000612cec30611523565b905060006009548210159050808015612d115750601160029054906101000a900460ff165b8015612d2a5750600560149054906101000a900460ff16155b8015612d805750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dd65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e2c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e70576001600560146101000a81548160ff021916908315150217905550612e5461367f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ed65750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612eee5750600c60009054906101000a900460ff165b8015612f095750600d54600e54612f059190614487565b4210155b8015612f5f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e57612f6c613929565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b600081156132a757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601754115b1561315e576130be60646130b0601754886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601754601954826130d191906146b7565b6130db9190614728565b601560008282546130ec9190614487565b92505081905550601754601a548261310491906146b7565b61310e9190614728565b6016600082825461311f9190614487565b925050819055506017546018548261313791906146b7565b6131419190614728565b601460008282546131529190614487565b92505081905550613283565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b957506000601b54115b15613282576131e660646131d8601b54886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601b54601d54826131f991906146b7565b6132039190614728565b601560008282546132149190614487565b92505081905550601b54601e548261322c91906146b7565b6132369190614728565b601660008282546132479190614487565b92505081905550601b54601c548261325f91906146b7565b6132699190614728565b6014600082825461327a9190614487565b925050819055505b5b600081111561329857613297873083613409565b5b80856132a4919061534e565b94505b6132b2878787613409565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600081836133eb91906146b7565b905092915050565b600081836134019190614728565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346f90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de9061500e565b60405180910390fd5b6134f2838383613ac3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f906153f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366691906140b8565b60405180910390a3613679848484613ac8565b50505050565b600061368a30611523565b905060006016546014546015546136a19190614487565b6136ab9190614487565b90506000808314806136bd5750600082145b156136ca57505050613927565b60146009546136d991906146b7565b8311156136f25760146009546136ef91906146b7565b92505b60006002836015548661370591906146b7565b61370f9190614728565b6137199190614728565b905060006137308286613acd90919063ffffffff16565b9050600047905061374082613ae3565b60006137558247613acd90919063ffffffff16565b9050600061378087613772601454856133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060006137ab8861379d601654866133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060008183856137bc919061534e565b6137c6919061534e565b9050600060158190555060006014819055506000601681905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382690615445565b60006040518083038185875af1925050503d8060008114613863576040519150601f19603f3d011682016040523d82523d6000602084013e613868565b606091505b50508098505060008711801561387e5750600081115b1561388e5761388d8782613d20565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138d490615445565b60006040518083038185875af1925050503d8060008114613911576040519150601f19603f3d011682016040523d82523d6000602084013e613916565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d6040518263ffffffff1660e01b815260040161398d91906141e1565b602060405180830381865afa1580156139aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ce9190614b2b565b905060006139fb6127106139ed600b54856133dd90919063ffffffff16565b6133f390919063ffffffff16565b90506000811115613a3457613a337f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d61dead83613409565b5b60007f000000000000000000000000b97d7a9b074b007c2cd6cc974a6d2e6ef450884d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b60008183613adb919061534e565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61545a565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b456147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c0f919061549e565b81600181518110613c2357613c226147eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cea9594939291906155c4565b600060405180830381600087803b158015613d0457600080fd5b505af1158015613d18573d6000803e3d6000fd5b505050505050565b613d4b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613db29695949392919061561e565b60606040518083038185885af1158015613dd0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613df5919061567f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e36578082015181840152602081019050613e1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e5e82613dfc565b613e688185613e07565b9350613e78818560208601613e18565b613e8181613e42565b840191505092915050565b60006020820190508181036000830152613ea68184613e53565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ee382613eb8565b9050919050565b613ef381613ed8565b8114613efe57600080fd5b50565b600081359050613f1081613eea565b92915050565b6000819050919050565b613f2981613f16565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b60008060408385031215613f6357613f62613eae565b5b6000613f7185828601613f01565b9250506020613f8285828601613f37565b9150509250929050565b60008115159050919050565b613fa181613f8c565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b60008060408385031215613fd957613fd8613eae565b5b6000613fe785828601613f37565b9250506020613ff885828601613f37565b9150509250929050565b60006020828403121561401857614017613eae565b5b600061402684828501613f01565b91505092915050565b6000819050919050565b600061405461404f61404a84613eb8565b61402f565b613eb8565b9050919050565b600061406682614039565b9050919050565b60006140788261405b565b9050919050565b6140888161406d565b82525050565b60006020820190506140a3600083018461407f565b92915050565b6140b281613f16565b82525050565b60006020820190506140cd60008301846140a9565b92915050565b6140dc81613f8c565b81146140e757600080fd5b50565b6000813590506140f9816140d3565b92915050565b60008060006060848603121561411857614117613eae565b5b600061412686828701613f37565b935050602061413786828701613f37565b9250506040614148868287016140ea565b9150509250925092565b60006020828403121561416857614167613eae565b5b600061417684828501613f37565b91505092915050565b60008060006060848603121561419857614197613eae565b5b60006141a686828701613f01565b93505060206141b786828701613f01565b92505060406141c886828701613f37565b9150509250925092565b6141db81613ed8565b82525050565b60006020820190506141f660008301846141d2565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112614221576142206141fc565b5b8235905067ffffffffffffffff81111561423e5761423d614201565b5b60208301915083602082028301111561425a57614259614206565b5b9250929050565b60008060006040848603121561427a57614279613eae565b5b600084013567ffffffffffffffff81111561429857614297613eb3565b5b6142a48682870161420b565b935093505060206142b7868287016140ea565b9150509250925092565b600060ff82169050919050565b6142d7816142c1565b82525050565b60006020820190506142f260008301846142ce565b92915050565b6000806040838503121561430f5761430e613eae565b5b600061431d85828601613f01565b925050602061432e858286016140ea565b9150509250929050565b60008060006060848603121561435157614350613eae565b5b600061435f86828701613f37565b935050602061437086828701613f37565b925050604061438186828701613f37565b9150509250925092565b6000602082840312156143a1576143a0613eae565b5b60006143af848285016140ea565b91505092915050565b600080604083850312156143cf576143ce613eae565b5b60006143dd85828601613f01565b92505060206143ee85828601613f01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061443f57607f821691505b602082108103614452576144516143f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613f16565b915061449d83613f16565b92508282019050808211156144b5576144b4614458565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144f1601d83613e07565b91506144fc826144bb565b602082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b600061455d601d83613e07565b915061456882614527565b602082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006145ef603383613e07565b91506145fa82614593565b604082019050919050565b6000602082019050818103600083015261461e816145e2565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614681603083613e07565b915061468c82614625565b604082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b60006146c282613f16565b91506146cd83613f16565b92508282026146db81613f16565b915082820484148315176146f2576146f1614458565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061473382613f16565b915061473e83613f16565b92508261474e5761474d6146f9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760008201527f6572207468616e20302e31250000000000000000000000000000000000000000602082015250565b60006147b5602c83613e07565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061482582613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361485757614856614458565b5b600182019050919050565b7f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60008201527f6f776572207468616e20302e3525000000000000000000000000000000000000602082015250565b60006148be602e83613e07565b91506148c982614862565b604082019050919050565b600060208201905081810360008301526148ed816148b1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614950603983613e07565b915061495b826148f4565b604082019050919050565b6000602082019050818103600083015261497f81614943565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006149e2602583613e07565b91506149ed82614986565b604082019050919050565b60006020820190508181036000830152614a11816149d5565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614a4e602083613e07565b9150614a5982614a18565b602082019050919050565b60006020820190508181036000830152614a7d81614a41565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614ae0602a83613e07565b9150614aeb82614a84565b604082019050919050565b60006020820190508181036000830152614b0f81614ad3565b9050919050565b600081519050614b2581613f20565b92915050565b600060208284031215614b4157614b40613eae565b5b6000614b4f84828501614b16565b91505092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614bb4603583613e07565b9150614bbf82614b58565b604082019050919050565b60006020820190508181036000830152614be381614ba7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614c46603283613e07565b9150614c5182614bea565b604082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614cd8602683613e07565b9150614ce382614c7c565b604082019050919050565b60006020820190508181036000830152614d0781614ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602483613e07565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602283613e07565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e68602083613e07565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ed4601d83613e07565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f66602583613e07565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602383613e07565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f636f6e73747261696e745265706f7369746f7279656400000000000000000000600082015250565b6000615064601683613e07565b915061506f8261502e565b602082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d0601683613e07565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615188604983613e07565b915061519382615106565b606082019050919050565b600060208201905081810360008301526151b78161517b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785065725472616e73616374696f6e2e0000000000000000000000000000602082015250565b600061521a603283613e07565b9150615225826151be565b604082019050919050565b600060208201905081810360008301526152498161520d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615286601383613e07565b915061529182615250565b602082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785065725472616e73616374696f6e2e00000000000000000000000000602082015250565b6000615318603383613e07565b9150615323826152bc565b604082019050919050565b600060208201905081810360008301526153478161530b565b9050919050565b600061535982613f16565b915061536483613f16565b925082820390508181111561537c5761537b614458565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153de602683613e07565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600081905092915050565b50565b600061542f600083615414565b915061543a8261541f565b600082019050919050565b600061545082615422565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061549881613eea565b92915050565b6000602082840312156154b4576154b3613eae565b5b60006154c284828501615489565b91505092915050565b6000819050919050565b60006154f06154eb6154e6846154cb565b61402f565b613f16565b9050919050565b615500816154d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553b81613ed8565b82525050565b600061554d8383615532565b60208301905092915050565b6000602082019050919050565b600061557182615506565b61557b8185615511565b935061558683615522565b8060005b838110156155b757815161559e8882615541565b97506155a983615559565b92505060018101905061558a565b5085935050505092915050565b600060a0820190506155d960008301886140a9565b6155e660208301876154f7565b81810360408301526155f88186615566565b905061560760608301856141d2565b61561460808301846140a9565b9695505050505050565b600060c08201905061563360008301896141d2565b61564060208301886140a9565b61564d60408301876154f7565b61565a60608301866154f7565b61566760808301856141d2565b61567460a08301846140a9565b979650505050505050565b60008060006060848603121561569857615697613eae565b5b60006156a686828701614b16565b93505060206156b786828701614b16565b92505060406156c886828701614b16565b915050925092509256fea2646970667358221220a03f83a845c70c34698f12ae7a229bab8043509af61dadfc648d01a5ec13e4eb64736f6c63430008130033

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.