ETH Price: $2,967.43 (+3.58%)
Gas: 3 Gwei

Token

Live2Earn (LIVE)
 

Overview

Max Total Supply

1,920,000,000 LIVE

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,608,091.185793707253403732 LIVE

Value
$0.00
0x7b29c3f7648e825a774a89463a35ad1b5895c490
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:
Live2Earn

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Live2Earn.sol
/**

Live2Earn | $LIVE

The native token of the Live2Earn platform.

Website: https://www.live2earn.live
Twitter: https://twitter.com/Live2EarnERC
Telegram: http://t.me/Live2EarnERC

•Buys are taxed at 4% per transaction:

2% - Rewards 
1% - Marketing & Development 
1% - Auto LP 

•Sells are taxed at 6% per transaction:

2% Rewards 
2% Marketing & Development 
1% Auto LP
1% Team

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/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 private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

	address public rewardsWallet;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
	uint256 public buyRewardsFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
	uint256 public sellRewardsFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Live2Earn", "LIVE") {
        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 _buyRewardsFee = 2;
        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;

		uint256 _sellRewardsFee = 2;
        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 1920000000 * 1e18;

        maxTransactionAmount = 38400000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 38400000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

		buyRewardsFee = _buyRewardsFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyRewardsFee + buyMarketingFee + buyLiquidityFee + buyDevFee;

		sellRewardsFee = _sellRewardsFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellRewardsFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

		rewardsWallet = address(0xf502974500873946448138e1efE08E2c43f9a4C1); // set as rewards wallet
        marketingWallet = address(0xD07747641383A5c56e5413F895a84508c77583f9); // set as marketing wallet
        devWallet = address(0x1126391F4c3688C1798Fa9e4265C6424E50c3C30); // 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 is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() 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() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = 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 {
        swapEnabled = enabled;
    }

    function updateBuyFees(
		uint256 _rewardsFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_rewardsFee + _marketingFee + _liquidityFee + _devFee) <= 8, "Max BuyFee 8%");
		buyRewardsFee = _rewardsFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyRewardsFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _rewardsFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_rewardsFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		sellRewardsFee = _rewardsFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellRewardsFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(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;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    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 <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // 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] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
				tokensForRewards += (fees * sellRewardsFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForRewards += (fees * buyRewardsFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            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
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForRewards + 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 ethForRewards = ethBalance.mul(tokensForRewards).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForRewards - ethForMarketing - ethForDev;

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

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


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","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":[{"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":"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":"buyRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","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":[{"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":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"sellRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","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":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokensForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"_rewardsFee","type":"uint256"},{"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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsFee","type":"uint256"},{"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f4c697665324561726e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c4956450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b7d565b5080600490805190602001906200011b92919062000b7d565b5050506200013e620001326200063d60201b60201c565b6200064560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200070b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c97565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c97565b6040518363ffffffff1660e01b8152600401620002bd92919062000cda565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c97565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200070b60201b60201c565b6200036060a0516001620007f560201b60201c565b6000600290506000600190506000600190506000806002905060006002905060006001905060006001905060006b06342fd08f00f6378000000090506a1fc3842bd1f071c00000006009819055506a1fc3842bd1f071c0000000600b81905550612710600a82620003d2919062000d40565b620003de919062000dd0565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000418919062000e08565b62000424919062000e08565b62000430919062000e08565b600f81905550846015819055508360168190555082601781905550816018819055506018546017546016546015546200046a919062000e08565b62000476919062000e08565b62000482919062000e08565b60148190555073f502974500873946448138e1efe08e2c43f9a4c1600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d07747641383a5c56e5413f895a84508c77583f9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731126391f4c3688c1798fa9e4265c6424e50c3c30600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005a96200059b6200089660201b60201c565b6001620008c060201b60201c565b620005bc306001620008c060201b60201c565b620005d161dead6001620008c060201b60201c565b620005f3620005e56200089660201b60201c565b60016200070b60201b60201c565b620006063060016200070b60201b60201c565b6200061b61dead60016200070b60201b60201c565b6200062d3382620009fa60201b60201c565b5050505050505050505062001027565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200071b6200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007416200089660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200079a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007919062000ec6565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008d06200063d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008f66200089660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200094f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009469062000ec6565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009ee919062000f05565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a649062000f72565b60405180910390fd5b62000a816000838362000b7360201b60201c565b806002600082825462000a95919062000e08565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000aec919062000e08565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b53919062000fa5565b60405180910390a362000b6f6000838362000b7860201b60201c565b5050565b505050565b505050565b82805462000b8b9062000ff1565b90600052602060002090601f01602090048101928262000baf576000855562000bfb565b82601f1062000bca57805160ff191683800117855562000bfb565b8280016001018555821562000bfb579182015b8281111562000bfa57825182559160200191906001019062000bdd565b5b50905062000c0a919062000c0e565b5090565b5b8082111562000c2957600081600090555060010162000c0f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c5f8262000c32565b9050919050565b62000c718162000c52565b811462000c7d57600080fd5b50565b60008151905062000c918162000c66565b92915050565b60006020828403121562000cb05762000caf62000c2d565b5b600062000cc08482850162000c80565b91505092915050565b62000cd48162000c52565b82525050565b600060408201905062000cf1600083018562000cc9565b62000d00602083018462000cc9565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d4d8262000d07565b915062000d5a8362000d07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d965762000d9562000d11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ddd8262000d07565b915062000dea8362000d07565b92508262000dfd5762000dfc62000da1565b5b828204905092915050565b600062000e158262000d07565b915062000e228362000d07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e5a5762000e5962000d11565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eae60208362000e65565b915062000ebb8262000e76565b602082019050919050565b6000602082019050818103600083015262000ee18162000e9f565b9050919050565b60008115159050919050565b62000eff8162000ee8565b82525050565b600060208201905062000f1c600083018462000ef4565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f5a601f8362000e65565b915062000f678262000f22565b602082019050919050565b6000602082019050818103600083015262000f8d8162000f4b565b9050919050565b62000f9f8162000d07565b82525050565b600060208201905062000fbc600083018462000f94565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100a57607f821691505b6020821081141562001021576200102062000fc2565b5b50919050565b60805160a0516150cf62001085600039600081816112700152818161186601526126f8015260008181610e41015281816126a0015281816138d4015281816139b5015281816139dc01528181613a780152613a9f01526150cf6000f3fe60806040526004361061036f5760003560e01c80638ea5220f116101c6578063c18bc195116100f7578063e7ad9fcd11610095578063f2fde38b1161006f578063f2fde38b14610cc5578063f54afa7814610cee578063f637434214610d19578063f8b45b0514610d4457610376565b8063e7ad9fcd14610c46578063e884f26014610c6f578063f11a24d314610c9a57610376565b8063d257b34f116100d1578063d257b34f14610b76578063d85ba06314610bb3578063dd62ed3e14610bde578063e2f4560514610c1b57610376565b8063c18bc19514610af7578063c876d0b914610b20578063c8c8ebe414610b4b57610376565b8063a0d82dc511610164578063b62496f51161013e578063b62496f514610a3b578063bb8d513114610a78578063bbc0c74214610aa3578063c024666814610ace57610376565b8063a0d82dc514610996578063a457c2d7146109c1578063a9059cbb146109fe57610376565b806395d89b41116101a057806395d89b41146108ec5780639a7a23d6146109175780639c3b4fdc146109405780639fccce321461096b57610376565b80638ea5220f1461086d5780639213691314610898578063924de9b7146108c357610376565b80634a62bb65116102a0578063751039fc1161023e57806377a3b6091161021857806377a3b609146107d55780637bce5a04146108005780638a8c523c1461082b5780638da5cb5b1461084257610376565b8063751039fc146107565780637571336a1461078157806375f0a874146107aa57610376565b80636a486a8e1161027a5780636a486a8e146106ac5780636ddd1713146106d757806370a0823114610702578063715018a61461073f57610376565b80634a62bb65146106195780634fbee193146106445780635b35f9c91461068157610376565b8063203e727e1161030d5780632e6ed7ef116102e75780632e6ed7ef1461055d578063313ce5671461058657806339509351146105b157806349bd5a5e146105ee57610376565b8063203e727e146104cc57806323b872dd146104f557806327c8f8351461053257610376565b80631694505e116103495780631694505e1461042057806318160ddd1461044b5780631a8145bb146104765780631f3fed8f146104a157610376565b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613c07565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cc2565b610e01565b6040516103da9190613d1d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613d38565b610e1f565b6040516104179190613d1d565b60405180910390f35b34801561042c57600080fd5b50610435610e3f565b6040516104429190613dc4565b60405180910390f35b34801561045757600080fd5b50610460610e63565b60405161046d9190613dee565b60405180910390f35b34801561048257600080fd5b5061048b610e6d565b6040516104989190613dee565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613dee565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613e09565b610e79565b005b34801561050157600080fd5b5061051c60048036038101906105179190613e36565b610f88565b6040516105299190613d1d565b60405180910390f35b34801561053e57600080fd5b50610547611080565b6040516105549190613e98565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613eb3565b611086565b005b34801561059257600080fd5b5061059b6111b9565b6040516105a89190613f36565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613cc2565b6111c2565b6040516105e59190613d1d565b60405180910390f35b3480156105fa57600080fd5b5061060361126e565b6040516106109190613e98565b60405180910390f35b34801561062557600080fd5b5061062e611292565b60405161063b9190613d1d565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613d38565b6112a5565b6040516106789190613d1d565b60405180910390f35b34801561068d57600080fd5b506106966112fb565b6040516106a39190613e98565b60405180910390f35b3480156106b857600080fd5b506106c1611321565b6040516106ce9190613dee565b60405180910390f35b3480156106e357600080fd5b506106ec611327565b6040516106f99190613d1d565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190613d38565b61133a565b6040516107369190613dee565b60405180910390f35b34801561074b57600080fd5b50610754611382565b005b34801561076257600080fd5b5061076b61140a565b6040516107789190613d1d565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190613f7d565b6114aa565b005b3480156107b657600080fd5b506107bf611581565b6040516107cc9190613e98565b60405180910390f35b3480156107e157600080fd5b506107ea6115a7565b6040516107f79190613dee565b60405180910390f35b34801561080c57600080fd5b506108156115ad565b6040516108229190613dee565b60405180910390f35b34801561083757600080fd5b506108406115b3565b005b34801561084e57600080fd5b50610857611667565b6040516108649190613e98565b60405180910390f35b34801561087957600080fd5b50610882611691565b60405161088f9190613e98565b60405180910390f35b3480156108a457600080fd5b506108ad6116b7565b6040516108ba9190613dee565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613fbd565b6116bd565b005b3480156108f857600080fd5b50610901611756565b60405161090e9190613c07565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190613f7d565b6117e8565b005b34801561094c57600080fd5b50610955611901565b6040516109629190613dee565b60405180910390f35b34801561097757600080fd5b50610980611907565b60405161098d9190613dee565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613dee565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613cc2565b611913565b6040516109f59190613d1d565b60405180910390f35b348015610a0a57600080fd5b50610a256004803603810190610a209190613cc2565b6119fe565b604051610a329190613d1d565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190613d38565b611a1c565b604051610a6f9190613d1d565b60405180910390f35b348015610a8457600080fd5b50610a8d611a3c565b604051610a9a9190613dee565b60405180910390f35b348015610aaf57600080fd5b50610ab8611a42565b604051610ac59190613d1d565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af09190613f7d565b611a55565b005b348015610b0357600080fd5b50610b1e6004803603810190610b199190613e09565b611b7a565b005b348015610b2c57600080fd5b50610b35611c89565b604051610b429190613d1d565b60405180910390f35b348015610b5757600080fd5b50610b60611c9c565b604051610b6d9190613dee565b60405180910390f35b348015610b8257600080fd5b50610b9d6004803603810190610b989190613e09565b611ca2565b604051610baa9190613d1d565b60405180910390f35b348015610bbf57600080fd5b50610bc8611df7565b604051610bd59190613dee565b60405180910390f35b348015610bea57600080fd5b50610c056004803603810190610c009190613fea565b611dfd565b604051610c129190613dee565b60405180910390f35b348015610c2757600080fd5b50610c30611e84565b604051610c3d9190613dee565b60405180910390f35b348015610c5257600080fd5b50610c6d6004803603810190610c689190613eb3565b611e8a565b005b348015610c7b57600080fd5b50610c84611fbd565b604051610c919190613d1d565b60405180910390f35b348015610ca657600080fd5b50610caf61205d565b604051610cbc9190613dee565b60405180910390f35b348015610cd157600080fd5b50610cec6004803603810190610ce79190613d38565b612063565b005b348015610cfa57600080fd5b50610d0361215b565b604051610d109190613dee565b60405180910390f35b348015610d2557600080fd5b50610d2e612161565b604051610d3b9190613dee565b60405180910390f35b348015610d5057600080fd5b50610d59612167565b604051610d669190613dee565b60405180910390f35b606060038054610d7e90614059565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614059565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216d565b8484612175565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e8161216d565b73ffffffffffffffffffffffffffffffffffffffff16610e9f611667565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906140d7565b60405180910390fd5b670de0b6b3a76400006103e86001610f0b610e63565b610f159190614126565b610f1f91906141af565b610f2991906141af565b811015610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290614252565b60405180910390fd5b670de0b6b3a764000081610f7f9190614126565b60098190555050565b6000610f95848484612340565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe061216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611057906142e4565b60405180910390fd5b6110748561106c61216d565b858403612175565b60019150509392505050565b61dead81565b61108e61216d565b73ffffffffffffffffffffffffffffffffffffffff166110ac611667565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906140d7565b60405180910390fd5b6008818385876111129190614304565b61111c9190614304565b6111269190614304565b1115611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906143a6565b60405180910390fd5b836010819055508260118190555081601281905550806013819055506013546012546011546010546111999190614304565b6111a39190614304565b6111ad9190614304565b600f8190555050505050565b60006012905090565b60006112646111cf61216d565b8484600160006111dd61216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125f9190614304565b612175565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138a61216d565b73ffffffffffffffffffffffffffffffffffffffff166113a8611667565b73ffffffffffffffffffffffffffffffffffffffff16146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906140d7565b60405180910390fd5b6114086000613040565b565b600061141461216d565b73ffffffffffffffffffffffffffffffffffffffff16611432611667565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906140d7565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6114b261216d565b73ffffffffffffffffffffffffffffffffffffffff166114d0611667565b73ffffffffffffffffffffffffffffffffffffffff1614611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906140d7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60115481565b6115bb61216d565b73ffffffffffffffffffffffffffffffffffffffff166115d9611667565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906140d7565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116c561216d565b73ffffffffffffffffffffffffffffffffffffffff166116e3611667565b73ffffffffffffffffffffffffffffffffffffffff1614611739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611730906140d7565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176590614059565b80601f016020809104026020016040519081016040528092919081815260200182805461179190614059565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b6117f061216d565b73ffffffffffffffffffffffffffffffffffffffff1661180e611667565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906140d7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90614438565b60405180910390fd5b6118fd8282613106565b5050565b60135481565b601c5481565b60185481565b6000806001600061192261216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d6906144ca565b60405180910390fd5b6119f36119ea61216d565b85858403612175565b600191505092915050565b6000611a12611a0b61216d565b8484612340565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b60155481565b600c60019054906101000a900460ff1681565b611a5d61216d565b73ffffffffffffffffffffffffffffffffffffffff16611a7b611667565b73ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906140d7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b6e9190613d1d565b60405180910390a25050565b611b8261216d565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611667565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005611c0c610e63565b611c169190614126565b611c2091906141af565b611c2a91906141af565b811015611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c639061455c565b60405180910390fd5b670de0b6b3a764000081611c809190614126565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cac61216d565b73ffffffffffffffffffffffffffffffffffffffff16611cca611667565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906140d7565b60405180910390fd5b620186a06001611d2e610e63565b611d389190614126565b611d4291906141af565b821015611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b906145ee565b60405180910390fd5b6103e86005611d91610e63565b611d9b9190614126565b611da591906141af565b821115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90614680565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9261216d565b73ffffffffffffffffffffffffffffffffffffffff16611eb0611667565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd906140d7565b60405180910390fd5b600a81838587611f169190614304565b611f209190614304565b611f2a9190614304565b1115611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906146ec565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f9d9190614304565b611fa79190614304565b611fb19190614304565b60148190555050505050565b6000611fc761216d565b73ffffffffffffffffffffffffffffffffffffffff16611fe5611667565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906140d7565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61206b61216d565b73ffffffffffffffffffffffffffffffffffffffff16612089611667565b73ffffffffffffffffffffffffffffffffffffffff16146120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906140d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121469061477e565b60405180910390fd5b61215881613040565b50565b60195481565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c906148a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123339190613dee565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906149c6565b60405180910390fd5b600081141561243a57612435838360006131a7565b61303b565b600c60009054906101000a900460ff1615612afd57612457611667565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124c55750612495611667565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612538575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125515750600560149054906101000a900460ff16155b15612afc57600c60019054906101000a900460ff1661264b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061260b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614a32565b60405180910390fd5b5b600e60009054906101000a900460ff161561281357612668611667565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ef57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128125743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614aea565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295d57600954811115612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614b7c565b60405180910390fd5b600b5461290c8361133a565b826129179190614304565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614be8565b60405180910390fd5b612afb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a005750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4f57600954811115612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614c7a565b60405180910390fd5b612afa565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af957600b54612aac8361133a565b82612ab79190614304565b1115612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614be8565b60405180910390fd5b5b5b5b5b5b6000612b083061133a565b90506000600a548210159050808015612b2d5750600c60029054906101000a900460ff165b8015612b465750600560149054906101000a900460ff16155b8015612b9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf25750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c485750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8c576001600560146101000a81548160ff021916908315150217905550612c70613428565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d425750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4c57600090505b6000811561302b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daf57506000601454115b15612eaf57612ddc6064612dce601454886137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060145460155482612def9190614126565b612df991906141af565b60196000828254612e0a9190614304565b9250508190555060145460175482612e229190614126565b612e2c91906141af565b601b6000828254612e3d9190614304565b9250508190555060145460185482612e559190614126565b612e5f91906141af565b601c6000828254612e709190614304565b9250508190555060145460165482612e889190614126565b612e9291906141af565b601a6000828254612ea39190614304565b92505081905550613007565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a57506000600f54115b1561300657612f376064612f29600f54886137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600f5460105482612f4a9190614126565b612f5491906141af565b60196000828254612f659190614304565b92505081905550600f5460125482612f7d9190614126565b612f8791906141af565b601b6000828254612f989190614304565b92505081905550600f5460135482612fb09190614126565b612fba91906141af565b601c6000828254612fcb9190614304565b92505081905550600f5460115482612fe39190614126565b612fed91906141af565b601a6000828254612ffe9190614304565b925050819055505b5b600081111561301c5761301b8730836131a7565b5b80856130289190614c9a565b94505b6130368787876131a7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e906149c6565b60405180910390fd5b613292838383613815565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90614d40565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ab9190614304565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340f9190613dee565b60405180910390a361342284848461381a565b50505050565b60006134333061133a565b90506000601c54601a54601b5460195461344d9190614304565b6134579190614304565b6134619190614304565b90506000808314806134735750600082145b15613480575050506137e7565b6014600a5461348f9190614126565b8311156134a8576014600a546134a59190614126565b92505b6000600283601b54866134bb9190614126565b6134c591906141af565b6134cf91906141af565b905060006134e6828661381f90919063ffffffff16565b905060004790506134f682613835565b600061350b824761381f90919063ffffffff16565b9050600061353687613528601954856137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061356188613553601a54866137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061358c8961357e601c54876137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060008183858761359e9190614c9a565b6135a89190614c9a565b6135b29190614c9a565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361a90614d91565b60006040518083038185875af1925050503d8060008114613657576040519150601f19603f3d011682016040523d82523d6000602084013e61365c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136a890614d91565b60006040518083038185875af1925050503d80600081146136e5576040519150601f19603f3d011682016040523d82523d6000602084013e6136ea565b606091505b5050809950506000881180156137005750600081115b1561374d5761370f8882613a72565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161374493929190614da6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379390614d91565b60006040518083038185875af1925050503d80600081146137d0576040519150601f19603f3d011682016040523d82523d6000602084013e6137d5565b606091505b50508099505050505050505050505050505b565b600081836137f79190614126565b905092915050565b6000818361380d91906141af565b905092915050565b505050565b505050565b6000818361382d9190614c9a565b905092915050565b6000600267ffffffffffffffff81111561385257613851614ddd565b5b6040519080825280602002602001820160405280156138805781602001602082028036833780820191505090505b509050308160008151811061389857613897614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139619190614e50565b8160018151811061397557613974614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139da307f000000000000000000000000000000000000000000000000000000000000000084612175565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3c959493929190614f76565b600060405180830381600087803b158015613a5657600080fd5b505af1158015613a6a573d6000803e3d6000fd5b505050505050565b613a9d307f000000000000000000000000000000000000000000000000000000000000000084612175565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b2496959493929190614fd0565b60606040518083038185885af1158015613b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b679190615046565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ba8578082015181840152602081019050613b8d565b83811115613bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bd982613b6e565b613be38185613b79565b9350613bf3818560208601613b8a565b613bfc81613bbd565b840191505092915050565b60006020820190508181036000830152613c218184613bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5982613c2e565b9050919050565b613c6981613c4e565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b6000819050919050565b613c9f81613c8c565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd8613c29565b5b6000613ce785828601613c77565b9250506020613cf885828601613cad565b9150509250929050565b60008115159050919050565b613d1781613d02565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b600060208284031215613d4e57613d4d613c29565b5b6000613d5c84828501613c77565b91505092915050565b6000819050919050565b6000613d8a613d85613d8084613c2e565b613d65565b613c2e565b9050919050565b6000613d9c82613d6f565b9050919050565b6000613dae82613d91565b9050919050565b613dbe81613da3565b82525050565b6000602082019050613dd96000830184613db5565b92915050565b613de881613c8c565b82525050565b6000602082019050613e036000830184613ddf565b92915050565b600060208284031215613e1f57613e1e613c29565b5b6000613e2d84828501613cad565b91505092915050565b600080600060608486031215613e4f57613e4e613c29565b5b6000613e5d86828701613c77565b9350506020613e6e86828701613c77565b9250506040613e7f86828701613cad565b9150509250925092565b613e9281613c4e565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b60008060008060808587031215613ecd57613ecc613c29565b5b6000613edb87828801613cad565b9450506020613eec87828801613cad565b9350506040613efd87828801613cad565b9250506060613f0e87828801613cad565b91505092959194509250565b600060ff82169050919050565b613f3081613f1a565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613d02565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f93613c29565b5b6000613fa285828601613c77565b9250506020613fb385828601613f68565b9150509250929050565b600060208284031215613fd357613fd2613c29565b5b6000613fe184828501613f68565b91505092915050565b6000806040838503121561400157614000613c29565b5b600061400f85828601613c77565b925050602061402085828601613c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407157607f821691505b602082108114156140855761408461402a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c1602083613b79565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413182613c8c565b915061413c83613c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614175576141746140f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ba82613c8c565b91506141c583613c8c565b9250826141d5576141d4614180565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061423c602f83613b79565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ce602883613b79565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613c8c565b915061431a83613c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140f7565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b6000614390600d83613b79565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614422603983613b79565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144b4602583613b79565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613b79565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145d8603583613b79565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061466a603483613b79565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146d6600f83613b79565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614768602683613b79565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147fa602483613b79565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602283613b79565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061491e602583613b79565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602383613b79565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a1c601683613b79565b9150614a27826149e6565b602082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ad4604983613b79565b9150614adf82614a52565b606082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b66603583613b79565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bd2601383613b79565b9150614bdd82614b9c565b602082019050919050565b60006020820190508181036000830152614c0181614bc5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c64603683613b79565b9150614c6f82614c08565b604082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b6000614ca582613c8c565b9150614cb083613c8c565b925082821015614cc357614cc26140f7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602683613b79565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b600081905092915050565b50565b6000614d7b600083614d60565b9150614d8682614d6b565b600082019050919050565b6000614d9c82614d6e565b9150819050919050565b6000606082019050614dbb6000830186613ddf565b614dc86020830185613ddf565b614dd56040830184613ddf565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e4a81613c60565b92915050565b600060208284031215614e6657614e65613c29565b5b6000614e7484828501614e3b565b91505092915050565b6000819050919050565b6000614ea2614e9d614e9884614e7d565b613d65565b613c8c565b9050919050565b614eb281614e87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eed81613c4e565b82525050565b6000614eff8383614ee4565b60208301905092915050565b6000602082019050919050565b6000614f2382614eb8565b614f2d8185614ec3565b9350614f3883614ed4565b8060005b83811015614f69578151614f508882614ef3565b9750614f5b83614f0b565b925050600181019050614f3c565b5085935050505092915050565b600060a082019050614f8b6000830188613ddf565b614f986020830187614ea9565b8181036040830152614faa8186614f18565b9050614fb96060830185613e89565b614fc66080830184613ddf565b9695505050505050565b600060c082019050614fe56000830189613e89565b614ff26020830188613ddf565b614fff6040830187614ea9565b61500c6060830186614ea9565b6150196080830185613e89565b61502660a0830184613ddf565b979650505050505050565b60008151905061504081613c96565b92915050565b60008060006060848603121561505f5761505e613c29565b5b600061506d86828701615031565b935050602061507e86828701615031565b925050604061508f86828701615031565b915050925092509256fea2646970667358221220ad6e490086cf0fdd76637a4aefc4e041858c5bff2462be398a113b50aaeef45464736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638ea5220f116101c6578063c18bc195116100f7578063e7ad9fcd11610095578063f2fde38b1161006f578063f2fde38b14610cc5578063f54afa7814610cee578063f637434214610d19578063f8b45b0514610d4457610376565b8063e7ad9fcd14610c46578063e884f26014610c6f578063f11a24d314610c9a57610376565b8063d257b34f116100d1578063d257b34f14610b76578063d85ba06314610bb3578063dd62ed3e14610bde578063e2f4560514610c1b57610376565b8063c18bc19514610af7578063c876d0b914610b20578063c8c8ebe414610b4b57610376565b8063a0d82dc511610164578063b62496f51161013e578063b62496f514610a3b578063bb8d513114610a78578063bbc0c74214610aa3578063c024666814610ace57610376565b8063a0d82dc514610996578063a457c2d7146109c1578063a9059cbb146109fe57610376565b806395d89b41116101a057806395d89b41146108ec5780639a7a23d6146109175780639c3b4fdc146109405780639fccce321461096b57610376565b80638ea5220f1461086d5780639213691314610898578063924de9b7146108c357610376565b80634a62bb65116102a0578063751039fc1161023e57806377a3b6091161021857806377a3b609146107d55780637bce5a04146108005780638a8c523c1461082b5780638da5cb5b1461084257610376565b8063751039fc146107565780637571336a1461078157806375f0a874146107aa57610376565b80636a486a8e1161027a5780636a486a8e146106ac5780636ddd1713146106d757806370a0823114610702578063715018a61461073f57610376565b80634a62bb65146106195780634fbee193146106445780635b35f9c91461068157610376565b8063203e727e1161030d5780632e6ed7ef116102e75780632e6ed7ef1461055d578063313ce5671461058657806339509351146105b157806349bd5a5e146105ee57610376565b8063203e727e146104cc57806323b872dd146104f557806327c8f8351461053257610376565b80631694505e116103495780631694505e1461042057806318160ddd1461044b5780631a8145bb146104765780631f3fed8f146104a157610376565b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613c07565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cc2565b610e01565b6040516103da9190613d1d565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190613d38565b610e1f565b6040516104179190613d1d565b60405180910390f35b34801561042c57600080fd5b50610435610e3f565b6040516104429190613dc4565b60405180910390f35b34801561045757600080fd5b50610460610e63565b60405161046d9190613dee565b60405180910390f35b34801561048257600080fd5b5061048b610e6d565b6040516104989190613dee565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613dee565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613e09565b610e79565b005b34801561050157600080fd5b5061051c60048036038101906105179190613e36565b610f88565b6040516105299190613d1d565b60405180910390f35b34801561053e57600080fd5b50610547611080565b6040516105549190613e98565b60405180910390f35b34801561056957600080fd5b50610584600480360381019061057f9190613eb3565b611086565b005b34801561059257600080fd5b5061059b6111b9565b6040516105a89190613f36565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190613cc2565b6111c2565b6040516105e59190613d1d565b60405180910390f35b3480156105fa57600080fd5b5061060361126e565b6040516106109190613e98565b60405180910390f35b34801561062557600080fd5b5061062e611292565b60405161063b9190613d1d565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613d38565b6112a5565b6040516106789190613d1d565b60405180910390f35b34801561068d57600080fd5b506106966112fb565b6040516106a39190613e98565b60405180910390f35b3480156106b857600080fd5b506106c1611321565b6040516106ce9190613dee565b60405180910390f35b3480156106e357600080fd5b506106ec611327565b6040516106f99190613d1d565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190613d38565b61133a565b6040516107369190613dee565b60405180910390f35b34801561074b57600080fd5b50610754611382565b005b34801561076257600080fd5b5061076b61140a565b6040516107789190613d1d565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190613f7d565b6114aa565b005b3480156107b657600080fd5b506107bf611581565b6040516107cc9190613e98565b60405180910390f35b3480156107e157600080fd5b506107ea6115a7565b6040516107f79190613dee565b60405180910390f35b34801561080c57600080fd5b506108156115ad565b6040516108229190613dee565b60405180910390f35b34801561083757600080fd5b506108406115b3565b005b34801561084e57600080fd5b50610857611667565b6040516108649190613e98565b60405180910390f35b34801561087957600080fd5b50610882611691565b60405161088f9190613e98565b60405180910390f35b3480156108a457600080fd5b506108ad6116b7565b6040516108ba9190613dee565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613fbd565b6116bd565b005b3480156108f857600080fd5b50610901611756565b60405161090e9190613c07565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190613f7d565b6117e8565b005b34801561094c57600080fd5b50610955611901565b6040516109629190613dee565b60405180910390f35b34801561097757600080fd5b50610980611907565b60405161098d9190613dee565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613dee565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613cc2565b611913565b6040516109f59190613d1d565b60405180910390f35b348015610a0a57600080fd5b50610a256004803603810190610a209190613cc2565b6119fe565b604051610a329190613d1d565b60405180910390f35b348015610a4757600080fd5b50610a626004803603810190610a5d9190613d38565b611a1c565b604051610a6f9190613d1d565b60405180910390f35b348015610a8457600080fd5b50610a8d611a3c565b604051610a9a9190613dee565b60405180910390f35b348015610aaf57600080fd5b50610ab8611a42565b604051610ac59190613d1d565b60405180910390f35b348015610ada57600080fd5b50610af56004803603810190610af09190613f7d565b611a55565b005b348015610b0357600080fd5b50610b1e6004803603810190610b199190613e09565b611b7a565b005b348015610b2c57600080fd5b50610b35611c89565b604051610b429190613d1d565b60405180910390f35b348015610b5757600080fd5b50610b60611c9c565b604051610b6d9190613dee565b60405180910390f35b348015610b8257600080fd5b50610b9d6004803603810190610b989190613e09565b611ca2565b604051610baa9190613d1d565b60405180910390f35b348015610bbf57600080fd5b50610bc8611df7565b604051610bd59190613dee565b60405180910390f35b348015610bea57600080fd5b50610c056004803603810190610c009190613fea565b611dfd565b604051610c129190613dee565b60405180910390f35b348015610c2757600080fd5b50610c30611e84565b604051610c3d9190613dee565b60405180910390f35b348015610c5257600080fd5b50610c6d6004803603810190610c689190613eb3565b611e8a565b005b348015610c7b57600080fd5b50610c84611fbd565b604051610c919190613d1d565b60405180910390f35b348015610ca657600080fd5b50610caf61205d565b604051610cbc9190613dee565b60405180910390f35b348015610cd157600080fd5b50610cec6004803603810190610ce79190613d38565b612063565b005b348015610cfa57600080fd5b50610d0361215b565b604051610d109190613dee565b60405180910390f35b348015610d2557600080fd5b50610d2e612161565b604051610d3b9190613dee565b60405180910390f35b348015610d5057600080fd5b50610d59612167565b604051610d669190613dee565b60405180910390f35b606060038054610d7e90614059565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614059565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61216d565b8484612175565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e8161216d565b73ffffffffffffffffffffffffffffffffffffffff16610e9f611667565b73ffffffffffffffffffffffffffffffffffffffff1614610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906140d7565b60405180910390fd5b670de0b6b3a76400006103e86001610f0b610e63565b610f159190614126565b610f1f91906141af565b610f2991906141af565b811015610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290614252565b60405180910390fd5b670de0b6b3a764000081610f7f9190614126565b60098190555050565b6000610f95848484612340565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe061216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611057906142e4565b60405180910390fd5b6110748561106c61216d565b858403612175565b60019150509392505050565b61dead81565b61108e61216d565b73ffffffffffffffffffffffffffffffffffffffff166110ac611667565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906140d7565b60405180910390fd5b6008818385876111129190614304565b61111c9190614304565b6111269190614304565b1115611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906143a6565b60405180910390fd5b836010819055508260118190555081601281905550806013819055506013546012546011546010546111999190614304565b6111a39190614304565b6111ad9190614304565b600f8190555050505050565b60006012905090565b60006112646111cf61216d565b8484600160006111dd61216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125f9190614304565b612175565b6001905092915050565b7f0000000000000000000000009a3f1c2b99b61ee46a1755c9b337ae195c696e4981565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61138a61216d565b73ffffffffffffffffffffffffffffffffffffffff166113a8611667565b73ffffffffffffffffffffffffffffffffffffffff16146113fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f5906140d7565b60405180910390fd5b6114086000613040565b565b600061141461216d565b73ffffffffffffffffffffffffffffffffffffffff16611432611667565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906140d7565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6114b261216d565b73ffffffffffffffffffffffffffffffffffffffff166114d0611667565b73ffffffffffffffffffffffffffffffffffffffff1614611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906140d7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b60115481565b6115bb61216d565b73ffffffffffffffffffffffffffffffffffffffff166115d9611667565b73ffffffffffffffffffffffffffffffffffffffff161461162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906140d7565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116c561216d565b73ffffffffffffffffffffffffffffffffffffffff166116e3611667565b73ffffffffffffffffffffffffffffffffffffffff1614611739576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611730906140d7565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176590614059565b80601f016020809104026020016040519081016040528092919081815260200182805461179190614059565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b6117f061216d565b73ffffffffffffffffffffffffffffffffffffffff1661180e611667565b73ffffffffffffffffffffffffffffffffffffffff1614611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906140d7565b60405180910390fd5b7f0000000000000000000000009a3f1c2b99b61ee46a1755c9b337ae195c696e4973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90614438565b60405180910390fd5b6118fd8282613106565b5050565b60135481565b601c5481565b60185481565b6000806001600061192261216d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d6906144ca565b60405180910390fd5b6119f36119ea61216d565b85858403612175565b600191505092915050565b6000611a12611a0b61216d565b8484612340565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b60155481565b600c60019054906101000a900460ff1681565b611a5d61216d565b73ffffffffffffffffffffffffffffffffffffffff16611a7b611667565b73ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906140d7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b6e9190613d1d565b60405180910390a25050565b611b8261216d565b73ffffffffffffffffffffffffffffffffffffffff16611ba0611667565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed906140d7565b60405180910390fd5b670de0b6b3a76400006103e86005611c0c610e63565b611c169190614126565b611c2091906141af565b611c2a91906141af565b811015611c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c639061455c565b60405180910390fd5b670de0b6b3a764000081611c809190614126565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cac61216d565b73ffffffffffffffffffffffffffffffffffffffff16611cca611667565b73ffffffffffffffffffffffffffffffffffffffff1614611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906140d7565b60405180910390fd5b620186a06001611d2e610e63565b611d389190614126565b611d4291906141af565b821015611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b906145ee565b60405180910390fd5b6103e86005611d91610e63565b611d9b9190614126565b611da591906141af565b821115611de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dde90614680565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e9261216d565b73ffffffffffffffffffffffffffffffffffffffff16611eb0611667565b73ffffffffffffffffffffffffffffffffffffffff1614611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd906140d7565b60405180910390fd5b600a81838587611f169190614304565b611f209190614304565b611f2a9190614304565b1115611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f62906146ec565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f9d9190614304565b611fa79190614304565b611fb19190614304565b60148190555050505050565b6000611fc761216d565b73ffffffffffffffffffffffffffffffffffffffff16611fe5611667565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906140d7565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61206b61216d565b73ffffffffffffffffffffffffffffffffffffffff16612089611667565b73ffffffffffffffffffffffffffffffffffffffff16146120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d6906140d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121469061477e565b60405180910390fd5b61215881613040565b50565b60195481565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90614810565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612255576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224c906148a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123339190613dee565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a790614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612417906149c6565b60405180910390fd5b600081141561243a57612435838360006131a7565b61303b565b600c60009054906101000a900460ff1615612afd57612457611667565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124c55750612495611667565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124fe5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612538575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125515750600560149054906101000a900460ff16155b15612afc57600c60019054906101000a900460ff1661264b57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061260b5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61264a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264190614a32565b60405180910390fd5b5b600e60009054906101000a900460ff161561281357612668611667565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126ef57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561274757507f0000000000000000000000009a3f1c2b99b61ee46a1755c9b337ae195c696e4973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128125743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490614aea565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b65750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561295d57600954811115612900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f790614b7c565b60405180910390fd5b600b5461290c8361133a565b826129179190614304565b1115612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90614be8565b60405180910390fd5b612afb565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a005750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4f57600954811115612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614c7a565b60405180910390fd5b612afa565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af957600b54612aac8361133a565b82612ab79190614304565b1115612af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aef90614be8565b60405180910390fd5b5b5b5b5b5b6000612b083061133a565b90506000600a548210159050808015612b2d5750600c60029054906101000a900460ff165b8015612b465750600560149054906101000a900460ff16155b8015612b9c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bf25750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c485750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8c576001600560146101000a81548160ff021916908315150217905550612c70613428565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d425750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4c57600090505b6000811561302b57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612daf57506000601454115b15612eaf57612ddc6064612dce601454886137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060145460155482612def9190614126565b612df991906141af565b60196000828254612e0a9190614304565b9250508190555060145460175482612e229190614126565b612e2c91906141af565b601b6000828254612e3d9190614304565b9250508190555060145460185482612e559190614126565b612e5f91906141af565b601c6000828254612e709190614304565b9250508190555060145460165482612e889190614126565b612e9291906141af565b601a6000828254612ea39190614304565b92505081905550613007565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f0a57506000600f54115b1561300657612f376064612f29600f54886137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600f5460105482612f4a9190614126565b612f5491906141af565b60196000828254612f659190614304565b92505081905550600f5460125482612f7d9190614126565b612f8791906141af565b601b6000828254612f989190614304565b92505081905550600f5460135482612fb09190614126565b612fba91906141af565b601c6000828254612fcb9190614304565b92505081905550600f5460115482612fe39190614126565b612fed91906141af565b601a6000828254612ffe9190614304565b925050819055505b5b600081111561301c5761301b8730836131a7565b5b80856130289190614c9a565b94505b6130368787876131a7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614934565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327e906149c6565b60405180910390fd5b613292838383613815565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330f90614d40565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133ab9190614304565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161340f9190613dee565b60405180910390a361342284848461381a565b50505050565b60006134333061133a565b90506000601c54601a54601b5460195461344d9190614304565b6134579190614304565b6134619190614304565b90506000808314806134735750600082145b15613480575050506137e7565b6014600a5461348f9190614126565b8311156134a8576014600a546134a59190614126565b92505b6000600283601b54866134bb9190614126565b6134c591906141af565b6134cf91906141af565b905060006134e6828661381f90919063ffffffff16565b905060004790506134f682613835565b600061350b824761381f90919063ffffffff16565b9050600061353687613528601954856137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061356188613553601a54866137e990919063ffffffff16565b6137ff90919063ffffffff16565b9050600061358c8961357e601c54876137e990919063ffffffff16565b6137ff90919063ffffffff16565b905060008183858761359e9190614c9a565b6135a89190614c9a565b6135b29190614c9a565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161361a90614d91565b60006040518083038185875af1925050503d8060008114613657576040519150601f19603f3d011682016040523d82523d6000602084013e61365c565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136a890614d91565b60006040518083038185875af1925050503d80600081146136e5576040519150601f19603f3d011682016040523d82523d6000602084013e6136ea565b606091505b5050809950506000881180156137005750600081115b1561374d5761370f8882613a72565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161374493929190614da6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161379390614d91565b60006040518083038185875af1925050503d80600081146137d0576040519150601f19603f3d011682016040523d82523d6000602084013e6137d5565b606091505b50508099505050505050505050505050505b565b600081836137f79190614126565b905092915050565b6000818361380d91906141af565b905092915050565b505050565b505050565b6000818361382d9190614c9a565b905092915050565b6000600267ffffffffffffffff81111561385257613851614ddd565b5b6040519080825280602002602001820160405280156138805781602001602082028036833780820191505090505b509050308160008151811061389857613897614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561393d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139619190614e50565b8160018151811061397557613974614e0c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139da307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612175565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3c959493929190614f76565b600060405180830381600087803b158015613a5657600080fd5b505af1158015613a6a573d6000803e3d6000fd5b505050505050565b613a9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612175565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b2496959493929190614fd0565b60606040518083038185885af1158015613b42573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b679190615046565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ba8578082015181840152602081019050613b8d565b83811115613bb7576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bd982613b6e565b613be38185613b79565b9350613bf3818560208601613b8a565b613bfc81613bbd565b840191505092915050565b60006020820190508181036000830152613c218184613bce565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5982613c2e565b9050919050565b613c6981613c4e565b8114613c7457600080fd5b50565b600081359050613c8681613c60565b92915050565b6000819050919050565b613c9f81613c8c565b8114613caa57600080fd5b50565b600081359050613cbc81613c96565b92915050565b60008060408385031215613cd957613cd8613c29565b5b6000613ce785828601613c77565b9250506020613cf885828601613cad565b9150509250929050565b60008115159050919050565b613d1781613d02565b82525050565b6000602082019050613d326000830184613d0e565b92915050565b600060208284031215613d4e57613d4d613c29565b5b6000613d5c84828501613c77565b91505092915050565b6000819050919050565b6000613d8a613d85613d8084613c2e565b613d65565b613c2e565b9050919050565b6000613d9c82613d6f565b9050919050565b6000613dae82613d91565b9050919050565b613dbe81613da3565b82525050565b6000602082019050613dd96000830184613db5565b92915050565b613de881613c8c565b82525050565b6000602082019050613e036000830184613ddf565b92915050565b600060208284031215613e1f57613e1e613c29565b5b6000613e2d84828501613cad565b91505092915050565b600080600060608486031215613e4f57613e4e613c29565b5b6000613e5d86828701613c77565b9350506020613e6e86828701613c77565b9250506040613e7f86828701613cad565b9150509250925092565b613e9281613c4e565b82525050565b6000602082019050613ead6000830184613e89565b92915050565b60008060008060808587031215613ecd57613ecc613c29565b5b6000613edb87828801613cad565b9450506020613eec87828801613cad565b9350506040613efd87828801613cad565b9250506060613f0e87828801613cad565b91505092959194509250565b600060ff82169050919050565b613f3081613f1a565b82525050565b6000602082019050613f4b6000830184613f27565b92915050565b613f5a81613d02565b8114613f6557600080fd5b50565b600081359050613f7781613f51565b92915050565b60008060408385031215613f9457613f93613c29565b5b6000613fa285828601613c77565b9250506020613fb385828601613f68565b9150509250929050565b600060208284031215613fd357613fd2613c29565b5b6000613fe184828501613f68565b91505092915050565b6000806040838503121561400157614000613c29565b5b600061400f85828601613c77565b925050602061402085828601613c77565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061407157607f821691505b602082108114156140855761408461402a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140c1602083613b79565b91506140cc8261408b565b602082019050919050565b600060208201905081810360008301526140f0816140b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061413182613c8c565b915061413c83613c8c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614175576141746140f7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141ba82613c8c565b91506141c583613c8c565b9250826141d5576141d4614180565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061423c602f83613b79565b9150614247826141e0565b604082019050919050565b6000602082019050818103600083015261426b8161422f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142ce602883613b79565b91506142d982614272565b604082019050919050565b600060208201905081810360008301526142fd816142c1565b9050919050565b600061430f82613c8c565b915061431a83613c8c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561434f5761434e6140f7565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b6000614390600d83613b79565b915061439b8261435a565b602082019050919050565b600060208201905081810360008301526143bf81614383565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614422603983613b79565b915061442d826143c6565b604082019050919050565b6000602082019050818103600083015261445181614415565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144b4602583613b79565b91506144bf82614458565b604082019050919050565b600060208201905081810360008301526144e3816144a7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614546602483613b79565b9150614551826144ea565b604082019050919050565b6000602082019050818103600083015261457581614539565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145d8603583613b79565b91506145e38261457c565b604082019050919050565b60006020820190508181036000830152614607816145cb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061466a603483613b79565b91506146758261460e565b604082019050919050565b600060208201905081810360008301526146998161465d565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146d6600f83613b79565b91506146e1826146a0565b602082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614768602683613b79565b91506147738261470c565b604082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147fa602483613b79565b91506148058261479e565b604082019050919050565b60006020820190508181036000830152614829816147ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061488c602283613b79565b915061489782614830565b604082019050919050565b600060208201905081810360008301526148bb8161487f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061491e602583613b79565b9150614929826148c2565b604082019050919050565b6000602082019050818103600083015261494d81614911565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149b0602383613b79565b91506149bb82614954565b604082019050919050565b600060208201905081810360008301526149df816149a3565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a1c601683613b79565b9150614a27826149e6565b602082019050919050565b60006020820190508181036000830152614a4b81614a0f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ad4604983613b79565b9150614adf82614a52565b606082019050919050565b60006020820190508181036000830152614b0381614ac7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b66603583613b79565b9150614b7182614b0a565b604082019050919050565b60006020820190508181036000830152614b9581614b59565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bd2601383613b79565b9150614bdd82614b9c565b602082019050919050565b60006020820190508181036000830152614c0181614bc5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c64603683613b79565b9150614c6f82614c08565b604082019050919050565b60006020820190508181036000830152614c9381614c57565b9050919050565b6000614ca582613c8c565b9150614cb083613c8c565b925082821015614cc357614cc26140f7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602683613b79565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b600081905092915050565b50565b6000614d7b600083614d60565b9150614d8682614d6b565b600082019050919050565b6000614d9c82614d6e565b9150819050919050565b6000606082019050614dbb6000830186613ddf565b614dc86020830185613ddf565b614dd56040830184613ddf565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e4a81613c60565b92915050565b600060208284031215614e6657614e65613c29565b5b6000614e7484828501614e3b565b91505092915050565b6000819050919050565b6000614ea2614e9d614e9884614e7d565b613d65565b613c8c565b9050919050565b614eb281614e87565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614eed81613c4e565b82525050565b6000614eff8383614ee4565b60208301905092915050565b6000602082019050919050565b6000614f2382614eb8565b614f2d8185614ec3565b9350614f3883614ed4565b8060005b83811015614f69578151614f508882614ef3565b9750614f5b83614f0b565b925050600181019050614f3c565b5085935050505092915050565b600060a082019050614f8b6000830188613ddf565b614f986020830187614ea9565b8181036040830152614faa8186614f18565b9050614fb96060830185613e89565b614fc66080830184613ddf565b9695505050505050565b600060c082019050614fe56000830189613e89565b614ff26020830188613ddf565b614fff6040830187614ea9565b61500c6060830186614ea9565b6150196080830185613e89565b61502660a0830184613ddf565b979650505050505050565b60008151905061504081613c96565b92915050565b60008060006060848603121561505f5761505e613c29565b5b600061506d86828701615031565b935050602061507e86828701615031565b925050604061508f86828701615031565b915050925092509256fea2646970667358221220ad6e490086cf0fdd76637a4aefc4e041858c5bff2462be398a113b50aaeef45464736f6c634300080a0033

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.