ETH Price: $3,087.21 (+1.10%)
Gas: 2 Gwei

Token

Enok (Enok)
 

Overview

Max Total Supply

1,000,000 Enok

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,918.48514130048082008 Enok

Value
$0.00
0x31f9a30ff5c8ec029acb5e5baccabd76c611fc08
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:
ENOK

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-06
*/

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

////// src/IUniswapV2Factory.sol
/* 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;
}

////// src/IUniswapV2Pair.sol
/* 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;
}

////// src/IUniswapV2Router02.sol
/* 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 ENOK 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 payable public marketingWallet;
    address payable public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    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 buyBBFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellBBFee;
    uint256 public sellDevFee;

    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 marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Enok", "Enok") {
        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 _buyBBFee = 7;
        uint256 _buyDevFee = 0;

        uint256 _sellBBFee = 7;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000 * 1e18;

        maxTransactionAmount = 10_001 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_001 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; 

        buyBBFee = _buyBBFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyBBFee + buyDevFee;

        sellBBFee = _sellBBFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellBBFee + sellDevFee;

        marketingWallet = payable(0xb549e7e46EA79E76Dbe37E4ff0324deF1A2e5ff9); // set as marketing wallet
        devWallet = payable(0xb549e7e46EA79E76Dbe37E4ff0324deF1A2e5ff9); // 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 {}

    function sendETHToFee(uint256 amount) private {
devWallet.transfer(amount);
    }

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

    function manualswap() external {
        require(_msgSender() == marketingWallet);
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    // 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 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyBBFee = _marketingFee;
        buyDevFee = _devFee;
        buyTotalFees = buyBBFee + buyDevFee;
        require(buyTotalFees <= 15, "Must keep fees at 15% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellBBFee = _marketingFee;
        sellDevFee = _devFee;
        sellTotalFees = sellBBFee + sellDevFee;
        require(sellTotalFees <= 20, "Must keep fees at 20% or less");
    }

    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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = payable(newMarketingWallet);
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = payable(newWallet);
    }

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

        if (
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapTokensForEth(contractTokenBalance);
            uint256 contractETHBalance = address(this).balance; 
            if(contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }

        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);
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellBBFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyBBFee) / 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
            deadAddress,
            block.timestamp
        );
    }
}

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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"buyBBFee","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":"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 payable","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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"sellBBFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","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":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"_marketingFee","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"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600481526020017f456e6f6b000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f456e6f6b0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000ad7565b5080600490805190602001906200014792919062000ad7565b5050506200016a6200015e6200059760201b60201c565b6200059f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200066560201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000bf1565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000bf1565b6040518363ffffffff1660e01b8152600401620002e992919062000c34565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000bf1565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200066560201b60201c565b6200038c60a05160016200074f60201b60201c565b6000600790506000806007905060008069d3c21bcecceda1000000905069021e27c1806e59a4000060088190555069043c41a24a290be40000600a81905550612710600a82620003dd919062000c9a565b620003e9919062000d2a565b60098190555084601581905550836016819055506016546015546200040f919062000d62565b601481905550826018819055508160198190555060195460185462000435919062000d62565b60178190555073b549e7e46ea79e76dbe37e4ff0324def1a2e5ff9600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b549e7e46ea79e76dbe37e4ff0324def1a2e5ff9600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000507620004f9620007f060201b60201c565b60016200081a60201b60201c565b6200051a3060016200081a60201b60201c565b6200052f61dead60016200081a60201b60201c565b6200055162000543620007f060201b60201c565b60016200066560201b60201c565b620005643060016200066560201b60201c565b6200057961dead60016200066560201b60201c565b6200058b33826200095460201b60201c565b50505050505062000f81565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006756200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200069b620007f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006eb9062000e20565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200082a6200059760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000850620007f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a09062000e20565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000948919062000e5f565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009be9062000ecc565b60405180910390fd5b620009db6000838362000acd60201b60201c565b8060026000828254620009ef919062000d62565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a46919062000d62565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aad919062000eff565b60405180910390a362000ac96000838362000ad260201b60201c565b5050565b505050565b505050565b82805462000ae59062000f4b565b90600052602060002090601f01602090048101928262000b09576000855562000b55565b82601f1062000b2457805160ff191683800117855562000b55565b8280016001018555821562000b55579182015b8281111562000b5457825182559160200191906001019062000b37565b5b50905062000b64919062000b68565b5090565b5b8082111562000b8357600081600090555060010162000b69565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bb98262000b8c565b9050919050565b62000bcb8162000bac565b811462000bd757600080fd5b50565b60008151905062000beb8162000bc0565b92915050565b60006020828403121562000c0a5762000c0962000b87565b5b600062000c1a8482850162000bda565b91505092915050565b62000c2e8162000bac565b82525050565b600060408201905062000c4b600083018562000c23565b62000c5a602083018462000c23565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca78262000c61565b915062000cb48362000c61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cf05762000cef62000c6b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d378262000c61565b915062000d448362000c61565b92508262000d575762000d5662000cfb565b5b828204905092915050565b600062000d6f8262000c61565b915062000d7c8362000c61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000db45762000db362000c6b565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e0860208362000dbf565b915062000e158262000dd0565b602082019050919050565b6000602082019050818103600083015262000e3b8162000df9565b9050919050565b60008115159050919050565b62000e598162000e42565b82525050565b600060208201905062000e76600083018462000e4e565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000eb4601f8362000dbf565b915062000ec18262000e7c565b602082019050919050565b6000602082019050818103600083015262000ee78162000ea5565b9050919050565b62000ef98162000c61565b82525050565b600060208201905062000f16600083018462000eee565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f6457607f821691505b6020821081141562000f7b5762000f7a62000f1c565b5b50919050565b60805160a051614d1962000fd16000396000818161141801528181611ac701526129d6015260008181610fb50152818161297e015281816134280152818161350901526135300152614d196000f3fe6080604052600436106103905760003560e01c806375f0a874116101dc578063b62496f511610102578063d257b34f116100a0578063e884f2601161006f578063e884f26014610d4f578063f2fde38b14610d7a578063f3cecf6714610da3578063f8b45b0514610dce57610397565b8063d257b34f14610c7f578063d85ba06314610cbc578063dd62ed3e14610ce7578063e2f4560514610d2457610397565b8063c18bc195116100dc578063c18bc19514610be9578063c3c8cd8014610c12578063c876d0b914610c29578063c8c8ebe414610c5457610397565b8063b62496f514610b58578063bbc0c74214610b95578063c024666814610bc057610397565b80639c3b4fdc1161017a578063a457c2d711610149578063a457c2d714610a8a578063a4c82a0014610ac7578063a9059cbb14610af2578063aacebbe314610b2f57610397565b80639c3b4fdc146109de5780639ec22c0e14610a095780639fccce3214610a34578063a0d82dc514610a5f57610397565b80638ea5220f116101b65780638ea5220f14610936578063924de9b71461096157806395d89b411461098a5780639a7a23d6146109b557610397565b806375f0a874146108c95780638a8c523c146108f45780638da5cb5b1461090b57610397565b80632c3e486c116102c15780634fbee1931161025f57806370a082311161022e57806370a0823114610821578063715018a61461085e578063751039fc146108755780637571336a146108a057610397565b80634fbee1931461076557806366ca9b83146107a25780636a486a8e146107cb5780636ddd1713146107f657610397565b8063395093511161029b57806339509351146106a75780633ad2ba25146106e457806349bd5a5e1461070f5780634a62bb651461073a57610397565b80632c3e486c146106265780632e82f1a014610651578063313ce5671461067c57610397565b8063184c16c51161032e5780631f3fed8f116103085780631f3fed8f1461056a578063203e727e1461059557806323b872dd146105be57806327c8f835146105fb57610397565b8063184c16c5146104e9578063199ffc72146105145780631a8145bb1461053f57610397565b806310d5de531161036a57806310d5de531461042d5780631694505e1461046a57806318160ddd146104955780631816467f146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613924565b610df9565b005b3480156103d157600080fd5b506103da610ee3565b6040516103e791906139fd565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613a7d565b610f75565b6040516104249190613ad8565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613af3565b610f93565b6040516104619190613ad8565b60405180910390f35b34801561047657600080fd5b5061047f610fb3565b60405161048c9190613b7f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd7565b6040516104b79190613ba9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613af3565b610fe1565b005b3480156104f557600080fd5b506104fe61111d565b60405161050b9190613ba9565b60405180910390f35b34801561052057600080fd5b50610529611123565b6040516105369190613ba9565b60405180910390f35b34801561054b57600080fd5b50610554611129565b6040516105619190613ba9565b60405180910390f35b34801561057657600080fd5b5061057f61112f565b60405161058c9190613ba9565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613bc4565b611135565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613bf1565b611244565b6040516105f29190613ad8565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190613c53565b60405180910390f35b34801561063257600080fd5b5061063b611342565b6040516106489190613ba9565b60405180910390f35b34801561065d57600080fd5b50610666611348565b6040516106739190613ad8565b60405180910390f35b34801561068857600080fd5b5061069161135b565b60405161069e9190613c8a565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613a7d565b611364565b6040516106db9190613ad8565b60405180910390f35b3480156106f057600080fd5b506106f9611410565b6040516107069190613ba9565b60405180910390f35b34801561071b57600080fd5b50610724611416565b6040516107319190613c53565b60405180910390f35b34801561074657600080fd5b5061074f61143a565b60405161075c9190613ad8565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613af3565b61144d565b6040516107999190613ad8565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613924565b6114a3565b005b3480156107d757600080fd5b506107e061158d565b6040516107ed9190613ba9565b60405180910390f35b34801561080257600080fd5b5061080b611593565b6040516108189190613ad8565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613af3565b6115a6565b6040516108559190613ba9565b60405180910390f35b34801561086a57600080fd5b506108736115ee565b005b34801561088157600080fd5b5061088a611676565b6040516108979190613ad8565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613cd1565b611716565b005b3480156108d557600080fd5b506108de6117ed565b6040516108eb9190613d32565b60405180910390f35b34801561090057600080fd5b50610909611813565b005b34801561091757600080fd5b506109206118ce565b60405161092d9190613c53565b60405180910390f35b34801561094257600080fd5b5061094b6118f8565b6040516109589190613d32565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613d4d565b61191e565b005b34801561099657600080fd5b5061099f6119b7565b6040516109ac91906139fd565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d79190613cd1565b611a49565b005b3480156109ea57600080fd5b506109f3611b62565b604051610a009190613ba9565b60405180910390f35b348015610a1557600080fd5b50610a1e611b68565b604051610a2b9190613ba9565b60405180910390f35b348015610a4057600080fd5b50610a49611b6e565b604051610a569190613ba9565b60405180910390f35b348015610a6b57600080fd5b50610a74611b74565b604051610a819190613ba9565b60405180910390f35b348015610a9657600080fd5b50610ab16004803603810190610aac9190613a7d565b611b7a565b604051610abe9190613ad8565b60405180910390f35b348015610ad357600080fd5b50610adc611c65565b604051610ae99190613ba9565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b149190613a7d565b611c6b565b604051610b269190613ad8565b60405180910390f35b348015610b3b57600080fd5b50610b566004803603810190610b519190613af3565b611c89565b005b348015610b6457600080fd5b50610b7f6004803603810190610b7a9190613af3565b611dc5565b604051610b8c9190613ad8565b60405180910390f35b348015610ba157600080fd5b50610baa611de5565b604051610bb79190613ad8565b60405180910390f35b348015610bcc57600080fd5b50610be76004803603810190610be29190613cd1565b611df8565b005b348015610bf557600080fd5b50610c106004803603810190610c0b9190613bc4565b611f1d565b005b348015610c1e57600080fd5b50610c2761202c565b005b348015610c3557600080fd5b50610c3e6120a6565b604051610c4b9190613ad8565b60405180910390f35b348015610c6057600080fd5b50610c696120b9565b604051610c769190613ba9565b60405180910390f35b348015610c8b57600080fd5b50610ca66004803603810190610ca19190613bc4565b6120bf565b604051610cb39190613ad8565b60405180910390f35b348015610cc857600080fd5b50610cd1612214565b604051610cde9190613ba9565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d099190613d7a565b61221a565b604051610d1b9190613ba9565b60405180910390f35b348015610d3057600080fd5b50610d396122a1565b604051610d469190613ba9565b60405180910390f35b348015610d5b57600080fd5b50610d646122a7565b604051610d719190613ad8565b60405180910390f35b348015610d8657600080fd5b50610da16004803603810190610d9c9190613af3565b612347565b005b348015610daf57600080fd5b50610db861243f565b604051610dc59190613ba9565b60405180910390f35b348015610dda57600080fd5b50610de3612445565b604051610df09190613ba9565b60405180910390f35b610e0161244b565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e06565b60405180910390fd5b8160188190555080601981905550601954601854610e939190613e55565b60178190555060146017541115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613ef7565b60405180910390fd5b5050565b606060038054610ef290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90613f46565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261244b565b8484612453565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fe961244b565b73ffffffffffffffffffffffffffffffffffffffff166110076118ce565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613e06565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b61113d61244b565b73ffffffffffffffffffffffffffffffffffffffff1661115b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613e06565b60405180910390fd5b670de0b6b3a76400006103e860016111c7610fd7565b6111d19190613f78565b6111db9190614001565b6111e59190614001565b811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906140a4565b60405180910390fd5b670de0b6b3a76400008161123b9190613f78565b60088190555050565b600061125184848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129c61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614136565b60405180910390fd5b6113308561132861244b565b858403612453565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140661137161244b565b84846001600061137f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613e55565b612453565b6001905092915050565b60185481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ab61244b565b73ffffffffffffffffffffffffffffffffffffffff166114c96118ce565b73ffffffffffffffffffffffffffffffffffffffff161461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613e06565b60405180910390fd5b816015819055508060168190555060165460155461153d9190613e55565b601481905550600f6014541115611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906141a2565b60405180910390fd5b5050565b60175481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f661244b565b73ffffffffffffffffffffffffffffffffffffffff166116146118ce565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190613e06565b60405180910390fd5b6116746000613222565b565b600061168061244b565b73ffffffffffffffffffffffffffffffffffffffff1661169e6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613e06565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61171e61244b565b73ffffffffffffffffffffffffffffffffffffffff1661173c6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990613e06565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61181b61244b565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613e06565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61192661244b565b73ffffffffffffffffffffffffffffffffffffffff166119446118ce565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613e06565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119c690613f46565b80601f01602080910402602001604051908101604052809291908181526020018280546119f290613f46565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b5050505050905090565b611a5161244b565b73ffffffffffffffffffffffffffffffffffffffff16611a6f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613e06565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614234565b60405180910390fd5b611b5e82826132e8565b5050565b60165481565b60105481565b601c5481565b60195481565b60008060016000611b8961244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906142c6565b60405180910390fd5b611c5a611c5161244b565b85858403612453565b600191505092915050565b600e5481565b6000611c7f611c7861244b565b848461261e565b6001905092915050565b611c9161244b565b73ffffffffffffffffffffffffffffffffffffffff16611caf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613e06565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e0061244b565b73ffffffffffffffffffffffffffffffffffffffff16611e1e6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613e06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f119190613ad8565b60405180910390a25050565b611f2561244b565b73ffffffffffffffffffffffffffffffffffffffff16611f436118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613e06565b60405180910390fd5b670de0b6b3a76400006103e86005611faf610fd7565b611fb99190613f78565b611fc39190614001565b611fcd9190614001565b81101561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614358565b60405180910390fd5b670de0b6b3a7640000816120239190613f78565b600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661206d61244b565b73ffffffffffffffffffffffffffffffffffffffff161461208d57600080fd5b6000612098306115a6565b90506120a381613389565b50565b601360009054906101000a900460ff1681565b60085481565b60006120c961244b565b73ffffffffffffffffffffffffffffffffffffffff166120e76118ce565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613e06565b60405180910390fd5b620186a0600161214b610fd7565b6121559190613f78565b61215f9190614001565b8210156121a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612198906143ea565b60405180910390fd5b6103e860056121ae610fd7565b6121b89190613f78565b6121c29190614001565b821115612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061447c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122b161244b565b73ffffffffffffffffffffffffffffffffffffffff166122cf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613e06565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61234f61244b565b73ffffffffffffffffffffffffffffffffffffffff1661236d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90613e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a9061450e565b60405180910390fd5b61243c81613222565b50565b60155481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906145a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614632565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126119190613ba9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614756565b60405180910390fd5b600081141561271857612713838360006135c6565b61321d565b601160009054906101000a900460ff1615612ddb576127356118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a357506127736118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612816575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282f5750600560149054906101000a900460ff16155b15612dda57601160019054906101000a900460ff1661292957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906147c2565b60405180910390fd5b5b601360009054906101000a900460ff1615612af1576129466118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cd57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af05743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa29061487a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b945750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57600854811115612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061490c565b60405180910390fd5b600a54612bea836115a6565b82612bf59190613e55565b1115612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614978565b60405180910390fd5b612dd9565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cde5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2d57600854811115612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614a0a565b60405180910390fd5b612dd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd757600a54612d8a836115a6565b82612d959190613e55565b1115612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614978565b60405180910390fd5b5b5b5b5b5b6000612de6306115a6565b9050601160029054906101000a900460ff168015612e115750600560149054906101000a900460ff16155b8015612e675750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebd5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f135750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57612f2181613389565b60004790506000811115612f3957612f3847613847565b5b505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ff15750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ffb57600090505b6000811561320e57601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305e57506000601754115b156130f85761308b606461307d601754876138b390919063ffffffff16565b6138c990919063ffffffff16565b90506017546019548261309e9190613f78565b6130a89190614001565b601c60008282546130b99190613e55565b92505081905550601754601854826130d19190613f78565b6130db9190614001565b601a60008282546130ec9190613e55565b925050819055506131ea565b601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561315357506000601454115b156131e9576131806064613172601454876138b390919063ffffffff16565b6138c990919063ffffffff16565b9050601454601654826131939190613f78565b61319d9190614001565b601c60008282546131ae9190613e55565b92505081905550601454601554826131c69190613f78565b6131d09190614001565b601a60008282546131e19190613e55565b925050819055505b5b60008111156131ff576131fe8630836135c6565b5b808461320b9190614a2a565b93505b6132198686866135c6565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156133a6576133a5614a5e565b5b6040519080825280602002602001820160405280156133d45781602001602082028036833780820191505090505b50905030816000815181106133ec576133eb614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ad1565b816001815181106134c9576134c8614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352e307f000000000000000000000000000000000000000000000000000000000000000084612453565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613590959493929190614bf7565b600060405180830381600087803b1580156135aa57600080fd5b505af11580156135be573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362d906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d90614756565b60405180910390fd5b6136b18383836138df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372e90614cc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137ca9190613e55565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161382e9190613ba9565b60405180910390a36138418484846138e4565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156138af573d6000803e3d6000fd5b5050565b600081836138c19190613f78565b905092915050565b600081836138d79190614001565b905092915050565b505050565b505050565b600080fd5b6000819050919050565b613901816138ee565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a6138e9565b5b60006139498582860161390f565b925050602061395a8582860161390f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561399e578082015181840152602081019050613983565b838111156139ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006139cf82613964565b6139d9818561396f565b93506139e9818560208601613980565b6139f2816139b3565b840191505092915050565b60006020820190508181036000830152613a1781846139c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a4a82613a1f565b9050919050565b613a5a81613a3f565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b60008060408385031215613a9457613a936138e9565b5b6000613aa285828601613a68565b9250506020613ab38582860161390f565b9150509250929050565b60008115159050919050565b613ad281613abd565b82525050565b6000602082019050613aed6000830184613ac9565b92915050565b600060208284031215613b0957613b086138e9565b5b6000613b1784828501613a68565b91505092915050565b6000819050919050565b6000613b45613b40613b3b84613a1f565b613b20565b613a1f565b9050919050565b6000613b5782613b2a565b9050919050565b6000613b6982613b4c565b9050919050565b613b7981613b5e565b82525050565b6000602082019050613b946000830184613b70565b92915050565b613ba3816138ee565b82525050565b6000602082019050613bbe6000830184613b9a565b92915050565b600060208284031215613bda57613bd96138e9565b5b6000613be88482850161390f565b91505092915050565b600080600060608486031215613c0a57613c096138e9565b5b6000613c1886828701613a68565b9350506020613c2986828701613a68565b9250506040613c3a8682870161390f565b9150509250925092565b613c4d81613a3f565b82525050565b6000602082019050613c686000830184613c44565b92915050565b600060ff82169050919050565b613c8481613c6e565b82525050565b6000602082019050613c9f6000830184613c7b565b92915050565b613cae81613abd565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce76138e9565b5b6000613cf685828601613a68565b9250506020613d0785828601613cbc565b9150509250929050565b6000613d1c82613a1f565b9050919050565b613d2c81613d11565b82525050565b6000602082019050613d476000830184613d23565b92915050565b600060208284031215613d6357613d626138e9565b5b6000613d7184828501613cbc565b91505092915050565b60008060408385031215613d9157613d906138e9565b5b6000613d9f85828601613a68565b9250506020613db085828601613a68565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613df060208361396f565b9150613dfb82613dba565b602082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e60826138ee565b9150613e6b836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea057613e9f613e26565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613ee1601d8361396f565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71613f17565b5b50919050565b6000613f83826138ee565b9150613f8e836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc757613fc6613e26565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c826138ee565b9150614017836138ee565b92508261402757614026613fd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061408e602f8361396f565b915061409982614032565b604082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061412060288361396f565b915061412b826140c4565b604082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061418c601d8361396f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061421e60398361396f565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006142b060258361396f565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061434260248361396f565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143d460358361396f565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446660348361396f565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f860268361396f565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061458a60248361396f565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461c60228361396f565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ae60258361396f565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061474060238361396f565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147ac60168361396f565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061486460498361396f565b915061486f826147e2565b606082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148f660358361396f565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061496260138361396f565b915061496d8261492c565b602082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149f460368361396f565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826138ee565b9150614a40836138ee565b925082821015614a5357614a52613e26565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614acb81613a51565b92915050565b600060208284031215614ae757614ae66138e9565b5b6000614af584828501614abc565b91505092915050565b6000819050919050565b6000614b23614b1e614b1984614afe565b613b20565b6138ee565b9050919050565b614b3381614b08565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b6e81613a3f565b82525050565b6000614b808383614b65565b60208301905092915050565b6000602082019050919050565b6000614ba482614b39565b614bae8185614b44565b9350614bb983614b55565b8060005b83811015614bea578151614bd18882614b74565b9750614bdc83614b8c565b925050600181019050614bbd565b5085935050505092915050565b600060a082019050614c0c6000830188613b9a565b614c196020830187614b2a565b8181036040830152614c2b8186614b99565b9050614c3a6060830185613c44565b614c476080830184613b9a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cad60268361396f565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b905091905056fea264697066735822122054f60f228863360e2183c56c0e4353b79acbbbf4291b3cb1578a18b1d8bbe67364736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103905760003560e01c806375f0a874116101dc578063b62496f511610102578063d257b34f116100a0578063e884f2601161006f578063e884f26014610d4f578063f2fde38b14610d7a578063f3cecf6714610da3578063f8b45b0514610dce57610397565b8063d257b34f14610c7f578063d85ba06314610cbc578063dd62ed3e14610ce7578063e2f4560514610d2457610397565b8063c18bc195116100dc578063c18bc19514610be9578063c3c8cd8014610c12578063c876d0b914610c29578063c8c8ebe414610c5457610397565b8063b62496f514610b58578063bbc0c74214610b95578063c024666814610bc057610397565b80639c3b4fdc1161017a578063a457c2d711610149578063a457c2d714610a8a578063a4c82a0014610ac7578063a9059cbb14610af2578063aacebbe314610b2f57610397565b80639c3b4fdc146109de5780639ec22c0e14610a095780639fccce3214610a34578063a0d82dc514610a5f57610397565b80638ea5220f116101b65780638ea5220f14610936578063924de9b71461096157806395d89b411461098a5780639a7a23d6146109b557610397565b806375f0a874146108c95780638a8c523c146108f45780638da5cb5b1461090b57610397565b80632c3e486c116102c15780634fbee1931161025f57806370a082311161022e57806370a0823114610821578063715018a61461085e578063751039fc146108755780637571336a146108a057610397565b80634fbee1931461076557806366ca9b83146107a25780636a486a8e146107cb5780636ddd1713146107f657610397565b8063395093511161029b57806339509351146106a75780633ad2ba25146106e457806349bd5a5e1461070f5780634a62bb651461073a57610397565b80632c3e486c146106265780632e82f1a014610651578063313ce5671461067c57610397565b8063184c16c51161032e5780631f3fed8f116103085780631f3fed8f1461056a578063203e727e1461059557806323b872dd146105be57806327c8f835146105fb57610397565b8063184c16c5146104e9578063199ffc72146105145780631a8145bb1461053f57610397565b806310d5de531161036a57806310d5de531461042d5780631694505e1461046a57806318160ddd146104955780631816467f146104c057610397565b806302dbd8f81461039c57806306fdde03146103c5578063095ea7b3146103f057610397565b3661039757005b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190613924565b610df9565b005b3480156103d157600080fd5b506103da610ee3565b6040516103e791906139fd565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190613a7d565b610f75565b6040516104249190613ad8565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613af3565b610f93565b6040516104619190613ad8565b60405180910390f35b34801561047657600080fd5b5061047f610fb3565b60405161048c9190613b7f565b60405180910390f35b3480156104a157600080fd5b506104aa610fd7565b6040516104b79190613ba9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190613af3565b610fe1565b005b3480156104f557600080fd5b506104fe61111d565b60405161050b9190613ba9565b60405180910390f35b34801561052057600080fd5b50610529611123565b6040516105369190613ba9565b60405180910390f35b34801561054b57600080fd5b50610554611129565b6040516105619190613ba9565b60405180910390f35b34801561057657600080fd5b5061057f61112f565b60405161058c9190613ba9565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b79190613bc4565b611135565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190613bf1565b611244565b6040516105f29190613ad8565b60405180910390f35b34801561060757600080fd5b5061061061133c565b60405161061d9190613c53565b60405180910390f35b34801561063257600080fd5b5061063b611342565b6040516106489190613ba9565b60405180910390f35b34801561065d57600080fd5b50610666611348565b6040516106739190613ad8565b60405180910390f35b34801561068857600080fd5b5061069161135b565b60405161069e9190613c8a565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190613a7d565b611364565b6040516106db9190613ad8565b60405180910390f35b3480156106f057600080fd5b506106f9611410565b6040516107069190613ba9565b60405180910390f35b34801561071b57600080fd5b50610724611416565b6040516107319190613c53565b60405180910390f35b34801561074657600080fd5b5061074f61143a565b60405161075c9190613ad8565b60405180910390f35b34801561077157600080fd5b5061078c60048036038101906107879190613af3565b61144d565b6040516107999190613ad8565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190613924565b6114a3565b005b3480156107d757600080fd5b506107e061158d565b6040516107ed9190613ba9565b60405180910390f35b34801561080257600080fd5b5061080b611593565b6040516108189190613ad8565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613af3565b6115a6565b6040516108559190613ba9565b60405180910390f35b34801561086a57600080fd5b506108736115ee565b005b34801561088157600080fd5b5061088a611676565b6040516108979190613ad8565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613cd1565b611716565b005b3480156108d557600080fd5b506108de6117ed565b6040516108eb9190613d32565b60405180910390f35b34801561090057600080fd5b50610909611813565b005b34801561091757600080fd5b506109206118ce565b60405161092d9190613c53565b60405180910390f35b34801561094257600080fd5b5061094b6118f8565b6040516109589190613d32565b60405180910390f35b34801561096d57600080fd5b5061098860048036038101906109839190613d4d565b61191e565b005b34801561099657600080fd5b5061099f6119b7565b6040516109ac91906139fd565b60405180910390f35b3480156109c157600080fd5b506109dc60048036038101906109d79190613cd1565b611a49565b005b3480156109ea57600080fd5b506109f3611b62565b604051610a009190613ba9565b60405180910390f35b348015610a1557600080fd5b50610a1e611b68565b604051610a2b9190613ba9565b60405180910390f35b348015610a4057600080fd5b50610a49611b6e565b604051610a569190613ba9565b60405180910390f35b348015610a6b57600080fd5b50610a74611b74565b604051610a819190613ba9565b60405180910390f35b348015610a9657600080fd5b50610ab16004803603810190610aac9190613a7d565b611b7a565b604051610abe9190613ad8565b60405180910390f35b348015610ad357600080fd5b50610adc611c65565b604051610ae99190613ba9565b60405180910390f35b348015610afe57600080fd5b50610b196004803603810190610b149190613a7d565b611c6b565b604051610b269190613ad8565b60405180910390f35b348015610b3b57600080fd5b50610b566004803603810190610b519190613af3565b611c89565b005b348015610b6457600080fd5b50610b7f6004803603810190610b7a9190613af3565b611dc5565b604051610b8c9190613ad8565b60405180910390f35b348015610ba157600080fd5b50610baa611de5565b604051610bb79190613ad8565b60405180910390f35b348015610bcc57600080fd5b50610be76004803603810190610be29190613cd1565b611df8565b005b348015610bf557600080fd5b50610c106004803603810190610c0b9190613bc4565b611f1d565b005b348015610c1e57600080fd5b50610c2761202c565b005b348015610c3557600080fd5b50610c3e6120a6565b604051610c4b9190613ad8565b60405180910390f35b348015610c6057600080fd5b50610c696120b9565b604051610c769190613ba9565b60405180910390f35b348015610c8b57600080fd5b50610ca66004803603810190610ca19190613bc4565b6120bf565b604051610cb39190613ad8565b60405180910390f35b348015610cc857600080fd5b50610cd1612214565b604051610cde9190613ba9565b60405180910390f35b348015610cf357600080fd5b50610d0e6004803603810190610d099190613d7a565b61221a565b604051610d1b9190613ba9565b60405180910390f35b348015610d3057600080fd5b50610d396122a1565b604051610d469190613ba9565b60405180910390f35b348015610d5b57600080fd5b50610d646122a7565b604051610d719190613ad8565b60405180910390f35b348015610d8657600080fd5b50610da16004803603810190610d9c9190613af3565b612347565b005b348015610daf57600080fd5b50610db861243f565b604051610dc59190613ba9565b60405180910390f35b348015610dda57600080fd5b50610de3612445565b604051610df09190613ba9565b60405180910390f35b610e0161244b565b73ffffffffffffffffffffffffffffffffffffffff16610e1f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90613e06565b60405180910390fd5b8160188190555080601981905550601954601854610e939190613e55565b60178190555060146017541115610edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed690613ef7565b60405180910390fd5b5050565b606060038054610ef290613f46565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1e90613f46565b8015610f6b5780601f10610f4057610100808354040283529160200191610f6b565b820191906000526020600020905b815481529060010190602001808311610f4e57829003601f168201915b5050505050905090565b6000610f89610f8261244b565b8484612453565b6001905092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fe961244b565b73ffffffffffffffffffffffffffffffffffffffff166110076118ce565b73ffffffffffffffffffffffffffffffffffffffff161461105d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105490613e06565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601b5481565b601a5481565b61113d61244b565b73ffffffffffffffffffffffffffffffffffffffff1661115b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890613e06565b60405180910390fd5b670de0b6b3a76400006103e860016111c7610fd7565b6111d19190613f78565b6111db9190614001565b6111e59190614001565b811015611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e906140a4565b60405180910390fd5b670de0b6b3a76400008161123b9190613f78565b60088190555050565b600061125184848461261e565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061129c61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390614136565b60405180910390fd5b6113308561132861244b565b858403612453565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061140661137161244b565b84846001600061137f61244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114019190613e55565b612453565b6001905092915050565b60185481565b7f000000000000000000000000d42f7e3905c0e23293701b4061ff462321976f8d81565b601160009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6114ab61244b565b73ffffffffffffffffffffffffffffffffffffffff166114c96118ce565b73ffffffffffffffffffffffffffffffffffffffff161461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613e06565b60405180910390fd5b816015819055508060168190555060165460155461153d9190613e55565b601481905550600f6014541115611589576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611580906141a2565b60405180910390fd5b5050565b60175481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115f661244b565b73ffffffffffffffffffffffffffffffffffffffff166116146118ce565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166190613e06565b60405180910390fd5b6116746000613222565b565b600061168061244b565b73ffffffffffffffffffffffffffffffffffffffff1661169e6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb90613e06565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61171e61244b565b73ffffffffffffffffffffffffffffffffffffffff1661173c6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178990613e06565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61181b61244b565b73ffffffffffffffffffffffffffffffffffffffff166118396118ce565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690613e06565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61192661244b565b73ffffffffffffffffffffffffffffffffffffffff166119446118ce565b73ffffffffffffffffffffffffffffffffffffffff161461199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190613e06565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119c690613f46565b80601f01602080910402602001604051908101604052809291908181526020018280546119f290613f46565b8015611a3f5780601f10611a1457610100808354040283529160200191611a3f565b820191906000526020600020905b815481529060010190602001808311611a2257829003601f168201915b5050505050905090565b611a5161244b565b73ffffffffffffffffffffffffffffffffffffffff16611a6f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90613e06565b60405180910390fd5b7f000000000000000000000000d42f7e3905c0e23293701b4061ff462321976f8d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4b90614234565b60405180910390fd5b611b5e82826132e8565b5050565b60165481565b60105481565b601c5481565b60195481565b60008060016000611b8961244b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3d906142c6565b60405180910390fd5b611c5a611c5161244b565b85858403612453565b600191505092915050565b600e5481565b6000611c7f611c7861244b565b848461261e565b6001905092915050565b611c9161244b565b73ffffffffffffffffffffffffffffffffffffffff16611caf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613e06565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601f6020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e0061244b565b73ffffffffffffffffffffffffffffffffffffffff16611e1e6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b90613e06565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f119190613ad8565b60405180910390a25050565b611f2561244b565b73ffffffffffffffffffffffffffffffffffffffff16611f436118ce565b73ffffffffffffffffffffffffffffffffffffffff1614611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9090613e06565b60405180910390fd5b670de0b6b3a76400006103e86005611faf610fd7565b611fb99190613f78565b611fc39190614001565b611fcd9190614001565b81101561200f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200690614358565b60405180910390fd5b670de0b6b3a7640000816120239190613f78565b600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661206d61244b565b73ffffffffffffffffffffffffffffffffffffffff161461208d57600080fd5b6000612098306115a6565b90506120a381613389565b50565b601360009054906101000a900460ff1681565b60085481565b60006120c961244b565b73ffffffffffffffffffffffffffffffffffffffff166120e76118ce565b73ffffffffffffffffffffffffffffffffffffffff161461213d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213490613e06565b60405180910390fd5b620186a0600161214b610fd7565b6121559190613f78565b61215f9190614001565b8210156121a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612198906143ea565b60405180910390fd5b6103e860056121ae610fd7565b6121b89190613f78565b6121c29190614001565b821115612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061447c565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122b161244b565b73ffffffffffffffffffffffffffffffffffffffff166122cf6118ce565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90613e06565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b61234f61244b565b73ffffffffffffffffffffffffffffffffffffffff1661236d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16146123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90613e06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a9061450e565b60405180910390fd5b61243c81613222565b50565b60155481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba906145a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614632565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126119190613ba9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561268e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612685906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f590614756565b60405180910390fd5b600081141561271857612713838360006135c6565b61321d565b601160009054906101000a900460ff1615612ddb576127356118ce565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a357506127736118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127dc5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612816575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282f5750600560149054906101000a900460ff16155b15612dda57601160019054906101000a900460ff1661292957601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e95750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291f906147c2565b60405180910390fd5b5b601360009054906101000a900460ff1615612af1576129466118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cd57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2557507f000000000000000000000000d42f7e3905c0e23293701b4061ff462321976f8d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af05743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa29061487a565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b945750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57600854811115612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061490c565b60405180910390fd5b600a54612bea836115a6565b82612bf59190613e55565b1115612c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2d90614978565b60405180910390fd5b612dd9565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cde5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2d57600854811115612d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1f90614a0a565b60405180910390fd5b612dd8565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd757600a54612d8a836115a6565b82612d959190613e55565b1115612dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcd90614978565b60405180910390fd5b5b5b5b5b5b6000612de6306115a6565b9050601160029054906101000a900460ff168015612e115750600560149054906101000a900460ff16155b8015612e675750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ebd5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f135750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f3b57612f2181613389565b60004790506000811115612f3957612f3847613847565b5b505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ff15750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612ffb57600090505b6000811561320e57601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561305e57506000601754115b156130f85761308b606461307d601754876138b390919063ffffffff16565b6138c990919063ffffffff16565b90506017546019548261309e9190613f78565b6130a89190614001565b601c60008282546130b99190613e55565b92505081905550601754601854826130d19190613f78565b6130db9190614001565b601a60008282546130ec9190613e55565b925050819055506131ea565b601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561315357506000601454115b156131e9576131806064613172601454876138b390919063ffffffff16565b6138c990919063ffffffff16565b9050601454601654826131939190613f78565b61319d9190614001565b601c60008282546131ae9190613e55565b92505081905550601454601554826131c69190613f78565b6131d09190614001565b601a60008282546131e19190613e55565b925050819055505b5b60008111156131ff576131fe8630836135c6565b5b808461320b9190614a2a565b93505b6132198686866135c6565b5050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600267ffffffffffffffff8111156133a6576133a5614a5e565b5b6040519080825280602002602001820160405280156133d45781602001602082028036833780820191505090505b50905030816000815181106133ec576133eb614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134b59190614ad1565b816001815181106134c9576134c8614a8d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061352e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612453565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613590959493929190614bf7565b600060405180830381600087803b1580156135aa57600080fd5b505af11580156135be573d6000803e3d6000fd5b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362d906146c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369d90614756565b60405180910390fd5b6136b18383836138df565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372e90614cc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137ca9190613e55565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161382e9190613ba9565b60405180910390a36138418484846138e4565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156138af573d6000803e3d6000fd5b5050565b600081836138c19190613f78565b905092915050565b600081836138d79190614001565b905092915050565b505050565b505050565b600080fd5b6000819050919050565b613901816138ee565b811461390c57600080fd5b50565b60008135905061391e816138f8565b92915050565b6000806040838503121561393b5761393a6138e9565b5b60006139498582860161390f565b925050602061395a8582860161390f565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561399e578082015181840152602081019050613983565b838111156139ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006139cf82613964565b6139d9818561396f565b93506139e9818560208601613980565b6139f2816139b3565b840191505092915050565b60006020820190508181036000830152613a1781846139c4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613a4a82613a1f565b9050919050565b613a5a81613a3f565b8114613a6557600080fd5b50565b600081359050613a7781613a51565b92915050565b60008060408385031215613a9457613a936138e9565b5b6000613aa285828601613a68565b9250506020613ab38582860161390f565b9150509250929050565b60008115159050919050565b613ad281613abd565b82525050565b6000602082019050613aed6000830184613ac9565b92915050565b600060208284031215613b0957613b086138e9565b5b6000613b1784828501613a68565b91505092915050565b6000819050919050565b6000613b45613b40613b3b84613a1f565b613b20565b613a1f565b9050919050565b6000613b5782613b2a565b9050919050565b6000613b6982613b4c565b9050919050565b613b7981613b5e565b82525050565b6000602082019050613b946000830184613b70565b92915050565b613ba3816138ee565b82525050565b6000602082019050613bbe6000830184613b9a565b92915050565b600060208284031215613bda57613bd96138e9565b5b6000613be88482850161390f565b91505092915050565b600080600060608486031215613c0a57613c096138e9565b5b6000613c1886828701613a68565b9350506020613c2986828701613a68565b9250506040613c3a8682870161390f565b9150509250925092565b613c4d81613a3f565b82525050565b6000602082019050613c686000830184613c44565b92915050565b600060ff82169050919050565b613c8481613c6e565b82525050565b6000602082019050613c9f6000830184613c7b565b92915050565b613cae81613abd565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce76138e9565b5b6000613cf685828601613a68565b9250506020613d0785828601613cbc565b9150509250929050565b6000613d1c82613a1f565b9050919050565b613d2c81613d11565b82525050565b6000602082019050613d476000830184613d23565b92915050565b600060208284031215613d6357613d626138e9565b5b6000613d7184828501613cbc565b91505092915050565b60008060408385031215613d9157613d906138e9565b5b6000613d9f85828601613a68565b9250506020613db085828601613a68565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613df060208361396f565b9150613dfb82613dba565b602082019050919050565b60006020820190508181036000830152613e1f81613de3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613e60826138ee565b9150613e6b836138ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ea057613e9f613e26565b5b828201905092915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000613ee1601d8361396f565b9150613eec82613eab565b602082019050919050565b60006020820190508181036000830152613f1081613ed4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5e57607f821691505b60208210811415613f7257613f71613f17565b5b50919050565b6000613f83826138ee565b9150613f8e836138ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc757613fc6613e26565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c826138ee565b9150614017836138ee565b92508261402757614026613fd2565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061408e602f8361396f565b915061409982614032565b604082019050919050565b600060208201905081810360008301526140bd81614081565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061412060288361396f565b915061412b826140c4565b604082019050919050565b6000602082019050818103600083015261414f81614113565b9050919050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061418c601d8361396f565b915061419782614156565b602082019050919050565b600060208201905081810360008301526141bb8161417f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061421e60398361396f565b9150614229826141c2565b604082019050919050565b6000602082019050818103600083015261424d81614211565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006142b060258361396f565b91506142bb82614254565b604082019050919050565b600060208201905081810360008301526142df816142a3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061434260248361396f565b915061434d826142e6565b604082019050919050565b6000602082019050818103600083015261437181614335565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006143d460358361396f565b91506143df82614378565b604082019050919050565b60006020820190508181036000830152614403816143c7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061446660348361396f565b91506144718261440a565b604082019050919050565b6000602082019050818103600083015261449581614459565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006144f860268361396f565b91506145038261449c565b604082019050919050565b60006020820190508181036000830152614527816144eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061458a60248361396f565b91506145958261452e565b604082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061461c60228361396f565b9150614627826145c0565b604082019050919050565b6000602082019050818103600083015261464b8161460f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006146ae60258361396f565b91506146b982614652565b604082019050919050565b600060208201905081810360008301526146dd816146a1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061474060238361396f565b915061474b826146e4565b604082019050919050565b6000602082019050818103600083015261476f81614733565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006147ac60168361396f565b91506147b782614776565b602082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061486460498361396f565b915061486f826147e2565b606082019050919050565b6000602082019050818103600083015261489381614857565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006148f660358361396f565b91506149018261489a565b604082019050919050565b60006020820190508181036000830152614925816148e9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061496260138361396f565b915061496d8261492c565b602082019050919050565b6000602082019050818103600083015261499181614955565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006149f460368361396f565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a35826138ee565b9150614a40836138ee565b925082821015614a5357614a52613e26565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614acb81613a51565b92915050565b600060208284031215614ae757614ae66138e9565b5b6000614af584828501614abc565b91505092915050565b6000819050919050565b6000614b23614b1e614b1984614afe565b613b20565b6138ee565b9050919050565b614b3381614b08565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614b6e81613a3f565b82525050565b6000614b808383614b65565b60208301905092915050565b6000602082019050919050565b6000614ba482614b39565b614bae8185614b44565b9350614bb983614b55565b8060005b83811015614bea578151614bd18882614b74565b9750614bdc83614b8c565b925050600181019050614bbd565b5085935050505092915050565b600060a082019050614c0c6000830188613b9a565b614c196020830187614b2a565b8181036040830152614c2b8186614b99565b9050614c3a6060830185613c44565b614c476080830184613b9a565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614cad60268361396f565b9150614cb882614c51565b604082019050919050565b60006020820190508181036000830152614cdc81614ca0565b905091905056fea264697066735822122054f60f228863360e2183c56c0e4353b79acbbbf4291b3cb1578a18b1d8bbe67364736f6c634300080a0033

Deployed Bytecode Sourcemap

32727:14505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39952:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34280:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32801:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41210:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33383:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33197:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34064:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34024;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38729:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32904:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33293:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33253:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13274:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33959:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32859:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33481:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41384:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39647:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33924:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33561:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;37837:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39276:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32996:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37427:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33041:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39539:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40454:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33891:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33437:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34104:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33990:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13992:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33345:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40962:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34501:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33521:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40264:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39012:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37590:195;;;;;;;;;;;;;:::i;:::-;;33779:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38224:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33827:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33124:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38019:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33861:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33164:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39952:304;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40083:13:::1;40071:9;:25;;;;40120:7;40107:10;:20;;;;40166:10;;40154:9;;:22;;;;:::i;:::-;40138:13;:38;;;;40212:2;40195:13;;:19;;40187:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39952:304:::0;;:::o;9555:100::-;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;34280:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32801:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;41210:166::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41317:9:::1;;;;;;;;;;;41289:38;;41306:9;41289:38;;;;;;;;;;;;41358:9;41338;;:30;;;;;;;;;;;;;;;;;;41210:166:::0;:::o;33383:47::-;;;;:::o;33197:36::-;;;;:::o;34064:33::-;;;;:::o;34024:::-;;;;:::o;38729:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38866:4:::1;38858;38853:1;38837:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38836:26;;;;:::i;:::-;38835:35;;;;:::i;:::-;38825:6;:45;;38803:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38989:6;38979;:17;;;;:::i;:::-;38956:20;:40;;;;38729:275:::0;:::o;12373:492::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12765:57;12774:6;12782:12;:10;:12::i;:::-;12815:6;12796:16;:25;12765:8;:57::i;:::-;12853:4;12846:11;;;12373:492;;;;;:::o;32904:53::-;32950:6;32904:53;:::o;33293:45::-;;;;:::o;33253:33::-;;;;;;;;;;;;;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13274:215::-;13362:4;13379:80;13388:12;:10;:12::i;:::-;13402:7;13448:10;13411:11;:25;13423:12;:10;:12::i;:::-;13411:25;;;;;;;;;;;;;;;:34;13437:7;13411:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13379:8;:80::i;:::-;13477:4;13470:11;;13274:215;;;;:::o;33959:24::-;;;;:::o;32859:38::-;;;:::o;33481:33::-;;;;;;;;;;;;;:::o;41384:126::-;41450:4;41474:19;:28;41494:7;41474:28;;;;;;;;;;;;;;;;;;;;;;;;;41467:35;;41384:126;;;:::o;39647:297::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39776:13:::1;39765:8;:24;;;;39812:7;39800:9;:19;;;;39856:9;;39845:8;;:20;;;;:::i;:::-;39830:12;:35;;;;39900:2;39884:12;;:18;;39876:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39647:297:::0;;:::o;33924:28::-;;;;:::o;33561:31::-;;;;;;;;;;;;;:::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;37837:121::-;37889:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37923:5:::1;37906:14;;:22;;;;;;;;;;;;;;;;;;37946:4;37939:11;;37837:121:::0;:::o;39276:167::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39431:4:::1;39389:31;:39;39421:6;39389:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39276:167:::0;;:::o;32996:38::-;;;;;;;;;;;;;:::o;37427:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37498:4:::1;37482:13;;:20;;;;;;;;;;;;;;;;;;37527:4;37513:11;;:18;;;;;;;;;;;;;;;;;;37559:15;37542:14;:32;;;;37427:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;33041:32::-;;;;;;;;;;;;;:::o;39539:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39624:7:::1;39610:11;;:21;;;;;;;;;;;;;;;;;;39539:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;40454:304::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40598:13:::1;40590:21;;:4;:21;;;;40568:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40709:41;40738:4;40744:5;40709:28;:41::i;:::-;40454:304:::0;;:::o;33891:24::-;;;;:::o;33437:35::-;;;;:::o;34104:27::-;;;;:::o;33990:25::-;;;;:::o;13992:413::-;14085:4;14102:24;14129:11;:25;14141:12;:10;:12::i;:::-;14129:25;;;;;;;;;;;;;;;:34;14155:7;14129:34;;;;;;;;;;;;;;;;14102:61;;14202:15;14182:16;:35;;14174:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14295:67;14304:12;:10;:12::i;:::-;14318:7;14346:15;14327:16;:34;14295:8;:67::i;:::-;14393:4;14386:11;;;13992:413;;;;:::o;33345:29::-;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;40962:240::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41122:15:::1;;;;;;;;;;;41079:59;;41102:18;41079:59;;;;;;;;;;;;41175:18;41149:15;;:45;;;;;;;;;;;;;;;;;;40962:240:::0;:::o;34501:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33521:33::-;;;;;;;;;;;;;:::o;40264:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40380:8:::1;40349:19;:28;40369:7;40349:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40420:7;40404:34;;;40429:8;40404:34;;;;;;:::i;:::-;;;;;;;;40264:182:::0;;:::o;39012:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39152:4:::1;39144;39139:1;39123:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39122:26;;;;:::i;:::-;39121:35;;;;:::i;:::-;39111:6;:45;;39089:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39253:6;39243;:17;;;;:::i;:::-;39231:9;:29;;;;39012:256:::0;:::o;37590:195::-;37656:15;;;;;;;;;;;37640:31;;:12;:10;:12::i;:::-;:31;;;37632:40;;;;;;37683:23;37709:24;37727:4;37709:9;:24::i;:::-;37683:50;;37744:33;37761:15;37744:16;:33::i;:::-;37621:164;37590:195::o;33779:39::-;;;;;;;;;;;;;:::o;33082:35::-;;;;:::o;38224:497::-;38332:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38411:6:::1;38406:1;38390:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38389:28;;;;:::i;:::-;38376:9;:41;;38354:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38566:4;38561:1;38545:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38544:26;;;;:::i;:::-;38531:9;:39;;38509:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38682:9;38661:18;:30;;;;38709:4;38702:11;;38224:497:::0;;;:::o;33827:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;33124:33::-;;;;:::o;38019:135::-;38079:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38119:5:::1;38096:20;;:28;;;;;;;;;;;;;;;;;;38142:4;38135:11;;38019:135:::0;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;;;3129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;33861:23::-;;;;:::o;33164:24::-;;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17676:380::-;17829:1;17812:19;;:5;:19;;;;17804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:1;17891:21;;:7;:21;;;;17883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17994:6;17964:11;:18;17976:5;17964:18;;;;;;;;;;;;;;;:27;17983:7;17964:27;;;;;;;;;;;;;;;:36;;;;18032:7;18016:32;;18025:5;18016:32;;;18041:6;18016:32;;;;;;:::i;:::-;;;;;;;;17676:380;;;:::o;41520:4587::-;41668:1;41652:18;;:4;:18;;;;41644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41745:1;41731:16;;:2;:16;;;;41723:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41814:1;41804:6;:11;41800:93;;;41832:28;41848:4;41854:2;41858:1;41832:15;:28::i;:::-;41875:7;;41800:93;41909:14;;;;;;;;;;;41905:2487;;;41970:7;:5;:7::i;:::-;41962:15;;:4;:15;;;;:49;;;;;42004:7;:5;:7::i;:::-;41998:13;;:2;:13;;;;41962:49;:86;;;;;42046:1;42032:16;;:2;:16;;;;41962:86;:128;;;;;42083:6;42069:21;;:2;:21;;;;41962:128;:158;;;;;42112:8;;;;;;;;;;;42111:9;41962:158;41940:2441;;;42160:13;;;;;;;;;;;42155:223;;42232:19;:25;42252:4;42232:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42261:19;:23;42281:2;42261:23;;;;;;;;;;;;;;;;;;;;;;;;;42232:52;42198:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42155:223;42534:20;;;;;;;;;;;42530:641;;;42615:7;:5;:7::i;:::-;42609:13;;:2;:13;;;;:72;;;;;42665:15;42651:30;;:2;:30;;;;42609:72;:129;;;;;42724:13;42710:28;;:2;:28;;;;42609:129;42579:573;;;42902:12;42827:28;:39;42856:9;42827:39;;;;;;;;;;;;;;;;:87;42789:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43116:12;43074:28;:39;43103:9;43074:39;;;;;;;;;;;;;;;:54;;;;42579:573;42530:641;43245:25;:31;43271:4;43245:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43302:31;:35;43334:2;43302:35;;;;;;;;;;;;;;;;;;;;;;;;;43301:36;43245:92;43219:1147;;;43424:20;;43414:6;:30;;43380:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43632:9;;43615:13;43625:2;43615:9;:13::i;:::-;43606:6;:22;;;;:::i;:::-;:35;;43572:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43219:1147;;;43810:25;:29;43836:2;43810:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43865:31;:37;43897:4;43865:37;;;;;;;;;;;;;;;;;;;;;;;;;43864:38;43810:92;43784:582;;;43989:20;;43979:6;:30;;43945:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43784:582;;;44146:31;:35;44178:2;44146:35;;;;;;;;;;;;;;;;;;;;;;;;;44141:225;;44266:9;;44249:13;44259:2;44249:9;:13::i;:::-;44240:6;:22;;;;:::i;:::-;:35;;44206:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44141:225;43784:582;43219:1147;41940:2441;41905:2487;44404:28;44435:24;44453:4;44435:9;:24::i;:::-;44404:55;;44490:11;;;;;;;;;;;:37;;;;;44519:8;;;;;;;;;;;44518:9;44490:37;:86;;;;;44545:25;:31;44571:4;44545:31;;;;;;;;;;;;;;;;;;;;;;;;;44544:32;44490:86;:129;;;;;44594:19;:25;44614:4;44594:25;;;;;;;;;;;;;;;;;;;;;;;;;44593:26;44490:129;:170;;;;;44637:19;:23;44657:2;44637:23;;;;;;;;;;;;;;;;;;;;;;;;;44636:24;44490:170;44472:442;;;44687:38;44704:20;44687:16;:38::i;:::-;44740:26;44769:21;44740:50;;44830:1;44809:18;:22;44806:97;;;44852:35;44865:21;44852:12;:35::i;:::-;44806:97;44672:242;44472:442;44926:12;44942:8;;;;;;;;;;;44941:9;44926:24;;45052:19;:25;45072:4;45052:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45081:19;:23;45101:2;45081:23;;;;;;;;;;;;;;;;;;;;;;;;;45052:52;45048:100;;;45131:5;45121:15;;45048:100;45160:12;45265:7;45261:793;;;45317:25;:29;45343:2;45317:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45366:1;45350:13;;:17;45317:50;45313:592;;;45395:34;45425:3;45395:25;45406:13;;45395:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45388:41;;45486:13;;45472:10;;45465:4;:17;;;;:::i;:::-;45464:35;;;;:::i;:::-;45448:12;;:51;;;;;;;:::i;:::-;;;;;;;;45561:13;;45548:9;;45541:4;:16;;;;:::i;:::-;45540:34;;;;:::i;:::-;45518:18;;:56;;;;;;;:::i;:::-;;;;;;;;45313:592;;;45636:25;:31;45662:4;45636:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45686:1;45671:12;;:16;45636:51;45632:273;;;45715:33;45744:3;45715:24;45726:12;;45715:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45708:40;;45804:12;;45791:9;;45784:4;:16;;;;:::i;:::-;45783:33;;;;:::i;:::-;45767:12;;:49;;;;;;;:::i;:::-;;;;;;;;45877:12;;45865:8;;45858:4;:15;;;;:::i;:::-;45857:32;;;;:::i;:::-;45835:18;;:54;;;;;;;:::i;:::-;;;;;;;;45632:273;45313:592;45932:1;45925:4;:8;45921:91;;;45954:42;45970:4;45984;45991;45954:15;:42::i;:::-;45921:91;46038:4;46028:14;;;;;:::i;:::-;;;45261:793;46066:33;46082:4;46088:2;46092:6;46066:15;:33::i;:::-;41633:4474;;;41520:4587;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;40766:188::-;40883:5;40849:25;:31;40875:4;40849:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40940:5;40906:40;;40934:4;40906:40;;;;;;;;;;;;40766:188;;:::o;46115:589::-;46241:21;46279:1;46265:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46241:40;;46310:4;46292;46297:1;46292:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46336:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46326:4;46331:1;46326:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46371:62;46388:4;46403:15;46421:11;46371:8;:62::i;:::-;46472:15;:66;;;46553:11;46579:1;46623:4;46650;46670:15;46472:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46170:534;46115:589;:::o;14895:733::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:47;15213:6;15221:9;15232:6;15192:20;:47::i;:::-;15252:21;15276:9;:17;15286:6;15276:17;;;;;;;;;;;;;;;;15252:41;;15329:6;15312:13;:23;;15304:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:6;15434:13;:22;15414:9;:17;15424:6;15414:17;;;;;;;;;;;;;;;:42;;;;15502:6;15478:9;:20;15488:9;15478:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15543:9;15526:35;;15535:6;15526:35;;;15554:6;15526:35;;;;;;:::i;:::-;;;;;;;;15574:46;15594:6;15602:9;15613:6;15574:19;:46::i;:::-;15016:612;14895:733;;;:::o;37290:83::-;37339:9;;;;;;;;;;;:18;;:26;37358:6;37339:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37290:83;:::o;23129:98::-;23187:7;23218:1;23214;:5;;;;:::i;:::-;23207:12;;23129:98;;;;:::o;23528:::-;23586:7;23617:1;23613;:5;;;;:::i;:::-;23606:12;;23528:98;;;;:::o;18656:125::-;;;;:::o;19385:124::-;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:104::-;8161:7;8190:24;8208:5;8190:24;:::i;:::-;8179:35;;8116:104;;;:::o;8226:142::-;8329:32;8355:5;8329:32;:::i;:::-;8324:3;8317:45;8226:142;;:::o;8374:254::-;8483:4;8521:2;8510:9;8506:18;8498:26;;8534:87;8618:1;8607:9;8603:17;8594:6;8534:87;:::i;:::-;8374:254;;;;:::o;8634:323::-;8690:6;8739:2;8727:9;8718:7;8714:23;8710:32;8707:119;;;8745:79;;:::i;:::-;8707:119;8865:1;8890:50;8932:7;8923:6;8912:9;8908:22;8890:50;:::i;:::-;8880:60;;8836:114;8634:323;;;;:::o;8963:474::-;9031:6;9039;9088:2;9076:9;9067:7;9063:23;9059:32;9056:119;;;9094:79;;:::i;:::-;9056:119;9214:1;9239:53;9284:7;9275:6;9264:9;9260:22;9239:53;:::i;:::-;9229:63;;9185:117;9341:2;9367:53;9412:7;9403:6;9392:9;9388:22;9367:53;:::i;:::-;9357:63;;9312:118;8963:474;;;;;:::o;9443:182::-;9583:34;9579:1;9571:6;9567:14;9560:58;9443:182;:::o;9631:366::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:419::-;10169:4;10207:2;10196:9;10192:18;10184:26;;10256:9;10250:4;10246:20;10242:1;10231:9;10227:17;10220:47;10284:131;10410:4;10284:131;:::i;:::-;10276:139;;10003:419;;;:::o;10428:180::-;10476:77;10473:1;10466:88;10573:4;10570:1;10563:15;10597:4;10594:1;10587:15;10614:305;10654:3;10673:20;10691:1;10673:20;:::i;:::-;10668:25;;10707:20;10725:1;10707:20;:::i;:::-;10702:25;;10861:1;10793:66;10789:74;10786:1;10783:81;10780:107;;;10867:18;;:::i;:::-;10780:107;10911:1;10908;10904:9;10897:16;;10614:305;;;;:::o;10925:179::-;11065:31;11061:1;11053:6;11049:14;11042:55;10925:179;:::o;11110:366::-;11252:3;11273:67;11337:2;11332:3;11273:67;:::i;:::-;11266:74;;11349:93;11438:3;11349:93;:::i;:::-;11467:2;11462:3;11458:12;11451:19;;11110:366;;;:::o;11482:419::-;11648:4;11686:2;11675:9;11671:18;11663:26;;11735:9;11729:4;11725:20;11721:1;11710:9;11706:17;11699:47;11763:131;11889:4;11763:131;:::i;:::-;11755:139;;11482:419;;;:::o;11907:180::-;11955:77;11952:1;11945:88;12052:4;12049:1;12042:15;12076:4;12073:1;12066:15;12093:320;12137:6;12174:1;12168:4;12164:12;12154:22;;12221:1;12215:4;12211:12;12242:18;12232:81;;12298:4;12290:6;12286:17;12276:27;;12232:81;12360:2;12352:6;12349:14;12329:18;12326:38;12323:84;;;12379:18;;:::i;:::-;12323:84;12144:269;12093:320;;;:::o;12419:348::-;12459:7;12482:20;12500:1;12482:20;:::i;:::-;12477:25;;12516:20;12534:1;12516:20;:::i;:::-;12511:25;;12704:1;12636:66;12632:74;12629:1;12626:81;12621:1;12614:9;12607:17;12603:105;12600:131;;;12711:18;;:::i;:::-;12600:131;12759:1;12756;12752:9;12741:20;;12419:348;;;;:::o;12773:180::-;12821:77;12818:1;12811:88;12918:4;12915:1;12908:15;12942:4;12939:1;12932:15;12959:185;12999:1;13016:20;13034:1;13016:20;:::i;:::-;13011:25;;13050:20;13068:1;13050:20;:::i;:::-;13045:25;;13089:1;13079:35;;13094:18;;:::i;:::-;13079:35;13136:1;13133;13129:9;13124:14;;12959:185;;;;:::o;13150:234::-;13290:34;13286:1;13278:6;13274:14;13267:58;13359:17;13354:2;13346:6;13342:15;13335:42;13150:234;:::o;13390:366::-;13532:3;13553:67;13617:2;13612:3;13553:67;:::i;:::-;13546:74;;13629:93;13718:3;13629:93;:::i;:::-;13747:2;13742:3;13738:12;13731:19;;13390:366;;;:::o;13762:419::-;13928:4;13966:2;13955:9;13951:18;13943:26;;14015:9;14009:4;14005:20;14001:1;13990:9;13986:17;13979:47;14043:131;14169:4;14043:131;:::i;:::-;14035:139;;13762:419;;;:::o;14187:227::-;14327:34;14323:1;14315:6;14311:14;14304:58;14396:10;14391:2;14383:6;14379:15;14372:35;14187:227;:::o;14420:366::-;14562:3;14583:67;14647:2;14642:3;14583:67;:::i;:::-;14576:74;;14659:93;14748:3;14659:93;:::i;:::-;14777:2;14772:3;14768:12;14761:19;;14420:366;;;:::o;14792:419::-;14958:4;14996:2;14985:9;14981:18;14973:26;;15045:9;15039:4;15035:20;15031:1;15020:9;15016:17;15009:47;15073:131;15199:4;15073:131;:::i;:::-;15065:139;;14792:419;;;:::o;15217:179::-;15357:31;15353:1;15345:6;15341:14;15334:55;15217:179;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:244::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:27;16403:2;16395:6;16391:15;16384:52;16199:244;:::o;16449:366::-;16591:3;16612:67;16676:2;16671:3;16612:67;:::i;:::-;16605:74;;16688:93;16777:3;16688:93;:::i;:::-;16806:2;16801:3;16797:12;16790:19;;16449:366;;;:::o;16821:419::-;16987:4;17025:2;17014:9;17010:18;17002:26;;17074:9;17068:4;17064:20;17060:1;17049:9;17045:17;17038:47;17102:131;17228:4;17102:131;:::i;:::-;17094:139;;16821:419;;;:::o;17246:224::-;17386:34;17382:1;17374:6;17370:14;17363:58;17455:7;17450:2;17442:6;17438:15;17431:32;17246:224;:::o;17476:366::-;17618:3;17639:67;17703:2;17698:3;17639:67;:::i;:::-;17632:74;;17715:93;17804:3;17715:93;:::i;:::-;17833:2;17828:3;17824:12;17817:19;;17476:366;;;:::o;17848:419::-;18014:4;18052:2;18041:9;18037:18;18029:26;;18101:9;18095:4;18091:20;18087:1;18076:9;18072:17;18065:47;18129:131;18255:4;18129:131;:::i;:::-;18121:139;;17848:419;;;:::o;18273:223::-;18413:34;18409:1;18401:6;18397:14;18390:58;18482:6;18477:2;18469:6;18465:15;18458:31;18273:223;:::o;18502:366::-;18644:3;18665:67;18729:2;18724:3;18665:67;:::i;:::-;18658:74;;18741:93;18830:3;18741:93;:::i;:::-;18859:2;18854:3;18850:12;18843:19;;18502:366;;;:::o;18874:419::-;19040:4;19078:2;19067:9;19063:18;19055:26;;19127:9;19121:4;19117:20;19113:1;19102:9;19098:17;19091:47;19155:131;19281:4;19155:131;:::i;:::-;19147:139;;18874:419;;;:::o;19299:240::-;19439:34;19435:1;19427:6;19423:14;19416:58;19508:23;19503:2;19495:6;19491:15;19484:48;19299:240;:::o;19545:366::-;19687:3;19708:67;19772:2;19767:3;19708:67;:::i;:::-;19701:74;;19784:93;19873:3;19784:93;:::i;:::-;19902:2;19897:3;19893:12;19886:19;;19545:366;;;:::o;19917:419::-;20083:4;20121:2;20110:9;20106:18;20098:26;;20170:9;20164:4;20160:20;20156:1;20145:9;20141:17;20134:47;20198:131;20324:4;20198:131;:::i;:::-;20190:139;;19917:419;;;:::o;20342:239::-;20482:34;20478:1;20470:6;20466:14;20459:58;20551:22;20546:2;20538:6;20534:15;20527:47;20342:239;:::o;20587:366::-;20729:3;20750:67;20814:2;20809:3;20750:67;:::i;:::-;20743:74;;20826:93;20915:3;20826:93;:::i;:::-;20944:2;20939:3;20935:12;20928:19;;20587:366;;;:::o;20959:419::-;21125:4;21163:2;21152:9;21148:18;21140:26;;21212:9;21206:4;21202:20;21198:1;21187:9;21183:17;21176:47;21240:131;21366:4;21240:131;:::i;:::-;21232:139;;20959:419;;;:::o;21384:225::-;21524:34;21520:1;21512:6;21508:14;21501:58;21593:8;21588:2;21580:6;21576:15;21569:33;21384:225;:::o;21615:366::-;21757:3;21778:67;21842:2;21837:3;21778:67;:::i;:::-;21771:74;;21854:93;21943:3;21854:93;:::i;:::-;21972:2;21967:3;21963:12;21956:19;;21615:366;;;:::o;21987:419::-;22153:4;22191:2;22180:9;22176:18;22168:26;;22240:9;22234:4;22230:20;22226:1;22215:9;22211:17;22204:47;22268:131;22394:4;22268:131;:::i;:::-;22260:139;;21987:419;;;:::o;22412:223::-;22552:34;22548:1;22540:6;22536:14;22529:58;22621:6;22616:2;22608:6;22604:15;22597:31;22412:223;:::o;22641:366::-;22783:3;22804:67;22868:2;22863:3;22804:67;:::i;:::-;22797:74;;22880:93;22969:3;22880:93;:::i;:::-;22998:2;22993:3;22989:12;22982:19;;22641:366;;;:::o;23013:419::-;23179:4;23217:2;23206:9;23202:18;23194:26;;23266:9;23260:4;23256:20;23252:1;23241:9;23237:17;23230:47;23294:131;23420:4;23294:131;:::i;:::-;23286:139;;23013:419;;;:::o;23438:221::-;23578:34;23574:1;23566:6;23562:14;23555:58;23647:4;23642:2;23634:6;23630:15;23623:29;23438:221;:::o;23665:366::-;23807:3;23828:67;23892:2;23887:3;23828:67;:::i;:::-;23821:74;;23904:93;23993:3;23904:93;:::i;:::-;24022:2;24017:3;24013:12;24006:19;;23665:366;;;:::o;24037:419::-;24203:4;24241:2;24230:9;24226:18;24218:26;;24290:9;24284:4;24280:20;24276:1;24265:9;24261:17;24254:47;24318:131;24444:4;24318:131;:::i;:::-;24310:139;;24037:419;;;:::o;24462:224::-;24602:34;24598:1;24590:6;24586:14;24579:58;24671:7;24666:2;24658:6;24654:15;24647:32;24462:224;:::o;24692:366::-;24834:3;24855:67;24919:2;24914:3;24855:67;:::i;:::-;24848:74;;24931:93;25020:3;24931:93;:::i;:::-;25049:2;25044:3;25040:12;25033:19;;24692:366;;;:::o;25064:419::-;25230:4;25268:2;25257:9;25253:18;25245:26;;25317:9;25311:4;25307:20;25303:1;25292:9;25288:17;25281:47;25345:131;25471:4;25345:131;:::i;:::-;25337:139;;25064:419;;;:::o;25489:222::-;25629:34;25625:1;25617:6;25613:14;25606:58;25698:5;25693:2;25685:6;25681:15;25674:30;25489:222;:::o;25717:366::-;25859:3;25880:67;25944:2;25939:3;25880:67;:::i;:::-;25873:74;;25956:93;26045:3;25956:93;:::i;:::-;26074:2;26069:3;26065:12;26058:19;;25717:366;;;:::o;26089:419::-;26255:4;26293:2;26282:9;26278:18;26270:26;;26342:9;26336:4;26332:20;26328:1;26317:9;26313:17;26306:47;26370:131;26496:4;26370:131;:::i;:::-;26362:139;;26089:419;;;:::o;26514:172::-;26654:24;26650:1;26642:6;26638:14;26631:48;26514:172;:::o;26692:366::-;26834:3;26855:67;26919:2;26914:3;26855:67;:::i;:::-;26848:74;;26931:93;27020:3;26931:93;:::i;:::-;27049:2;27044:3;27040:12;27033:19;;26692:366;;;:::o;27064:419::-;27230:4;27268:2;27257:9;27253:18;27245:26;;27317:9;27311:4;27307:20;27303:1;27292:9;27288:17;27281:47;27345:131;27471:4;27345:131;:::i;:::-;27337:139;;27064:419;;;:::o;27489:297::-;27629:34;27625:1;27617:6;27613:14;27606:58;27698:34;27693:2;27685:6;27681:15;27674:59;27767:11;27762:2;27754:6;27750:15;27743:36;27489:297;:::o;27792:366::-;27934:3;27955:67;28019:2;28014:3;27955:67;:::i;:::-;27948:74;;28031:93;28120:3;28031:93;:::i;:::-;28149:2;28144:3;28140:12;28133:19;;27792:366;;;:::o;28164:419::-;28330:4;28368:2;28357:9;28353:18;28345:26;;28417:9;28411:4;28407:20;28403:1;28392:9;28388:17;28381:47;28445:131;28571:4;28445:131;:::i;:::-;28437:139;;28164:419;;;:::o;28589:240::-;28729:34;28725:1;28717:6;28713:14;28706:58;28798:23;28793:2;28785:6;28781:15;28774:48;28589:240;:::o;28835:366::-;28977:3;28998:67;29062:2;29057:3;28998:67;:::i;:::-;28991:74;;29074:93;29163:3;29074:93;:::i;:::-;29192:2;29187:3;29183:12;29176:19;;28835:366;;;:::o;29207:419::-;29373:4;29411:2;29400:9;29396:18;29388:26;;29460:9;29454:4;29450:20;29446:1;29435:9;29431:17;29424:47;29488:131;29614:4;29488:131;:::i;:::-;29480:139;;29207:419;;;:::o;29632:169::-;29772:21;29768:1;29760:6;29756:14;29749:45;29632:169;:::o;29807:366::-;29949:3;29970:67;30034:2;30029:3;29970:67;:::i;:::-;29963:74;;30046:93;30135:3;30046:93;:::i;:::-;30164:2;30159:3;30155:12;30148:19;;29807:366;;;:::o;30179:419::-;30345:4;30383:2;30372:9;30368:18;30360:26;;30432:9;30426:4;30422:20;30418:1;30407:9;30403:17;30396:47;30460:131;30586:4;30460:131;:::i;:::-;30452:139;;30179:419;;;:::o;30604:241::-;30744:34;30740:1;30732:6;30728:14;30721:58;30813:24;30808:2;30800:6;30796:15;30789:49;30604:241;:::o;30851:366::-;30993:3;31014:67;31078:2;31073:3;31014:67;:::i;:::-;31007:74;;31090:93;31179:3;31090:93;:::i;:::-;31208:2;31203:3;31199:12;31192:19;;30851:366;;;:::o;31223:419::-;31389:4;31427:2;31416:9;31412:18;31404:26;;31476:9;31470:4;31466:20;31462:1;31451:9;31447:17;31440:47;31504:131;31630:4;31504:131;:::i;:::-;31496:139;;31223:419;;;:::o;31648:191::-;31688:4;31708:20;31726:1;31708:20;:::i;:::-;31703:25;;31742:20;31760:1;31742:20;:::i;:::-;31737:25;;31781:1;31778;31775:8;31772:34;;;31786:18;;:::i;:::-;31772:34;31831:1;31828;31824:9;31816:17;;31648:191;;;;:::o;31845:180::-;31893:77;31890:1;31883:88;31990:4;31987:1;31980:15;32014:4;32011:1;32004:15;32031:180;32079:77;32076:1;32069:88;32176:4;32173:1;32166:15;32200:4;32197:1;32190:15;32217:143;32274:5;32305:6;32299:13;32290:22;;32321:33;32348:5;32321:33;:::i;:::-;32217:143;;;;:::o;32366:351::-;32436:6;32485:2;32473:9;32464:7;32460:23;32456:32;32453:119;;;32491:79;;:::i;:::-;32453:119;32611:1;32636:64;32692:7;32683:6;32672:9;32668:22;32636:64;:::i;:::-;32626:74;;32582:128;32366:351;;;;:::o;32723:85::-;32768:7;32797:5;32786:16;;32723:85;;;:::o;32814:158::-;32872:9;32905:61;32923:42;32932:32;32958:5;32932:32;:::i;:::-;32923:42;:::i;:::-;32905:61;:::i;:::-;32892:74;;32814:158;;;:::o;32978:147::-;33073:45;33112:5;33073:45;:::i;:::-;33068:3;33061:58;32978:147;;:::o;33131:114::-;33198:6;33232:5;33226:12;33216:22;;33131:114;;;:::o;33251:184::-;33350:11;33384:6;33379:3;33372:19;33424:4;33419:3;33415:14;33400:29;;33251:184;;;;:::o;33441:132::-;33508:4;33531:3;33523:11;;33561:4;33556:3;33552:14;33544:22;;33441:132;;;:::o;33579:108::-;33656:24;33674:5;33656:24;:::i;:::-;33651:3;33644:37;33579:108;;:::o;33693:179::-;33762:10;33783:46;33825:3;33817:6;33783:46;:::i;:::-;33861:4;33856:3;33852:14;33838:28;;33693:179;;;;:::o;33878:113::-;33948:4;33980;33975:3;33971:14;33963:22;;33878:113;;;:::o;34027:732::-;34146:3;34175:54;34223:5;34175:54;:::i;:::-;34245:86;34324:6;34319:3;34245:86;:::i;:::-;34238:93;;34355:56;34405:5;34355:56;:::i;:::-;34434:7;34465:1;34450:284;34475:6;34472:1;34469:13;34450:284;;;34551:6;34545:13;34578:63;34637:3;34622:13;34578:63;:::i;:::-;34571:70;;34664:60;34717:6;34664:60;:::i;:::-;34654:70;;34510:224;34497:1;34494;34490:9;34485:14;;34450:284;;;34454:14;34750:3;34743:10;;34151:608;;;34027:732;;;;:::o;34765:831::-;35028:4;35066:3;35055:9;35051:19;35043:27;;35080:71;35148:1;35137:9;35133:17;35124:6;35080:71;:::i;:::-;35161:80;35237:2;35226:9;35222:18;35213:6;35161:80;:::i;:::-;35288:9;35282:4;35278:20;35273:2;35262:9;35258:18;35251:48;35316:108;35419:4;35410:6;35316:108;:::i;:::-;35308:116;;35434:72;35502:2;35491:9;35487:18;35478:6;35434:72;:::i;:::-;35516:73;35584:3;35573:9;35569:19;35560:6;35516:73;:::i;:::-;34765:831;;;;;;;;:::o;35602:225::-;35742:34;35738:1;35730:6;35726:14;35719:58;35811:8;35806:2;35798:6;35794:15;35787:33;35602:225;:::o;35833:366::-;35975:3;35996:67;36060:2;36055:3;35996:67;:::i;:::-;35989:74;;36072:93;36161:3;36072:93;:::i;:::-;36190:2;36185:3;36181:12;36174:19;;35833:366;;;:::o;36205:419::-;36371:4;36409:2;36398:9;36394:18;36386:26;;36458:9;36452:4;36448:20;36444:1;36433:9;36429:17;36422:47;36486:131;36612:4;36486:131;:::i;:::-;36478:139;;36205:419;;;:::o

Swarm Source

ipfs://54f60f228863360e2183c56c0e4353b79acbbbf4291b3cb1578a18b1d8bbe673
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.