ETH Price: $3,268.52 (+0.79%)
Gas: 1 Gwei

Token

Doge 2.0 (DOGE2)
 

Overview

Max Total Supply

420,690,000,000,000 DOGE2

Holders

128

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,040,345,980,197.88998531889914568 DOGE2

Value
$0.00
0x8b714478902df5fa4fa6a8121535d108a059f429
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:
DOGE2

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-21
*/

/*
  Website :https://dogetwo.com/ 
  X       :https://x.com/Doge20_ERC
  Telegram:https://t.me/DogeTwoPortal
/*

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

pragma solidity 0.8.9;


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


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

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

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

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

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


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

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

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

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

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

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

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

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


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

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


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

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

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

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

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


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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;
    
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    
    uint256 public percentForLPBurn = 1; // 25 = .25%
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 1360000000000 seconds;
    uint256 public lastLpBurnTime;
    
    uint256 public manualBurnFrequency = 43210 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = true; // go live after adding LP
    bool public swapEnabled = true;
    
     // 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 buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;
    
    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    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;

    // blacklist
    mapping(address => bool) public blacklists;

    // 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("Doge 2.0", "DOGE2") {
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 15;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 20;
        
        uint256 totalSupply = 420_690_000_000_000 * 1e18;
        
        //  Maximum tx size and wallet size
        maxTransactionAmount = totalSupply * 1 / 100;
        maxWallet = totalSupply * 1 / 100;

        swapTokensAtAmount = totalSupply * 1 / 10000;

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
        marketingWallet = address(owner()); // set as marketing wallet
        devWallet = address(owner()); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        
        /*
            _mint 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 blacklist(address[] calldata _addresses, bool _isBlacklisting) external onlyOwner {
        for (uint i=0; i<_addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisting;
        }
    }

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }
    
    // 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() * 10 / 1000, "Swap amount cannot be higher than 1% total supply.");
        swapTokensAtAmount = newAmount;
        return true;
    }
    
    function updateMaxLimits(uint256 maxPerTx, uint256 maxPerWallet) external onlyOwner {
        require(maxPerTx >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%");
        maxTransactionAmount = maxPerTx * (10**18);

        require(maxPerWallet >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%");
        maxWallet = maxPerWallet * (10**18);
    }
    
    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 _liquidityFee, uint256 _devFee) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }
    
    function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function updateTaxes (uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
        require(sellTotalFees <= 99, "Must keep fees at 99% 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 = newMarketingWallet;
    }
    
    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }
    

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
        
         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
        
        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                        require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount.");
                        require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
                
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                        require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                }
                else if(!_isExcludedMaxTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                }
            }
        }
        
        
        uint256 contractTokenBalance = balanceOf(address(this));
        
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapping = false;
        }
        
        if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from]){
            autoBurnLiquidityPairTokens();
        }

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

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

    function swapTokensForEth(uint256 tokenAmount) private {

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
        
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

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

        if(contractBalance > swapTokensAtAmount * 20){
          contractBalance = swapTokensAtAmount * 20;
        }
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
        
        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH); 
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);
        
        
        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;
        
        
        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;
        
        (success,) = address(devWallet).call{value: ethForDev}("");
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
        }
        
        
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }
    
    function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner {
        require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes");
        require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%");
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }
    
    function autoBurnLiquidityPairTokens() internal returns (bool){
        
        lastLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000);
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){
        require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish");
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;
        
        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);
        
        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);
        
        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0){
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }
        
        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

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":"sniper","type":"address"}],"name":"BoughtEarly","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":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxLimits","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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600881526020017f446f676520322e300000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444f47453200000000000000000000000000000000000000000000000000000081525081600390805190602001906200013392919062000ae4565b5080600490805190602001906200014c92919062000ae4565b5050506200016f620001636200061c60201b60201c565b6200062460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019b816001620006ea60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021657600080fd5b505afa1580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000251919062000bfe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002b457600080fd5b505afa158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef919062000bfe565b6040518363ffffffff1660e01b81526004016200030e92919062000c41565b602060405180830381600087803b1580156200032957600080fd5b505af11580156200033e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000364919062000bfe565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003ac60a0516001620006ea60201b60201c565b620003c160a05160016200075560201b60201c565b6000806000600f905060008060006014905060006d14bddab3e51a57cff87a5000000090506064600182620003f7919062000ca7565b62000403919062000d37565b60088190555060646001826200041a919062000ca7565b62000426919062000d37565b600a819055506127106001826200043e919062000ca7565b6200044a919062000d37565b6009819055508660158190555085601681905550846017819055506017546016546015546200047a919062000d6f565b62000486919062000d6f565b6014819055508360198190555082601a8190555081601b81905550601b54601a54601954620004b6919062000d6f565b620004c2919062000d6f565b601881905550620004d8620007f660201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000528620007f660201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200058a6200057c620007f660201b60201c565b60016200082060201b60201c565b6200059d3060016200082060201b60201c565b620005b261dead60016200082060201b60201c565b620005d4620005c6620007f660201b60201c565b6001620006ea60201b60201c565b620005e7306001620006ea60201b60201c565b620005fc61dead6001620006ea60201b60201c565b6200060e3382620008db60201b60201c565b505050505050505062000f8e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006fa62000a4960201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200083062000a4960201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008cf919062000de9565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200094e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009459062000e67565b60405180910390fd5b620009626000838362000ada60201b60201c565b806002600082825462000976919062000d6f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a29919062000e9a565b60405180910390a362000a456000838362000adf60201b60201c565b5050565b62000a596200061c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a7f620007f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acf9062000f07565b60405180910390fd5b565b505050565b505050565b82805462000af29062000f58565b90600052602060002090601f01602090048101928262000b16576000855562000b62565b82601f1062000b3157805160ff191683800117855562000b62565b8280016001018555821562000b62579182015b8281111562000b6157825182559160200191906001019062000b44565b5b50905062000b71919062000b75565b5090565b5b8082111562000b9057600081600090555060010162000b76565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bc68262000b99565b9050919050565b62000bd88162000bb9565b811462000be457600080fd5b50565b60008151905062000bf88162000bcd565b92915050565b60006020828403121562000c175762000c1662000b94565b5b600062000c278482850162000be7565b91505092915050565b62000c3b8162000bb9565b82525050565b600060408201905062000c58600083018562000c30565b62000c67602083018462000c30565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cb48262000c6e565b915062000cc18362000c6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cfd5762000cfc62000c78565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d448262000c6e565b915062000d518362000c6e565b92508262000d645762000d6362000d08565b5b828204905092915050565b600062000d7c8262000c6e565b915062000d898362000c6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dc15762000dc062000c78565b5b828201905092915050565b60008115159050919050565b62000de38162000dcc565b82525050565b600060208201905062000e00600083018462000dd8565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e4f601f8362000e06565b915062000e5c8262000e17565b602082019050919050565b6000602082019050818103600083015262000e828162000e40565b9050919050565b62000e948162000c6e565b82525050565b600060208201905062000eb1600083018462000e89565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eef60208362000e06565b915062000efc8262000eb7565b602082019050919050565b6000602082019050818103600083015262000f228162000ee0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f7157607f821691505b6020821081141562000f885762000f8762000f29565b5b50919050565b60805160a0516159ea62001016600039600081816113bc0152818161182c01528181612140015281816122060152818161223301528181612a6401528181613b5f01528181613c270152613c5401526000818161116501528181612a0c01528181613dca01528181613eba01528181613ee101528181613f7d0152613fa401526159ea6000f3fe6080604052600436106103dd5760003560e01c80638da5cb5b116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ebe578063f319ae7714610ee7578063f637434214610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063dd62ed3e14610e00578063e2f4560514610e3d578063e884f26014610e68578063f11a24d314610e93576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d44578063c997eb8d14610d6f578063d257b34f14610d98578063d85ba06314610dd5576103e4565b8063c024666814610c9e578063c17b5b8c14610cc7578063c18bc19514610cf0578063c876d0b914610d19576103e4565b80639fccce3211610190578063a9059cbb1161015f578063a9059cbb14610bd0578063aacebbe314610c0d578063b62496f514610c36578063bbc0c74214610c73576103e4565b80639fccce3214610b12578063a0d82dc514610b3d578063a457c2d714610b68578063a4c82a0014610ba5576103e4565b806395d89b41116101cc57806395d89b4114610a685780639a7a23d614610a935780639c3b4fdc14610abc5780639ec22c0e14610ae7576103e4565b80638da5cb5b146109be5780638ea5220f146109e95780639213691314610a14578063924de9b714610a3f576103e4565b80632e82f1a0116102f857806370a082311161028b5780637571336a1161025a5780637571336a146108ff57806375f0a874146109285780637bce5a04146109535780638095d5641461097e5780638a8c523c146109a7576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab578063751039fc146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140fb565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906141bb565b611035565b6040516104489190614216565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614231565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614271565b611144565b6040516104ae9190614216565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142fd565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614271565b611187565b6040516105169190614216565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b6040516105419190614327565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614271565b6111b1565b005b34801561057f57600080fd5b50610588611279565b6040516105959190614327565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c09190614327565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb9190614327565b60405180910390f35b34801561060057600080fd5b5061060961128b565b6040516106169190614327565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614342565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061436f565b61132c565b60405161067c9190614216565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a791906143d1565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d29190614327565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd9190614216565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b6040516107289190614408565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906141bb565b611383565b6040516107659190614216565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b60405161079091906143d1565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb9190614216565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614271565b6113f1565b6040516107f89190614216565b60405180910390f35b34801561080d57600080fd5b50610816611447565b6040516108239190614327565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e9190614216565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614271565b611460565b60405161088b9190614327565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061444f565b6114bc565b005b3480156108e057600080fd5b506108e9611588565b6040516108f69190614216565b60405180910390f35b34801561090b57600080fd5b50610926600480360381019061092191906144a2565b6115b4565b005b34801561093457600080fd5b5061093d611617565b60405161094a91906143d1565b60405180910390f35b34801561095f57600080fd5b5061096861163d565b6040516109759190614327565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a091906144e2565b611643565b005b3480156109b357600080fd5b506109bc6116ce565b005b3480156109ca57600080fd5b506109d3611715565b6040516109e091906143d1565b60405180910390f35b3480156109f557600080fd5b506109fe61173f565b604051610a0b91906143d1565b60405180910390f35b348015610a2057600080fd5b50610a29611765565b604051610a369190614327565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190614535565b61176b565b005b348015610a7457600080fd5b50610a7d611790565b604051610a8a91906140fb565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab591906144a2565b611822565b005b348015610ac857600080fd5b50610ad16118c7565b604051610ade9190614327565b60405180910390f35b348015610af357600080fd5b50610afc6118cd565b604051610b099190614327565b60405180910390f35b348015610b1e57600080fd5b50610b276118d3565b604051610b349190614327565b60405180910390f35b348015610b4957600080fd5b50610b526118d9565b604051610b5f9190614327565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a91906141bb565b6118df565b604051610b9c9190614216565b60405180910390f35b348015610bb157600080fd5b50610bba611956565b604051610bc79190614327565b60405180910390f35b348015610bdc57600080fd5b50610bf76004803603810190610bf291906141bb565b61195c565b604051610c049190614216565b60405180910390f35b348015610c1957600080fd5b50610c346004803603810190610c2f9190614271565b61197f565b005b348015610c4257600080fd5b50610c5d6004803603810190610c589190614271565b611a47565b604051610c6a9190614216565b60405180910390f35b348015610c7f57600080fd5b50610c88611a67565b604051610c959190614216565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc091906144a2565b611a7a565b005b348015610cd357600080fd5b50610cee6004803603810190610ce991906144e2565b611b2b565b005b348015610cfc57600080fd5b50610d176004803603810190610d129190614342565b611bb6565b005b348015610d2557600080fd5b50610d2e611c51565b604051610d3b9190614216565b60405180910390f35b348015610d5057600080fd5b50610d59611c64565b604051610d669190614327565b60405180910390f35b348015610d7b57600080fd5b50610d966004803603810190610d9191906145c7565b611c6a565b005b348015610da457600080fd5b50610dbf6004803603810190610dba9190614342565b611d17565b604051610dcc9190614216565b60405180910390f35b348015610de157600080fd5b50610dea611df8565b604051610df79190614327565b60405180910390f35b348015610e0c57600080fd5b50610e276004803603810190610e229190614627565b611dfe565b604051610e349190614327565b60405180910390f35b348015610e4957600080fd5b50610e52611e85565b604051610e5f9190614327565b60405180910390f35b348015610e7457600080fd5b50610e7d611e8b565b604051610e8a9190614216565b60405180910390f35b348015610e9f57600080fd5b50610ea8611eb7565b604051610eb59190614327565b60405180910390f35b348015610eca57600080fd5b50610ee56004803603810190610ee09190614271565b611ebd565b005b348015610ef357600080fd5b50610f0e6004803603810190610f099190614231565b611f41565b005b348015610f1c57600080fd5b50610f2561206d565b604051610f329190614327565b60405180910390f35b348015610f4757600080fd5b50610f50612073565b604051610f5d9190614327565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614342565b612079565b604051610f9a9190614216565b60405180910390f35b606060038054610fb290614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614696565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122ec565b905061104d8185856122f4565b600191505092915050565b6110606124bf565b80601b8190555081601781905550601b54601a5460195461108191906146f7565b61108b91906146f7565b6018819055506017546016546015546110a491906146f7565b6110ae91906146f7565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614799565b60405180910390fd5b60636018541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614805565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124bf565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124bf565b670de0b6b3a76400006103e860016112af6111a7565b6112b99190614825565b6112c391906148ae565b6112cd91906148ae565b81101561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614951565b60405180910390fd5b670de0b6b3a7640000816113239190614825565b60088190555050565b6000806113376122ec565b905061134485828561253d565b61134f8585856125c9565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122ec565b90506113af8185856113a08589611dfe565b6113aa91906146f7565b6122f4565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124bf565b6114ba6000613444565b565b6114c46124bf565b610258831015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906149e3565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a75565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115926124bf565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115bc6124bf565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61164b6124bf565b82601581905550816016819055508060178190555060175460165460155461167391906146f7565b61167d91906146f7565b601481905550601960145411156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614799565b60405180910390fd5b505050565b6116d66124bf565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117736124bf565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461179f90614696565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb90614696565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b61182a6124bf565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614b07565b60405180910390fd5b6118c3828261350a565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806118ea6122ec565b905060006118f88286611dfe565b90508381101561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614b99565b60405180910390fd5b61194a82868684036122f4565b60019250505092915050565b600e5481565b6000806119676122ec565b90506119748185856125c9565b600191505092915050565b6119876124bf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611a826124bf565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b1f9190614216565b60405180910390a25050565b611b336124bf565b8260198190555081601a8190555080601b81905550601b54601a54601954611b5b91906146f7565b611b6591906146f7565b60188190555060636018541115611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890614805565b60405180910390fd5b505050565b611bbe6124bf565b670de0b6b3a76400006103e86005611bd46111a7565b611bde9190614825565b611be891906148ae565b611bf291906148ae565b811015611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614c2b565b60405180910390fd5b670de0b6b3a764000081611c489190614825565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b611c726124bf565b60005b83839050811015611d11578160216000868685818110611c9857611c97614c4b565b5b9050602002016020810190611cad9190614271565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d0990614c7a565b915050611c75565b50505050565b6000611d216124bf565b620186a06001611d2f6111a7565b611d399190614825565b611d4391906148ae565b821015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614d35565b60405180910390fd5b6103e8600a611d926111a7565b611d9c9190614825565b611da691906148ae565b821115611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90614dc7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e956124bf565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611ec56124bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614e59565b60405180910390fd5b611f3e81613444565b50565b611f496124bf565b670de0b6b3a76400006103e86001611f5f6111a7565b611f699190614825565b611f7391906148ae565b611f7d91906148ae565b821015611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690614951565b60405180910390fd5b670de0b6b3a764000082611fd39190614825565b600881905550670de0b6b3a76400006103e86005611fef6111a7565b611ff99190614825565b61200391906148ae565b61200d91906148ae565b81101561204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614c2b565b60405180910390fd5b670de0b6b3a7640000816120639190614825565b600a819055505050565b601a5481565b600a5481565b60006120836124bf565b600f5460105461209391906146f7565b42116120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614ec5565b60405180910390fd5b6103e8821115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614f57565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161217b91906143d1565b60206040518083038186803b15801561219357600080fd5b505afa1580156121a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cb9190614f8c565b905060006121f66127106121e886856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081111561222f5761222e7f000000000000000000000000000000000000000000000000000000000000000061dead836135d7565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061502b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906150bd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b29190614327565b60405180910390a3505050565b6124c76122ec565b73ffffffffffffffffffffffffffffffffffffffff166124e5611715565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290615129565b60405180910390fd5b565b60006125498484611dfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125c357818110156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90615195565b60405180910390fd5b6125c284848484036122f4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906152b9565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274d5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615325565b60405180910390fd5b60008114156127a6576127a1838360006135d7565b61343f565b601160009054906101000a900460ff1615612e69576127c3611715565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156128315750612801611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600560149054906101000a900460ff16155b15612e6857601160019054906101000a900460ff166129b757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129775750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615391565b60405180910390fd5b5b601360009054906101000a900460ff1615612b7f576129d4611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a5b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b7e5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3090615449565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c225750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc957600854811115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906154db565b60405180910390fd5b600a54612c7883611460565b82612c8391906146f7565b1115612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90615547565b60405180910390fd5b612e67565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dbb57600854811115612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906155d9565b60405180910390fd5b612e66565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e6557600a54612e1883611460565b82612e2391906146f7565b1115612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90615547565b60405180910390fd5b5b5b5b5b5b6000612e7430611460565b905060006009548210159050808015612e995750601160029054906101000a900460ff165b8015612eb25750600560149054906101000a900460ff16155b8015612f085750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f5e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fb45750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff8576001600560146101000a81548160ff021916908315150217905550612fdc61384f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561305e5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130765750600c60009054906101000a900460ff165b80156130915750600d54600e5461308d91906146f7565b4210155b80156130e75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130f6576130f4613b36565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131ac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131b657600090505b6000811561342f57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321957506000601854115b156132e6576132466064613238601854886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601854601a54826132599190614825565b61326391906148ae565b601d600082825461327491906146f7565b92505081905550601854601b548261328c9190614825565b61329691906148ae565b601e60008282546132a791906146f7565b92505081905550601854601954826132bf9190614825565b6132c991906148ae565b601c60008282546132da91906146f7565b9250508190555061340b565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561334157506000601454115b1561340a5761336e6064613360601454886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601454601654826133819190614825565b61338b91906148ae565b601d600082825461339c91906146f7565b92505081905550601454601754826133b49190614825565b6133be91906148ae565b601e60008282546133cf91906146f7565b92505081905550601454601554826133e79190614825565b6133f191906148ae565b601c600082825461340291906146f7565b925050819055505b5b60008111156134205761341f8730836135d7565b5b808561342c91906155f9565b94505b61343a8787876135d7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135b99190614825565b905092915050565b600081836135cf91906148ae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e90615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ae906152b9565b60405180910390fd5b6136c2838383613d0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f9061569f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138369190614327565b60405180910390a3613849848484613d10565b50505050565b600061385a30611460565b90506000601e54601c54601d5461387191906146f7565b61387b91906146f7565b905060008083148061388d5750600082145b1561389a57505050613b34565b60146009546138a99190614825565b8311156138c25760146009546138bf9190614825565b92505b6000600283601d54866138d59190614825565b6138df91906148ae565b6138e991906148ae565b905060006139008286613d1590919063ffffffff16565b9050600047905061391082613d2b565b60006139258247613d1590919063ffffffff16565b9050600061395087613942601c54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600061397b8861396d601e54866135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081838561398c91906155f9565b61399691906155f9565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139f6906156f0565b60006040518083038185875af1925050503d8060008114613a33576040519150601f19603f3d011682016040523d82523d6000602084013e613a38565b606091505b505080985050600087118015613a4e5750600081115b15613a9b57613a5d8782613f77565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a9293929190615705565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ae1906156f0565b60006040518083038185875af1925050503d8060008114613b1e576040519150601f19603f3d011682016040523d82523d6000602084013e613b23565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613b9a91906143d1565b60206040518083038186803b158015613bb257600080fd5b505afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190614f8c565b90506000613c17612710613c09600b54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b90506000811115613c5057613c4f7f000000000000000000000000000000000000000000000000000000000000000061dead836135d7565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cbd57600080fd5b505af1158015613cd1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613d2391906155f9565b905092915050565b6000600267ffffffffffffffff811115613d4857613d4761573c565b5b604051908082528060200260200182016040528015613d765781602001602082028036833780820191505090505b5090503081600081518110613d8e57613d8d614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e2e57600080fd5b505afa158015613e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e669190615780565b81600181518110613e7a57613e79614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613edf307f0000000000000000000000000000000000000000000000000000000000000000846122f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f419594939291906158a6565b600060405180830381600087803b158015613f5b57600080fd5b505af1158015613f6f573d6000803e3d6000fd5b505050505050565b613fa2307f0000000000000000000000000000000000000000000000000000000000000000846122f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161400996959493929190615900565b6060604051808303818588803b15801561402257600080fd5b505af1158015614036573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061405b9190615961565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409c578082015181840152602081019050614081565b838111156140ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006140cd82614062565b6140d7818561406d565b93506140e781856020860161407e565b6140f0816140b1565b840191505092915050565b6000602082019050818103600083015261411581846140c2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061415282614127565b9050919050565b61416281614147565b811461416d57600080fd5b50565b60008135905061417f81614159565b92915050565b6000819050919050565b61419881614185565b81146141a357600080fd5b50565b6000813590506141b58161418f565b92915050565b600080604083850312156141d2576141d161411d565b5b60006141e085828601614170565b92505060206141f1858286016141a6565b9150509250929050565b60008115159050919050565b614210816141fb565b82525050565b600060208201905061422b6000830184614207565b92915050565b600080604083850312156142485761424761411d565b5b6000614256858286016141a6565b9250506020614267858286016141a6565b9150509250929050565b6000602082840312156142875761428661411d565b5b600061429584828501614170565b91505092915050565b6000819050919050565b60006142c36142be6142b984614127565b61429e565b614127565b9050919050565b60006142d5826142a8565b9050919050565b60006142e7826142ca565b9050919050565b6142f7816142dc565b82525050565b600060208201905061431260008301846142ee565b92915050565b61432181614185565b82525050565b600060208201905061433c6000830184614318565b92915050565b6000602082840312156143585761435761411d565b5b6000614366848285016141a6565b91505092915050565b6000806000606084860312156143885761438761411d565b5b600061439686828701614170565b93505060206143a786828701614170565b92505060406143b8868287016141a6565b9150509250925092565b6143cb81614147565b82525050565b60006020820190506143e660008301846143c2565b92915050565b600060ff82169050919050565b614402816143ec565b82525050565b600060208201905061441d60008301846143f9565b92915050565b61442c816141fb565b811461443757600080fd5b50565b60008135905061444981614423565b92915050565b6000806000606084860312156144685761446761411d565b5b6000614476868287016141a6565b9350506020614487868287016141a6565b92505060406144988682870161443a565b9150509250925092565b600080604083850312156144b9576144b861411d565b5b60006144c785828601614170565b92505060206144d88582860161443a565b9150509250929050565b6000806000606084860312156144fb576144fa61411d565b5b6000614509868287016141a6565b935050602061451a868287016141a6565b925050604061452b868287016141a6565b9150509250925092565b60006020828403121561454b5761454a61411d565b5b60006145598482850161443a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261458757614586614562565b5b8235905067ffffffffffffffff8111156145a4576145a3614567565b5b6020830191508360208202830111156145c0576145bf61456c565b5b9250929050565b6000806000604084860312156145e0576145df61411d565b5b600084013567ffffffffffffffff8111156145fe576145fd614122565b5b61460a86828701614571565b9350935050602061461d8682870161443a565b9150509250925092565b6000806040838503121561463e5761463d61411d565b5b600061464c85828601614170565b925050602061465d85828601614170565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b602082108114156146c2576146c1614667565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061470282614185565b915061470d83614185565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614742576147416146c8565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614783601d8361406d565b915061478e8261474d565b602082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147ef601d8361406d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b600061483082614185565b915061483b83614185565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614874576148736146c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b982614185565b91506148c483614185565b9250826148d4576148d361487f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061493b602f8361406d565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149cd60338361406d565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a5f60308361406d565b9150614a6a82614a03565b604082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614af160398361406d565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b8360258361406d565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614c1560248361406d565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c8582614185565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb857614cb76146c8565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d1f60358361406d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614db160328361406d565b9150614dbc82614d55565b604082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e4360268361406d565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614eaf60208361406d565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f41602a8361406d565b9150614f4c82614ee5565b604082019050919050565b60006020820190508181036000830152614f7081614f34565b9050919050565b600081519050614f868161418f565b92915050565b600060208284031215614fa257614fa161411d565b5b6000614fb084828501614f77565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061501560248361406d565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a760228361406d565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511360208361406d565b915061511e826150dd565b602082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061517f601d8361406d565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061521160258361406d565b915061521c826151b5565b604082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152a360238361406d565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061530f600b8361406d565b915061531a826152d9565b602082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537b60168361406d565b915061538682615345565b602082019050919050565b600060208201905081810360008301526153aa8161536e565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061543360498361406d565b915061543e826153b1565b606082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154c560358361406d565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061553160138361406d565b915061553c826154fb565b602082019050919050565b6000602082019050818103600083015261556081615524565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155c360368361406d565b91506155ce82615567565b604082019050919050565b600060208201905081810360008301526155f2816155b6565b9050919050565b600061560482614185565b915061560f83614185565b925082821015615622576156216146c8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568960268361406d565b91506156948261562d565b604082019050919050565b600060208201905081810360008301526156b88161567c565b9050919050565b600081905092915050565b50565b60006156da6000836156bf565b91506156e5826156ca565b600082019050919050565b60006156fb826156cd565b9150819050919050565b600060608201905061571a6000830186614318565b6157276020830185614318565b6157346040830184614318565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061577a81614159565b92915050565b6000602082840312156157965761579561411d565b5b60006157a48482850161576b565b91505092915050565b6000819050919050565b60006157d26157cd6157c8846157ad565b61429e565b614185565b9050919050565b6157e2816157b7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581d81614147565b82525050565b600061582f8383615814565b60208301905092915050565b6000602082019050919050565b6000615853826157e8565b61585d81856157f3565b935061586883615804565b8060005b838110156158995781516158808882615823565b975061588b8361583b565b92505060018101905061586c565b5085935050505092915050565b600060a0820190506158bb6000830188614318565b6158c860208301876157d9565b81810360408301526158da8186615848565b90506158e960608301856143c2565b6158f66080830184614318565b9695505050505050565b600060c08201905061591560008301896143c2565b6159226020830188614318565b61592f60408301876157d9565b61593c60608301866157d9565b61594960808301856143c2565b61595660a0830184614318565b979650505050505050565b60008060006060848603121561597a5761597961411d565b5b600061598886828701614f77565b935050602061599986828701614f77565b92505060406159aa86828701614f77565b915050925092509256fea264697066735822122038232eb25c82bc9e2d3366960fee466449f75790b457e106c484a74f0ae2a51f64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638da5cb5b116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610ebe578063f319ae7714610ee7578063f637434214610f10578063f8b45b0514610f3b578063fe72b27a14610f66576103e4565b8063dd62ed3e14610e00578063e2f4560514610e3d578063e884f26014610e68578063f11a24d314610e93576103e4565b8063c8c8ebe4116100e7578063c8c8ebe414610d44578063c997eb8d14610d6f578063d257b34f14610d98578063d85ba06314610dd5576103e4565b8063c024666814610c9e578063c17b5b8c14610cc7578063c18bc19514610cf0578063c876d0b914610d19576103e4565b80639fccce3211610190578063a9059cbb1161015f578063a9059cbb14610bd0578063aacebbe314610c0d578063b62496f514610c36578063bbc0c74214610c73576103e4565b80639fccce3214610b12578063a0d82dc514610b3d578063a457c2d714610b68578063a4c82a0014610ba5576103e4565b806395d89b41116101cc57806395d89b4114610a685780639a7a23d614610a935780639c3b4fdc14610abc5780639ec22c0e14610ae7576103e4565b80638da5cb5b146109be5780638ea5220f146109e95780639213691314610a14578063924de9b714610a3f576103e4565b80632e82f1a0116102f857806370a082311161028b5780637571336a1161025a5780637571336a146108ff57806375f0a874146109285780637bce5a04146109535780638095d5641461097e5780638a8c523c146109a7576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab578063751039fc146108d4576103e4565b80634a62bb65116102c75780634a62bb65146107995780634fbee193146107c45780636a486a8e146108015780636ddd17131461082c576103e4565b80632e82f1a0146106db578063313ce56714610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b91906140fb565b60405180910390f35b34801561042057600080fd5b5061043b600480360381019061043691906141bb565b611035565b6040516104489190614216565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614231565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614271565b611144565b6040516104ae9190614216565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d991906142fd565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614271565b611187565b6040516105169190614216565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b6040516105419190614327565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614271565b6111b1565b005b34801561057f57600080fd5b50610588611279565b6040516105959190614327565b60405180910390f35b3480156105aa57600080fd5b506105b361127f565b6040516105c09190614327565b60405180910390f35b3480156105d557600080fd5b506105de611285565b6040516105eb9190614327565b60405180910390f35b34801561060057600080fd5b5061060961128b565b6040516106169190614327565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190614342565b611291565b005b34801561065457600080fd5b5061066f600480360381019061066a919061436f565b61132c565b60405161067c9190614216565b60405180910390f35b34801561069157600080fd5b5061069a61135b565b6040516106a791906143d1565b60405180910390f35b3480156106bc57600080fd5b506106c5611361565b6040516106d29190614327565b60405180910390f35b3480156106e757600080fd5b506106f0611367565b6040516106fd9190614216565b60405180910390f35b34801561071257600080fd5b5061071b61137a565b6040516107289190614408565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906141bb565b611383565b6040516107659190614216565b60405180910390f35b34801561077a57600080fd5b506107836113ba565b60405161079091906143d1565b60405180910390f35b3480156107a557600080fd5b506107ae6113de565b6040516107bb9190614216565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190614271565b6113f1565b6040516107f89190614216565b60405180910390f35b34801561080d57600080fd5b50610816611447565b6040516108239190614327565b60405180910390f35b34801561083857600080fd5b5061084161144d565b60405161084e9190614216565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614271565b611460565b60405161088b9190614327565b60405180910390f35b3480156108a057600080fd5b506108a96114a8565b005b3480156108b757600080fd5b506108d260048036038101906108cd919061444f565b6114bc565b005b3480156108e057600080fd5b506108e9611588565b6040516108f69190614216565b60405180910390f35b34801561090b57600080fd5b50610926600480360381019061092191906144a2565b6115b4565b005b34801561093457600080fd5b5061093d611617565b60405161094a91906143d1565b60405180910390f35b34801561095f57600080fd5b5061096861163d565b6040516109759190614327565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a091906144e2565b611643565b005b3480156109b357600080fd5b506109bc6116ce565b005b3480156109ca57600080fd5b506109d3611715565b6040516109e091906143d1565b60405180910390f35b3480156109f557600080fd5b506109fe61173f565b604051610a0b91906143d1565b60405180910390f35b348015610a2057600080fd5b50610a29611765565b604051610a369190614327565b60405180910390f35b348015610a4b57600080fd5b50610a666004803603810190610a619190614535565b61176b565b005b348015610a7457600080fd5b50610a7d611790565b604051610a8a91906140fb565b60405180910390f35b348015610a9f57600080fd5b50610aba6004803603810190610ab591906144a2565b611822565b005b348015610ac857600080fd5b50610ad16118c7565b604051610ade9190614327565b60405180910390f35b348015610af357600080fd5b50610afc6118cd565b604051610b099190614327565b60405180910390f35b348015610b1e57600080fd5b50610b276118d3565b604051610b349190614327565b60405180910390f35b348015610b4957600080fd5b50610b526118d9565b604051610b5f9190614327565b60405180910390f35b348015610b7457600080fd5b50610b8f6004803603810190610b8a91906141bb565b6118df565b604051610b9c9190614216565b60405180910390f35b348015610bb157600080fd5b50610bba611956565b604051610bc79190614327565b60405180910390f35b348015610bdc57600080fd5b50610bf76004803603810190610bf291906141bb565b61195c565b604051610c049190614216565b60405180910390f35b348015610c1957600080fd5b50610c346004803603810190610c2f9190614271565b61197f565b005b348015610c4257600080fd5b50610c5d6004803603810190610c589190614271565b611a47565b604051610c6a9190614216565b60405180910390f35b348015610c7f57600080fd5b50610c88611a67565b604051610c959190614216565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc091906144a2565b611a7a565b005b348015610cd357600080fd5b50610cee6004803603810190610ce991906144e2565b611b2b565b005b348015610cfc57600080fd5b50610d176004803603810190610d129190614342565b611bb6565b005b348015610d2557600080fd5b50610d2e611c51565b604051610d3b9190614216565b60405180910390f35b348015610d5057600080fd5b50610d59611c64565b604051610d669190614327565b60405180910390f35b348015610d7b57600080fd5b50610d966004803603810190610d9191906145c7565b611c6a565b005b348015610da457600080fd5b50610dbf6004803603810190610dba9190614342565b611d17565b604051610dcc9190614216565b60405180910390f35b348015610de157600080fd5b50610dea611df8565b604051610df79190614327565b60405180910390f35b348015610e0c57600080fd5b50610e276004803603810190610e229190614627565b611dfe565b604051610e349190614327565b60405180910390f35b348015610e4957600080fd5b50610e52611e85565b604051610e5f9190614327565b60405180910390f35b348015610e7457600080fd5b50610e7d611e8b565b604051610e8a9190614216565b60405180910390f35b348015610e9f57600080fd5b50610ea8611eb7565b604051610eb59190614327565b60405180910390f35b348015610eca57600080fd5b50610ee56004803603810190610ee09190614271565b611ebd565b005b348015610ef357600080fd5b50610f0e6004803603810190610f099190614231565b611f41565b005b348015610f1c57600080fd5b50610f2561206d565b604051610f329190614327565b60405180910390f35b348015610f4757600080fd5b50610f50612073565b604051610f5d9190614327565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f889190614342565b612079565b604051610f9a9190614216565b60405180910390f35b606060038054610fb290614696565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614696565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b6000806110406122ec565b905061104d8185856122f4565b600191505092915050565b6110606124bf565b80601b8190555081601781905550601b54601a5460195461108191906146f7565b61108b91906146f7565b6018819055506017546016546015546110a491906146f7565b6110ae91906146f7565b601481905550601960145411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614799565b60405180910390fd5b60636018541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614805565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b96124bf565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6112996124bf565b670de0b6b3a76400006103e860016112af6111a7565b6112b99190614825565b6112c391906148ae565b6112cd91906148ae565b81101561130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614951565b60405180910390fd5b670de0b6b3a7640000816113239190614825565b60088190555050565b6000806113376122ec565b905061134485828561253d565b61134f8585856125c9565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061138e6122ec565b90506113af8185856113a08589611dfe565b6113aa91906146f7565b6122f4565b600191505092915050565b7f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114b06124bf565b6114ba6000613444565b565b6114c46124bf565b610258831015611509576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611500906149e3565b60405180910390fd5b6103e8821115801561151c575060008210155b61155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290614a75565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006115926124bf565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6115bc6124bf565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61164b6124bf565b82601581905550816016819055508060178190555060175460165460155461167391906146f7565b61167d91906146f7565b601481905550601960145411156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614799565b60405180910390fd5b505050565b6116d66124bf565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6117736124bf565b80601160026101000a81548160ff02191690831515021790555050565b60606004805461179f90614696565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb90614696565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b61182a6124bf565b7f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b090614b07565b60405180910390fd5b6118c3828261350a565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806118ea6122ec565b905060006118f88286611dfe565b90508381101561193d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193490614b99565b60405180910390fd5b61194a82868684036122f4565b60019250505092915050565b600e5481565b6000806119676122ec565b90506119748185856125c9565b600191505092915050565b6119876124bf565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611a826124bf565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b1f9190614216565b60405180910390a25050565b611b336124bf565b8260198190555081601a8190555080601b81905550601b54601a54601954611b5b91906146f7565b611b6591906146f7565b60188190555060636018541115611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890614805565b60405180910390fd5b505050565b611bbe6124bf565b670de0b6b3a76400006103e86005611bd46111a7565b611bde9190614825565b611be891906148ae565b611bf291906148ae565b811015611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614c2b565b60405180910390fd5b670de0b6b3a764000081611c489190614825565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b611c726124bf565b60005b83839050811015611d11578160216000868685818110611c9857611c97614c4b565b5b9050602002016020810190611cad9190614271565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d0990614c7a565b915050611c75565b50505050565b6000611d216124bf565b620186a06001611d2f6111a7565b611d399190614825565b611d4391906148ae565b821015611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614d35565b60405180910390fd5b6103e8600a611d926111a7565b611d9c9190614825565b611da691906148ae565b821115611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf90614dc7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611e956124bf565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611ec56124bf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614e59565b60405180910390fd5b611f3e81613444565b50565b611f496124bf565b670de0b6b3a76400006103e86001611f5f6111a7565b611f699190614825565b611f7391906148ae565b611f7d91906148ae565b821015611fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb690614951565b60405180910390fd5b670de0b6b3a764000082611fd39190614825565b600881905550670de0b6b3a76400006103e86005611fef6111a7565b611ff99190614825565b61200391906148ae565b61200d91906148ae565b81101561204f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204690614c2b565b60405180910390fd5b670de0b6b3a7640000816120639190614825565b600a819055505050565b601a5481565b600a5481565b60006120836124bf565b600f5460105461209391906146f7565b42116120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90614ec5565b60405180910390fd5b6103e8821115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614f57565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d6040518263ffffffff1660e01b815260040161217b91906143d1565b60206040518083038186803b15801561219357600080fd5b505afa1580156121a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121cb9190614f8c565b905060006121f66127106121e886856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081111561222f5761222e7f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d61dead836135d7565b5b60007f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561229c57600080fd5b505af11580156122b0573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612364576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235b9061502b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb906150bd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516124b29190614327565b60405180910390a3505050565b6124c76122ec565b73ffffffffffffffffffffffffffffffffffffffff166124e5611715565b73ffffffffffffffffffffffffffffffffffffffff161461253b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253290615129565b60405180910390fd5b565b60006125498484611dfe565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146125c357818110156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90615195565b60405180910390fd5b6125c284848484036122f4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263090615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a0906152b9565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561274d5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615325565b60405180910390fd5b60008114156127a6576127a1838360006135d7565b61343f565b601160009054906101000a900460ff1615612e69576127c3611715565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156128315750612801611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561286a5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128a4575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128bd5750600560149054906101000a900460ff16155b15612e6857601160019054906101000a900460ff166129b757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129775750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6129b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ad90615391565b60405180910390fd5b5b601360009054906101000a900460ff1615612b7f576129d4611715565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a5b57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ab357507f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b7e5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3090615449565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c225750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cc957600854811115612c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c63906154db565b60405180910390fd5b600a54612c7883611460565b82612c8391906146f7565b1115612cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbb90615547565b60405180910390fd5b612e67565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d6c5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612dbb57600854811115612db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dad906155d9565b60405180910390fd5b612e66565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e6557600a54612e1883611460565b82612e2391906146f7565b1115612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90615547565b60405180910390fd5b5b5b5b5b5b6000612e7430611460565b905060006009548210159050808015612e995750601160029054906101000a900460ff165b8015612eb25750600560149054906101000a900460ff16155b8015612f085750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f5e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612fb45750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ff8576001600560146101000a81548160ff021916908315150217905550612fdc61384f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561305e5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156130765750600c60009054906101000a900460ff165b80156130915750600d54600e5461308d91906146f7565b4210155b80156130e75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130f6576130f4613b36565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131ac5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156131b657600090505b6000811561342f57602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561321957506000601854115b156132e6576132466064613238601854886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601854601a54826132599190614825565b61326391906148ae565b601d600082825461327491906146f7565b92505081905550601854601b548261328c9190614825565b61329691906148ae565b601e60008282546132a791906146f7565b92505081905550601854601954826132bf9190614825565b6132c991906148ae565b601c60008282546132da91906146f7565b9250508190555061340b565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561334157506000601454115b1561340a5761336e6064613360601454886135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050601454601654826133819190614825565b61338b91906148ae565b601d600082825461339c91906146f7565b92505081905550601454601754826133b49190614825565b6133be91906148ae565b601e60008282546133cf91906146f7565b92505081905550601454601554826133e79190614825565b6133f191906148ae565b601c600082825461340291906146f7565b925050819055505b5b60008111156134205761341f8730836135d7565b5b808561342c91906155f9565b94505b61343a8787876135d7565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836135b99190614825565b905092915050565b600081836135cf91906148ae565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363e90615227565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ae906152b9565b60405180910390fd5b6136c2838383613d0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f9061569f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516138369190614327565b60405180910390a3613849848484613d10565b50505050565b600061385a30611460565b90506000601e54601c54601d5461387191906146f7565b61387b91906146f7565b905060008083148061388d5750600082145b1561389a57505050613b34565b60146009546138a99190614825565b8311156138c25760146009546138bf9190614825565b92505b6000600283601d54866138d59190614825565b6138df91906148ae565b6138e991906148ae565b905060006139008286613d1590919063ffffffff16565b9050600047905061391082613d2b565b60006139258247613d1590919063ffffffff16565b9050600061395087613942601c54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600061397b8861396d601e54866135ab90919063ffffffff16565b6135c190919063ffffffff16565b9050600081838561398c91906155f9565b61399691906155f9565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139f6906156f0565b60006040518083038185875af1925050503d8060008114613a33576040519150601f19603f3d011682016040523d82523d6000602084013e613a38565b606091505b505080985050600087118015613a4e5750600081115b15613a9b57613a5d8782613f77565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613a9293929190615705565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ae1906156f0565b60006040518083038185875af1925050503d8060008114613b1e576040519150601f19603f3d011682016040523d82523d6000602084013e613b23565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d6040518263ffffffff1660e01b8152600401613b9a91906143d1565b60206040518083038186803b158015613bb257600080fd5b505afa158015613bc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613bea9190614f8c565b90506000613c17612710613c09600b54856135ab90919063ffffffff16565b6135c190919063ffffffff16565b90506000811115613c5057613c4f7f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d61dead836135d7565b5b60007f000000000000000000000000a1178a171ffd6388917d877eec42c311cf22317d90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613cbd57600080fd5b505af1158015613cd1573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613d2391906155f9565b905092915050565b6000600267ffffffffffffffff811115613d4857613d4761573c565b5b604051908082528060200260200182016040528015613d765781602001602082028036833780820191505090505b5090503081600081518110613d8e57613d8d614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613e2e57600080fd5b505afa158015613e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e669190615780565b81600181518110613e7a57613e79614c4b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613edf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613f419594939291906158a6565b600060405180830381600087803b158015613f5b57600080fd5b505af1158015613f6f573d6000803e3d6000fd5b505050505050565b613fa2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846122f4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161400996959493929190615900565b6060604051808303818588803b15801561402257600080fd5b505af1158015614036573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061405b9190615961565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561409c578082015181840152602081019050614081565b838111156140ab576000848401525b50505050565b6000601f19601f8301169050919050565b60006140cd82614062565b6140d7818561406d565b93506140e781856020860161407e565b6140f0816140b1565b840191505092915050565b6000602082019050818103600083015261411581846140c2565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061415282614127565b9050919050565b61416281614147565b811461416d57600080fd5b50565b60008135905061417f81614159565b92915050565b6000819050919050565b61419881614185565b81146141a357600080fd5b50565b6000813590506141b58161418f565b92915050565b600080604083850312156141d2576141d161411d565b5b60006141e085828601614170565b92505060206141f1858286016141a6565b9150509250929050565b60008115159050919050565b614210816141fb565b82525050565b600060208201905061422b6000830184614207565b92915050565b600080604083850312156142485761424761411d565b5b6000614256858286016141a6565b9250506020614267858286016141a6565b9150509250929050565b6000602082840312156142875761428661411d565b5b600061429584828501614170565b91505092915050565b6000819050919050565b60006142c36142be6142b984614127565b61429e565b614127565b9050919050565b60006142d5826142a8565b9050919050565b60006142e7826142ca565b9050919050565b6142f7816142dc565b82525050565b600060208201905061431260008301846142ee565b92915050565b61432181614185565b82525050565b600060208201905061433c6000830184614318565b92915050565b6000602082840312156143585761435761411d565b5b6000614366848285016141a6565b91505092915050565b6000806000606084860312156143885761438761411d565b5b600061439686828701614170565b93505060206143a786828701614170565b92505060406143b8868287016141a6565b9150509250925092565b6143cb81614147565b82525050565b60006020820190506143e660008301846143c2565b92915050565b600060ff82169050919050565b614402816143ec565b82525050565b600060208201905061441d60008301846143f9565b92915050565b61442c816141fb565b811461443757600080fd5b50565b60008135905061444981614423565b92915050565b6000806000606084860312156144685761446761411d565b5b6000614476868287016141a6565b9350506020614487868287016141a6565b92505060406144988682870161443a565b9150509250925092565b600080604083850312156144b9576144b861411d565b5b60006144c785828601614170565b92505060206144d88582860161443a565b9150509250929050565b6000806000606084860312156144fb576144fa61411d565b5b6000614509868287016141a6565b935050602061451a868287016141a6565b925050604061452b868287016141a6565b9150509250925092565b60006020828403121561454b5761454a61411d565b5b60006145598482850161443a565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261458757614586614562565b5b8235905067ffffffffffffffff8111156145a4576145a3614567565b5b6020830191508360208202830111156145c0576145bf61456c565b5b9250929050565b6000806000604084860312156145e0576145df61411d565b5b600084013567ffffffffffffffff8111156145fe576145fd614122565b5b61460a86828701614571565b9350935050602061461d8682870161443a565b9150509250925092565b6000806040838503121561463e5761463d61411d565b5b600061464c85828601614170565b925050602061465d85828601614170565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806146ae57607f821691505b602082108114156146c2576146c1614667565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061470282614185565b915061470d83614185565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614742576147416146c8565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614783601d8361406d565b915061478e8261474d565b602082019050919050565b600060208201905081810360008301526147b281614776565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b60006147ef601d8361406d565b91506147fa826147b9565b602082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b600061483082614185565b915061483b83614185565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614874576148736146c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006148b982614185565b91506148c483614185565b9250826148d4576148d361487f565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061493b602f8361406d565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006149cd60338361406d565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614a5f60308361406d565b9150614a6a82614a03565b604082019050919050565b60006020820190508181036000830152614a8e81614a52565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614af160398361406d565b9150614afc82614a95565b604082019050919050565b60006020820190508181036000830152614b2081614ae4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b8360258361406d565b9150614b8e82614b27565b604082019050919050565b60006020820190508181036000830152614bb281614b76565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614c1560248361406d565b9150614c2082614bb9565b604082019050919050565b60006020820190508181036000830152614c4481614c08565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614c8582614185565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cb857614cb76146c8565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614d1f60358361406d565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614db160328361406d565b9150614dbc82614d55565b604082019050919050565b60006020820190508181036000830152614de081614da4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e4360268361406d565b9150614e4e82614de7565b604082019050919050565b60006020820190508181036000830152614e7281614e36565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614eaf60208361406d565b9150614eba82614e79565b602082019050919050565b60006020820190508181036000830152614ede81614ea2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614f41602a8361406d565b9150614f4c82614ee5565b604082019050919050565b60006020820190508181036000830152614f7081614f34565b9050919050565b600081519050614f868161418f565b92915050565b600060208284031215614fa257614fa161411d565b5b6000614fb084828501614f77565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061501560248361406d565b915061502082614fb9565b604082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006150a760228361406d565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061511360208361406d565b915061511e826150dd565b602082019050919050565b6000602082019050818103600083015261514281615106565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061517f601d8361406d565b915061518a82615149565b602082019050919050565b600060208201905081810360008301526151ae81615172565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061521160258361406d565b915061521c826151b5565b604082019050919050565b6000602082019050818103600083015261524081615204565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152a360238361406d565b91506152ae82615247565b604082019050919050565b600060208201905081810360008301526152d281615296565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061530f600b8361406d565b915061531a826152d9565b602082019050919050565b6000602082019050818103600083015261533e81615302565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537b60168361406d565b915061538682615345565b602082019050919050565b600060208201905081810360008301526153aa8161536e565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061543360498361406d565b915061543e826153b1565b606082019050919050565b6000602082019050818103600083015261546281615426565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154c560358361406d565b91506154d082615469565b604082019050919050565b600060208201905081810360008301526154f4816154b8565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061553160138361406d565b915061553c826154fb565b602082019050919050565b6000602082019050818103600083015261556081615524565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155c360368361406d565b91506155ce82615567565b604082019050919050565b600060208201905081810360008301526155f2816155b6565b9050919050565b600061560482614185565b915061560f83614185565b925082821015615622576156216146c8565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568960268361406d565b91506156948261562d565b604082019050919050565b600060208201905081810360008301526156b88161567c565b9050919050565b600081905092915050565b50565b60006156da6000836156bf565b91506156e5826156ca565b600082019050919050565b60006156fb826156cd565b9150819050919050565b600060608201905061571a6000830186614318565b6157276020830185614318565b6157346040830184614318565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061577a81614159565b92915050565b6000602082840312156157965761579561411d565b5b60006157a48482850161576b565b91505092915050565b6000819050919050565b60006157d26157cd6157c8846157ad565b61429e565b614185565b9050919050565b6157e2816157b7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61581d81614147565b82525050565b600061582f8383615814565b60208301905092915050565b6000602082019050919050565b6000615853826157e8565b61585d81856157f3565b935061586883615804565b8060005b838110156158995781516158808882615823565b975061588b8361583b565b92505060018101905061586c565b5085935050505092915050565b600060a0820190506158bb6000830188614318565b6158c860208301876157d9565b81810360408301526158da8186615848565b90506158e960608301856143c2565b6158f66080830184614318565b9695505050505050565b600060c08201905061591560008301896143c2565b6159226020830188614318565b61592f60408301876157d9565b61593c60608301866157d9565b61594960808301856143c2565b61595660a0830184614318565b979650505050505050565b60008060006060848603121561597a5761597961411d565b5b600061598886828701614f77565b935050602061599986828701614f77565b92505060406159aa86828701614f77565b915050925092509256fea264697066735822122038232eb25c82bc9e2d3366960fee466449f75790b457e106c484a74f0ae2a51f64736f6c63430008090033

Deployed Bytecode Sourcemap

37553:19445:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16408:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18759:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45802:419;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39247:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37629:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39338:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17528:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47087:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38215:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38017:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39026:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38986;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44209:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19540:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37732:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38112:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38072:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17370:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20244:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37687:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38316:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47258:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38837:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38422:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17699:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9833:103;;;;;;;;;;;;;:::i;:::-;;54706:447;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42992:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44678:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37824:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38726;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45035:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42781:155;;;;;;;;;;;;;:::i;:::-;;9185:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37861:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38872:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44922:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16627:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46419:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38800:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38272:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39066:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38948:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20985:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38173:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18032:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46867:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39538:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38356:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46229:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45416:378;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44451:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38644:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37898:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42507:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43386:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38692:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18288:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37940:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43177:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38763:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43783:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38910:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37980:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55977:1018;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16408:100;16462:13;16495:5;16488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16408:100;:::o;18759:201::-;18842:4;18859:13;18875:12;:10;:12::i;:::-;18859:28;;18898:32;18907:5;18914:7;18923:6;18898:8;:32::i;:::-;18948:4;18941:11;;;18759:201;;;;:::o;45802:419::-;9071:13;:11;:13::i;:::-;45894:4:::1;45881:10;:17;;;;45921:3;45909:9;:15;;;;45989:10;;45970:16;;45951;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;45935:13;:64;;;;46061:9;;46043:15;;46025;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;46010:12;:60;;;;46105:2;46089:12;;:18;;46081:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;46177:2;46160:13;;:19;;46152:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45802:419:::0;;:::o;39247:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;37629:51::-;;;:::o;39338:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;17528:108::-;17589:7;17616:12;;17609:19;;17528:108;:::o;47087:157::-;9071:13;:11;:13::i;:::-;47194:9:::1;;;;;;;;;;;47166:38;;47183:9;47166:38;;;;;;;;;;;;47227:9;47215;;:21;;;;;;;;;;;;;;;;;;47087:157:::0;:::o;38215:50::-;;;;:::o;38017:35::-;;;;:::o;39026:33::-;;;;:::o;38986:::-;;;;:::o;44209:234::-;9071:13;:11;:13::i;:::-;44328:4:::1;44322;44318:1;44302:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;44301:31;;;;:::i;:::-;44291:6;:41;;44283:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;44428:6;44418;:17;;;;:::i;:::-;44395:20;:40;;;;44209:234:::0;:::o;19540:295::-;19671:4;19688:15;19706:12;:10;:12::i;:::-;19688:30;;19729:38;19745:4;19751:7;19760:6;19729:15;:38::i;:::-;19778:27;19788:4;19794:2;19798:6;19778:9;:27::i;:::-;19823:4;19816:11;;;19540:295;;;;;:::o;37732:53::-;37778:6;37732:53;:::o;38112:54::-;;;;:::o;38072:33::-;;;;;;;;;;;;;:::o;17370:93::-;17428:5;17453:2;17446:9;;17370:93;:::o;20244:238::-;20332:4;20349:13;20365:12;:10;:12::i;:::-;20349:28;;20388:64;20397:5;20404:7;20441:10;20413:25;20423:5;20430:7;20413:9;:25::i;:::-;:38;;;;:::i;:::-;20388:8;:64::i;:::-;20470:4;20463:11;;;20244:238;;;;:::o;37687:38::-;;;:::o;38316:33::-;;;;;;;;;;;;;:::o;47258:125::-;47323:4;47347:19;:28;47367:7;47347:28;;;;;;;;;;;;;;;;;;;;;;;;;47340:35;;47258:125;;;:::o;38837:28::-;;;;:::o;38422:30::-;;;;;;;;;;;;;:::o;17699:127::-;17773:7;17800:9;:18;17810:7;17800:18;;;;;;;;;;;;;;;;17793:25;;17699:127;;;:::o;9833:103::-;9071:13;:11;:13::i;:::-;9898:30:::1;9925:1;9898:18;:30::i;:::-;9833:103::o:0;54706:447::-;9071:13;:11;:13::i;:::-;54860:3:::1;54837:19;:26;;54829:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;54950:4;54938:8;:16;;:33;;;;;54970:1;54958:8;:13;;54938:33;54930:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55053:19;55035:15;:37;;;;55102:8;55083:16;:27;;;;55137:8;55121:13;;:24;;;;;;;;;;;;;;;;;;54706:447:::0;;;:::o;42992:120::-;43044:4;9071:13;:11;:13::i;:::-;43077:5:::1;43060:14;;:22;;;;;;;;;;;;;;;;;;43100:4;43093:11;;42992:120:::0;:::o;44678:144::-;9071:13;:11;:13::i;:::-;44810:4:::1;44768:31;:39;44800:6;44768:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;44678:144:::0;;:::o;37824:30::-;;;;;;;;;;;;;:::o;38726:::-;;;;:::o;45035:369::-;9071:13;:11;:13::i;:::-;45169::::1;45151:15;:31;;;;45211:13;45193:15;:31;;;;45247:7;45235:9;:19;;;;45316:9;;45298:15;;45280;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;45265:12;:60;;;;45360:2;45344:12;;:18;;45336:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;45035:369:::0;;;:::o;42781:155::-;9071:13;:11;:13::i;:::-;42852:4:::1;42836:13;;:20;;;;;;;;;;;;;;;;;;42881:4;42867:11;;:18;;;;;;;;;;;;;;;;;;42913:15;42896:14;:32;;;;42781:155::o:0;9185:87::-;9231:7;9258:6;;;;;;;;;;;9251:13;;9185:87;:::o;37861:24::-;;;;;;;;;;;;;:::o;38872:31::-;;;;:::o;44922:101::-;9071:13;:11;:13::i;:::-;45008:7:::1;44994:11;;:21;;;;;;;;;;;;;;;;;;44922:101:::0;:::o;16627:104::-;16683:13;16716:7;16709:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16627:104;:::o;46419:244::-;9071:13;:11;:13::i;:::-;46526::::1;46518:21;;:4;:21;;;;46510:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;46614:41;46643:4;46649:5;46614:28;:41::i;:::-;46419:244:::0;;:::o;38800:24::-;;;;:::o;38272:35::-;;;;:::o;39066:27::-;;;;:::o;38948:25::-;;;;:::o;20985:436::-;21078:4;21095:13;21111:12;:10;:12::i;:::-;21095:28;;21134:24;21161:25;21171:5;21178:7;21161:9;:25::i;:::-;21134:52;;21225:15;21205:16;:35;;21197:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21318:60;21327:5;21334:7;21362:15;21343:16;:34;21318:8;:60::i;:::-;21409:4;21402:11;;;;20985:436;;;;:::o;38173:29::-;;;;:::o;18032:193::-;18111:4;18128:13;18144:12;:10;:12::i;:::-;18128:28;;18167;18177:5;18184:2;18188:6;18167:9;:28::i;:::-;18213:4;18206:11;;;18032:193;;;;:::o;46867:208::-;9071:13;:11;:13::i;:::-;47004:15:::1;;;;;;;;;;;46961:59;;46984:18;46961:59;;;;;;;;;;;;47049:18;47031:15;;:36;;;;;;;;;;;;;;;;;;46867:208:::0;:::o;39538:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;38356:32::-;;;;;;;;;;;;;:::o;46229:182::-;9071:13;:11;:13::i;:::-;46345:8:::1;46314:19;:28;46334:7;46314:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;46385:7;46369:34;;;46394:8;46369:34;;;;;;:::i;:::-;;;;;;;;46229:182:::0;;:::o;45416:378::-;9071:13;:11;:13::i;:::-;45552::::1;45533:16;:32;;;;45595:13;45576:16;:32;;;;45632:7;45619:10;:20;;;;45704:10;;45685:16;;45666;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;45650:13;:64;;;;45750:2;45733:13;;:19;;45725:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45416:378:::0;;;:::o;44451:215::-;9071:13;:11;:13::i;:::-;44573:4:::1;44567;44563:1;44547:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;44546:31;;;;:::i;:::-;44536:6;:41;;44528:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;44651:6;44641;:17;;;;:::i;:::-;44629:9;:29;;;;44451:215:::0;:::o;38644:39::-;;;;;;;;;;;;;:::o;37898:35::-;;;;:::o;42507:220::-;9071:13;:11;:13::i;:::-;42614:6:::1;42609:111;42626:10;;:17;;42624:1;:19;42609:111;;;42693:15;42665:10;:25;42676:10;;42687:1;42676:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42665:25;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;42645:3;;;;;:::i;:::-;;;;42609:111;;;;42507:220:::0;;;:::o;43386:385::-;43467:4;9071:13;:11;:13::i;:::-;43524:6:::1;43520:1;43504:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;43491:9;:39;;43483:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;43641:4;43636:2;43620:13;:11;:13::i;:::-;:18;;;;:::i;:::-;:25;;;;:::i;:::-;43607:9;:38;;43599:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;43732:9;43711:18;:30;;;;43759:4;43752:11;;43386:385:::0;;;:::o;38692:27::-;;;;:::o;18288:151::-;18377:7;18404:11;:18;18416:5;18404:18;;;;;;;;;;;;;;;:27;18423:7;18404:27;;;;;;;;;;;;;;;;18397:34;;18288:151;;;;:::o;37940:33::-;;;;:::o;43177:134::-;43237:4;9071:13;:11;:13::i;:::-;43276:5:::1;43253:20;;:28;;;;;;;;;;;;;;;;;;43299:4;43292:11;;43177:134:::0;:::o;38763:30::-;;;;:::o;10091:201::-;9071:13;:11;:13::i;:::-;10200:1:::1;10180:22;;:8;:22;;;;10172:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10256:28;10275:8;10256:18;:28::i;:::-;10091:201:::0;:::o;43783:414::-;9071:13;:11;:13::i;:::-;43925:4:::1;43919;43915:1;43899:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;43898:31;;;;:::i;:::-;43886:8;:43;;43878:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44027:6;44015:8;:19;;;;:::i;:::-;43992:20;:42;;;;44098:4;44092;44088:1;44072:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;44071:31;;;;:::i;:::-;44055:12;:47;;44047:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;44182:6;44166:12;:23;;;;:::i;:::-;44154:9;:35;;;;43783:414:::0;;:::o;38910:31::-;;;;:::o;37980:24::-;;;;:::o;55977:1018::-;56061:4;9071:13;:11;:13::i;:::-;56126:19:::1;;56103:20;;:42;;;;:::i;:::-;56085:15;:60;56077:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;56213:4;56202:7;:15;;56194:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56298:15;56275:20;:38;;;;56376:28;56407:4;:14;;;56422:13;56407:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56376:60;;56494:20;56517:44;56555:5;56517:33;56542:7;56517:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;56494:67;;56689:1;56674:12;:16;56670:109;;;56706:61;56722:13;56745:6;56754:12;56706:15;:61::i;:::-;56670:109;56862:19;56899:13;56862:51;;56924:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56951:14;;;;;;;;;;56983:4;56976:11;;;;;55977:1018:::0;;;:::o;7736:98::-;7789:7;7816:10;7809:17;;7736:98;:::o;25012:380::-;25165:1;25148:19;;:5;:19;;;;25140:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25246:1;25227:21;;:7;:21;;;;25219:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25330:6;25300:11;:18;25312:5;25300:18;;;;;;;;;;;;;;;:27;25319:7;25300:27;;;;;;;;;;;;;;;:36;;;;25368:7;25352:32;;25361:5;25352:32;;;25377:6;25352:32;;;;;;:::i;:::-;;;;;;;;25012:380;;;:::o;9350:132::-;9425:12;:10;:12::i;:::-;9414:23;;:7;:5;:7::i;:::-;:23;;;9406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9350:132::o;25683:453::-;25818:24;25845:25;25855:5;25862:7;25845:9;:25::i;:::-;25818:52;;25905:17;25885:16;:37;25881:248;;25967:6;25947:16;:26;;25939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26051:51;26060:5;26067:7;26095:6;26076:16;:25;26051:8;:51::i;:::-;25881:248;25807:329;25683:453;;;:::o;47445:4437::-;47593:1;47577:18;;:4;:18;;;;47569:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47670:1;47656:16;;:2;:16;;;;47648:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47732:10;:14;47743:2;47732:14;;;;;;;;;;;;;;;;;;;;;;;;;47731:15;:36;;;;;47751:10;:16;47762:4;47751:16;;;;;;;;;;;;;;;;;;;;;;;;;47750:17;47731:36;47723:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;47818:1;47808:6;:11;47805:92;;;47836:28;47852:4;47858:2;47862:1;47836:15;:28::i;:::-;47879:7;;47805:92;47920:14;;;;;;;;;;;47917:1841;;;47980:7;:5;:7::i;:::-;47972:15;;:4;:15;;;;:49;;;;;48014:7;:5;:7::i;:::-;48008:13;;:2;:13;;;;47972:49;:86;;;;;48056:1;48042:16;;:2;:16;;;;47972:86;:128;;;;;48093:6;48079:21;;:2;:21;;;;47972:128;:158;;;;;48122:8;;;;;;;;;;;48121:9;47972:158;47950:1797;;;48168:13;;;;;;;;;;;48164:148;;48213:19;:25;48233:4;48213:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;48242:19;:23;48262:2;48242:23;;;;;;;;;;;;;;;;;;;;;;;;;48213:52;48205:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;48164:148;48470:20;;;;;;;;;;;48466:423;;;48524:7;:5;:7::i;:::-;48518:13;;:2;:13;;;;:47;;;;;48549:15;48535:30;;:2;:30;;;;48518:47;:79;;;;;48583:13;48569:28;;:2;:28;;;;48518:79;48514:356;;;48675:12;48633:28;:39;48662:9;48633:39;;;;;;;;;;;;;;;;:54;48625:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;48834:12;48792:28;:39;48821:9;48792:39;;;;;;;;;;;;;;;:54;;;;48514:356;48466:423;48958:25;:31;48984:4;48958:31;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;48994:31;:35;49026:2;48994:35;;;;;;;;;;;;;;;;;;;;;;;;;48993:36;48958:71;48954:778;;;49076:20;;49066:6;:30;;49058:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;49215:9;;49198:13;49208:2;49198:9;:13::i;:::-;49189:6;:22;;;;:::i;:::-;:35;;49181:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48954:778;;;49342:25;:29;49368:2;49342:29;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;49376:31;:37;49408:4;49376:37;;;;;;;;;;;;;;;;;;;;;;;;;49375:38;49342:71;49338:394;;;49460:20;;49450:6;:30;;49442:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;49338:394;;;49586:31;:35;49618:2;49586:35;;;;;;;;;;;;;;;;;;;;;;;;;49582:150;;49679:9;;49662:13;49672:2;49662:9;:13::i;:::-;49653:6;:22;;;;:::i;:::-;:35;;49645:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49582:150;49338:394;48954:778;47950:1797;47917:1841;49788:28;49819:24;49837:4;49819:9;:24::i;:::-;49788:55;;49864:12;49903:18;;49879:20;:42;;49864:57;;49952:7;:35;;;;;49976:11;;;;;;;;;;;49952:35;:61;;;;;50005:8;;;;;;;;;;;50004:9;49952:61;:110;;;;;50031:25;:31;50057:4;50031:31;;;;;;;;;;;;;;;;;;;;;;;;;50030:32;49952:110;:153;;;;;50080:19;:25;50100:4;50080:25;;;;;;;;;;;;;;;;;;;;;;;;;50079:26;49952:153;:194;;;;;50123:19;:23;50143:2;50123:23;;;;;;;;;;;;;;;;;;;;;;;;;50122:24;49952:194;49934:338;;;50184:4;50173:8;;:15;;;;;;;;;;;;;;;;;;50217:10;:8;:10::i;:::-;50255:5;50244:8;;:16;;;;;;;;;;;;;;;;;;49934:338;50296:8;;;;;;;;;;;50295:9;:42;;;;;50308:25;:29;50334:2;50308:29;;;;;;;;;;;;;;;;;;;;;;;;;50295:42;:59;;;;;50341:13;;;;;;;;;;;50295:59;:114;;;;;50394:15;;50377:14;;:32;;;;:::i;:::-;50358:15;:51;;50295:114;:144;;;;;50414:19;:25;50434:4;50414:25;;;;;;;;;;;;;;;;;;;;;;;;;50413:26;50295:144;50292:204;;;50455:29;:27;:29::i;:::-;;50292:204;50508:12;50524:8;;;;;;;;;;;50523:9;50508:24;;50633:19;:25;50653:4;50633:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;50662:19;:23;50682:2;50662:23;;;;;;;;;;;;;;;;;;;;;;;;;50633:52;50630:99;;;50712:5;50702:15;;50630:99;50749:12;50853:7;50850:979;;;50904:25;:29;50930:2;50904:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;50953:1;50937:13;;:17;50904:50;50900:754;;;50981:34;51011:3;50981:25;50992:13;;50981:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;50974:41;;51082:13;;51063:16;;51056:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;51034:18;;:61;;;;;;;:::i;:::-;;;;;;;;51150:13;;51137:10;;51130:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;51114:12;;:49;;;;;;;:::i;:::-;;;;;;;;51230:13;;51211:16;;51204:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;51182:18;;:61;;;;;;;:::i;:::-;;;;;;;;50900:754;;;51304:25;:31;51330:4;51304:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;51354:1;51339:12;;:16;51304:51;51301:353;;;51383:33;51412:3;51383:24;51394:12;;51383:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;51376:40;;51482:12;;51464:15;;51457:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;51435:18;;:59;;;;;;;:::i;:::-;;;;;;;;51548:12;;51536:9;;51529:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;51513:12;;:47;;;;;;;:::i;:::-;;;;;;;;51626:12;;51608:15;;51601:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;51579:18;;:59;;;;;;;:::i;:::-;;;;;;;;51301:353;50900:754;51692:1;51685:4;:8;51682:93;;;51717:42;51733:4;51747;51754;51717:15;:42::i;:::-;51682:93;51813:4;51803:14;;;;;:::i;:::-;;;50850:979;51841:33;51857:4;51863:2;51867:6;51841:15;:33::i;:::-;47558:4324;;;;47445:4437;;;;:::o;10452:191::-;10526:16;10545:6;;;;;;;;;;;10526:25;;10571:8;10562:6;;:17;;;;;;;;;;;;;;;;;;10626:8;10595:40;;10616:8;10595:40;;;;;;;;;;;;10515:128;10452:191;:::o;46671:188::-;46788:5;46754:25;:31;46780:4;46754:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;46845:5;46811:40;;46839:4;46811:40;;;;;;;;;;;;46671:188;;:::o;3630:98::-;3688:7;3719:1;3715;:5;;;;:::i;:::-;3708:12;;3630:98;;;;:::o;4029:::-;4087:7;4118:1;4114;:5;;;;:::i;:::-;4107:12;;4029:98;;;;:::o;21891:840::-;22038:1;22022:18;;:4;:18;;;;22014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22115:1;22101:16;;:2;:16;;;;22093:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22170:38;22191:4;22197:2;22201:6;22170:20;:38::i;:::-;22221:19;22243:9;:15;22253:4;22243:15;;;;;;;;;;;;;;;;22221:37;;22292:6;22277:11;:21;;22269:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22409:6;22395:11;:20;22377:9;:15;22387:4;22377:15;;;;;;;;;;;;;;;:38;;;;22612:6;22595:9;:13;22605:2;22595:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22662:2;22647:26;;22656:4;22647:26;;;22666:6;22647:26;;;;;;:::i;:::-;;;;;;;;22686:37;22706:4;22712:2;22716:6;22686:19;:37::i;:::-;22003:728;21891:840;;;:::o;53028:1666::-;53067:23;53093:24;53111:4;53093:9;:24::i;:::-;53067:50;;53128:25;53198:12;;53177:18;;53156;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;53128:82;;53221:12;53276:1;53257:15;:20;:46;;;;53302:1;53281:17;:22;53257:46;53254:60;;;53306:7;;;;;53254:60;53368:2;53347:18;;:23;;;;:::i;:::-;53329:15;:41;53326:111;;;53423:2;53402:18;;:23;;;;:::i;:::-;53384:41;;53326:111;53506:23;53591:1;53571:17;53550:18;;53532:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;53506:86;;53603:26;53632:36;53652:15;53632;:19;;:36;;;;:::i;:::-;53603:65;;53689:25;53717:21;53689:49;;53751:36;53768:18;53751:16;:36::i;:::-;53809:18;53830:44;53856:17;53830:21;:25;;:44;;;;:::i;:::-;53809:65;;53895:23;53921:57;53960:17;53921:34;53936:18;;53921:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;53895:83;;53989:17;54009:51;54042:17;54009:28;54024:12;;54009:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;53989:71;;54091:23;54148:9;54130:15;54117:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;54091:66;;54209:1;54188:18;:22;;;;54242:1;54221:18;:22;;;;54269:1;54254:12;:16;;;;54312:9;;;;;;;;;;;54304:23;;54335:9;54304:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54291:58;;;;;54391:1;54373:15;:19;:42;;;;;54414:1;54396:15;:19;54373:42;54370:210;;;54431:46;54444:15;54461;54431:12;:46::i;:::-;54497:71;54512:18;54532:15;54549:18;;54497:71;;;;;;;;:::i;:::-;;;;;;;;54370:210;54631:15;;;;;;;;;;;54623:29;;54660:21;54623:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54610:76;;;;;53056:1638;;;;;;;;;;53028:1666;:::o;55165:804::-;55222:4;55265:15;55248:14;:32;;;;55343:28;55374:4;:14;;;55389:13;55374:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55343:60;;55461:20;55484:53;55531:5;55484:42;55509:16;;55484:20;:24;;:42;;;;:::i;:::-;:46;;:53;;;;:::i;:::-;55461:76;;55665:1;55650:12;:16;55646:109;;;55682:61;55698:13;55721:6;55730:12;55682:15;:61::i;:::-;55646:109;55838:19;55875:13;55838:51;;55900:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55927:12;;;;;;;;;;55957:4;55950:11;;;;;55165:804;:::o;26736:125::-;;;;:::o;27465:124::-;;;;:::o;3273:98::-;3331:7;3362:1;3358;:5;;;;:::i;:::-;3351:12;;3273:98;;;;:::o;51890:601::-;52018:21;52056:1;52042:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52018:40;;52087:4;52069;52074:1;52069:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;52113:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52103:4;52108:1;52103:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;52148:62;52165:4;52180:15;52198:11;52148:8;:62::i;:::-;52249:15;:66;;;52330:11;52356:1;52400:4;52427;52447:15;52249:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51945:546;51890:601;:::o;52503:517::-;52651:62;52668:4;52683:15;52701:11;52651:8;:62::i;:::-;52756:15;:31;;;52795:9;52828:4;52848:11;52874:1;52917;37778:6;52986:15;52756:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;52503:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:474::-;3562:6;3570;3619:2;3607:9;3598:7;3594:23;3590:32;3587:119;;;3625:79;;:::i;:::-;3587:119;3745:1;3770:53;3815:7;3806:6;3795:9;3791:22;3770:53;:::i;:::-;3760:63;;3716:117;3872:2;3898:53;3943:7;3934:6;3923:9;3919:22;3898:53;:::i;:::-;3888:63;;3843:118;3494:474;;;;;:::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:613::-;7716:6;7724;7732;7781:2;7769:9;7760:7;7756:23;7752:32;7749:119;;;7787:79;;:::i;:::-;7749:119;7907:1;7932:53;7977:7;7968:6;7957:9;7953:22;7932:53;:::i;:::-;7922:63;;7878:117;8034:2;8060:53;8105:7;8096:6;8085:9;8081:22;8060:53;:::i;:::-;8050:63;;8005:118;8162:2;8188:50;8230:7;8221:6;8210:9;8206:22;8188:50;:::i;:::-;8178:60;;8133:115;7642:613;;;;;:::o;8261:468::-;8326:6;8334;8383:2;8371:9;8362:7;8358:23;8354:32;8351:119;;;8389:79;;:::i;:::-;8351:119;8509:1;8534:53;8579:7;8570:6;8559:9;8555:22;8534:53;:::i;:::-;8524:63;;8480:117;8636:2;8662:50;8704:7;8695:6;8684:9;8680:22;8662:50;:::i;:::-;8652:60;;8607:115;8261:468;;;;;:::o;8735:619::-;8812:6;8820;8828;8877:2;8865:9;8856:7;8852:23;8848:32;8845:119;;;8883:79;;:::i;:::-;8845:119;9003:1;9028:53;9073:7;9064:6;9053:9;9049:22;9028:53;:::i;:::-;9018:63;;8974:117;9130:2;9156:53;9201:7;9192:6;9181:9;9177:22;9156:53;:::i;:::-;9146:63;;9101:118;9258:2;9284:53;9329:7;9320:6;9309:9;9305:22;9284:53;:::i;:::-;9274:63;;9229:118;8735:619;;;;;:::o;9360:323::-;9416:6;9465:2;9453:9;9444:7;9440:23;9436:32;9433:119;;;9471:79;;:::i;:::-;9433:119;9591:1;9616:50;9658:7;9649:6;9638:9;9634:22;9616:50;:::i;:::-;9606:60;;9562:114;9360:323;;;;:::o;9689:117::-;9798:1;9795;9788:12;9812:117;9921:1;9918;9911:12;9935:117;10044:1;10041;10034:12;10075:568;10148:8;10158:6;10208:3;10201:4;10193:6;10189:17;10185:27;10175:122;;10216:79;;:::i;:::-;10175:122;10329:6;10316:20;10306:30;;10359:18;10351:6;10348:30;10345:117;;;10381:79;;:::i;:::-;10345:117;10495:4;10487:6;10483:17;10471:29;;10549:3;10541:4;10533:6;10529:17;10519:8;10515:32;10512:41;10509:128;;;10556:79;;:::i;:::-;10509:128;10075:568;;;;;:::o;10649:698::-;10741:6;10749;10757;10806:2;10794:9;10785:7;10781:23;10777:32;10774:119;;;10812:79;;:::i;:::-;10774:119;10960:1;10949:9;10945:17;10932:31;10990:18;10982:6;10979:30;10976:117;;;11012:79;;:::i;:::-;10976:117;11125:80;11197:7;11188:6;11177:9;11173:22;11125:80;:::i;:::-;11107:98;;;;10903:312;11254:2;11280:50;11322:7;11313:6;11302:9;11298:22;11280:50;:::i;:::-;11270:60;;11225:115;10649:698;;;;;:::o;11353:474::-;11421:6;11429;11478:2;11466:9;11457:7;11453:23;11449:32;11446:119;;;11484:79;;:::i;:::-;11446:119;11604:1;11629:53;11674:7;11665:6;11654:9;11650:22;11629:53;:::i;:::-;11619:63;;11575:117;11731:2;11757:53;11802:7;11793:6;11782:9;11778:22;11757:53;:::i;:::-;11747:63;;11702:118;11353:474;;;;;:::o;11833:180::-;11881:77;11878:1;11871:88;11978:4;11975:1;11968:15;12002:4;11999:1;11992:15;12019:320;12063:6;12100:1;12094:4;12090:12;12080:22;;12147:1;12141:4;12137:12;12168:18;12158:81;;12224:4;12216:6;12212:17;12202:27;;12158:81;12286:2;12278:6;12275:14;12255:18;12252:38;12249:84;;;12305:18;;:::i;:::-;12249:84;12070:269;12019:320;;;:::o;12345:180::-;12393:77;12390:1;12383:88;12490:4;12487:1;12480:15;12514:4;12511:1;12504:15;12531:305;12571:3;12590:20;12608:1;12590:20;:::i;:::-;12585:25;;12624:20;12642:1;12624:20;:::i;:::-;12619:25;;12778:1;12710:66;12706:74;12703:1;12700:81;12697:107;;;12784:18;;:::i;:::-;12697:107;12828:1;12825;12821:9;12814:16;;12531:305;;;;:::o;12842:179::-;12982:31;12978:1;12970:6;12966:14;12959:55;12842:179;:::o;13027:366::-;13169:3;13190:67;13254:2;13249:3;13190:67;:::i;:::-;13183:74;;13266:93;13355:3;13266:93;:::i;:::-;13384:2;13379:3;13375:12;13368:19;;13027:366;;;:::o;13399:419::-;13565:4;13603:2;13592:9;13588:18;13580:26;;13652:9;13646:4;13642:20;13638:1;13627:9;13623:17;13616:47;13680:131;13806:4;13680:131;:::i;:::-;13672:139;;13399:419;;;:::o;13824:179::-;13964:31;13960:1;13952:6;13948:14;13941:55;13824:179;:::o;14009:366::-;14151:3;14172:67;14236:2;14231:3;14172:67;:::i;:::-;14165:74;;14248:93;14337:3;14248:93;:::i;:::-;14366:2;14361:3;14357:12;14350:19;;14009:366;;;:::o;14381:419::-;14547:4;14585:2;14574:9;14570:18;14562:26;;14634:9;14628:4;14624:20;14620:1;14609:9;14605:17;14598:47;14662:131;14788:4;14662:131;:::i;:::-;14654:139;;14381:419;;;:::o;14806:348::-;14846:7;14869:20;14887:1;14869:20;:::i;:::-;14864:25;;14903:20;14921:1;14903:20;:::i;:::-;14898:25;;15091:1;15023:66;15019:74;15016:1;15013:81;15008:1;15001:9;14994:17;14990:105;14987:131;;;15098:18;;:::i;:::-;14987:131;15146:1;15143;15139:9;15128:20;;14806:348;;;;:::o;15160:180::-;15208:77;15205:1;15198:88;15305:4;15302:1;15295:15;15329:4;15326:1;15319:15;15346:185;15386:1;15403:20;15421:1;15403:20;:::i;:::-;15398:25;;15437:20;15455:1;15437:20;:::i;:::-;15432:25;;15476:1;15466:35;;15481:18;;:::i;:::-;15466:35;15523:1;15520;15516:9;15511:14;;15346:185;;;;:::o;15537:234::-;15677:34;15673:1;15665:6;15661:14;15654:58;15746:17;15741:2;15733:6;15729:15;15722:42;15537:234;:::o;15777:366::-;15919:3;15940:67;16004:2;15999:3;15940:67;:::i;:::-;15933:74;;16016:93;16105:3;16016:93;:::i;:::-;16134:2;16129:3;16125:12;16118:19;;15777:366;;;:::o;16149:419::-;16315:4;16353:2;16342:9;16338:18;16330:26;;16402:9;16396:4;16392:20;16388:1;16377:9;16373:17;16366:47;16430:131;16556:4;16430:131;:::i;:::-;16422:139;;16149:419;;;:::o;16574:238::-;16714:34;16710:1;16702:6;16698:14;16691:58;16783:21;16778:2;16770:6;16766:15;16759:46;16574:238;:::o;16818:366::-;16960:3;16981:67;17045:2;17040:3;16981:67;:::i;:::-;16974:74;;17057:93;17146:3;17057:93;:::i;:::-;17175:2;17170:3;17166:12;17159:19;;16818:366;;;:::o;17190:419::-;17356:4;17394:2;17383:9;17379:18;17371:26;;17443:9;17437:4;17433:20;17429:1;17418:9;17414:17;17407:47;17471:131;17597:4;17471:131;:::i;:::-;17463:139;;17190:419;;;:::o;17615:235::-;17755:34;17751:1;17743:6;17739:14;17732:58;17824:18;17819:2;17811:6;17807:15;17800:43;17615:235;:::o;17856:366::-;17998:3;18019:67;18083:2;18078:3;18019:67;:::i;:::-;18012:74;;18095:93;18184:3;18095:93;:::i;:::-;18213:2;18208:3;18204:12;18197:19;;17856:366;;;:::o;18228:419::-;18394:4;18432:2;18421:9;18417:18;18409:26;;18481:9;18475:4;18471:20;18467:1;18456:9;18452:17;18445:47;18509:131;18635:4;18509:131;:::i;:::-;18501:139;;18228:419;;;:::o;18653:244::-;18793:34;18789:1;18781:6;18777:14;18770:58;18862:27;18857:2;18849:6;18845:15;18838:52;18653:244;:::o;18903:366::-;19045:3;19066:67;19130:2;19125:3;19066:67;:::i;:::-;19059:74;;19142:93;19231:3;19142:93;:::i;:::-;19260:2;19255:3;19251:12;19244:19;;18903:366;;;:::o;19275:419::-;19441:4;19479:2;19468:9;19464:18;19456:26;;19528:9;19522:4;19518:20;19514:1;19503:9;19499:17;19492:47;19556:131;19682:4;19556:131;:::i;:::-;19548:139;;19275:419;;;:::o;19700:224::-;19840:34;19836:1;19828:6;19824:14;19817:58;19909:7;19904:2;19896:6;19892:15;19885:32;19700:224;:::o;19930:366::-;20072:3;20093:67;20157:2;20152:3;20093:67;:::i;:::-;20086:74;;20169:93;20258:3;20169:93;:::i;:::-;20287:2;20282:3;20278:12;20271:19;;19930:366;;;:::o;20302:419::-;20468:4;20506:2;20495:9;20491:18;20483:26;;20555:9;20549:4;20545:20;20541:1;20530:9;20526:17;20519:47;20583:131;20709:4;20583:131;:::i;:::-;20575:139;;20302:419;;;:::o;20727:223::-;20867:34;20863:1;20855:6;20851:14;20844:58;20936:6;20931:2;20923:6;20919:15;20912:31;20727:223;:::o;20956:366::-;21098:3;21119:67;21183:2;21178:3;21119:67;:::i;:::-;21112:74;;21195:93;21284:3;21195:93;:::i;:::-;21313:2;21308:3;21304:12;21297:19;;20956:366;;;:::o;21328:419::-;21494:4;21532:2;21521:9;21517:18;21509:26;;21581:9;21575:4;21571:20;21567:1;21556:9;21552:17;21545:47;21609:131;21735:4;21609:131;:::i;:::-;21601:139;;21328:419;;;:::o;21753:180::-;21801:77;21798:1;21791:88;21898:4;21895:1;21888:15;21922:4;21919:1;21912:15;21939:233;21978:3;22001:24;22019:5;22001:24;:::i;:::-;21992:33;;22047:66;22040:5;22037:77;22034:103;;;22117:18;;:::i;:::-;22034:103;22164:1;22157:5;22153:13;22146:20;;21939:233;;;:::o;22178:240::-;22318:34;22314:1;22306:6;22302:14;22295:58;22387:23;22382:2;22374:6;22370:15;22363:48;22178:240;:::o;22424:366::-;22566:3;22587:67;22651:2;22646:3;22587:67;:::i;:::-;22580:74;;22663:93;22752:3;22663:93;:::i;:::-;22781:2;22776:3;22772:12;22765:19;;22424:366;;;:::o;22796:419::-;22962:4;23000:2;22989:9;22985:18;22977:26;;23049:9;23043:4;23039:20;23035:1;23024:9;23020:17;23013:47;23077:131;23203:4;23077:131;:::i;:::-;23069:139;;22796:419;;;:::o;23221:237::-;23361:34;23357:1;23349:6;23345:14;23338:58;23430:20;23425:2;23417:6;23413:15;23406:45;23221:237;:::o;23464:366::-;23606:3;23627:67;23691:2;23686:3;23627:67;:::i;:::-;23620:74;;23703:93;23792:3;23703:93;:::i;:::-;23821:2;23816:3;23812:12;23805:19;;23464:366;;;:::o;23836:419::-;24002:4;24040:2;24029:9;24025:18;24017:26;;24089:9;24083:4;24079:20;24075:1;24064:9;24060:17;24053:47;24117:131;24243:4;24117:131;:::i;:::-;24109:139;;23836:419;;;:::o;24261:225::-;24401:34;24397:1;24389:6;24385:14;24378:58;24470:8;24465:2;24457:6;24453:15;24446:33;24261:225;:::o;24492:366::-;24634:3;24655:67;24719:2;24714:3;24655:67;:::i;:::-;24648:74;;24731:93;24820:3;24731:93;:::i;:::-;24849:2;24844:3;24840:12;24833:19;;24492:366;;;:::o;24864:419::-;25030:4;25068:2;25057:9;25053:18;25045:26;;25117:9;25111:4;25107:20;25103:1;25092:9;25088:17;25081:47;25145:131;25271:4;25145:131;:::i;:::-;25137:139;;24864:419;;;:::o;25289:182::-;25429:34;25425:1;25417:6;25413:14;25406:58;25289:182;:::o;25477:366::-;25619:3;25640:67;25704:2;25699:3;25640:67;:::i;:::-;25633:74;;25716:93;25805:3;25716:93;:::i;:::-;25834:2;25829:3;25825:12;25818:19;;25477:366;;;:::o;25849:419::-;26015:4;26053:2;26042:9;26038:18;26030:26;;26102:9;26096:4;26092:20;26088:1;26077:9;26073:17;26066:47;26130:131;26256:4;26130:131;:::i;:::-;26122:139;;25849:419;;;:::o;26274:229::-;26414:34;26410:1;26402:6;26398:14;26391:58;26483:12;26478:2;26470:6;26466:15;26459:37;26274:229;:::o;26509:366::-;26651:3;26672:67;26736:2;26731:3;26672:67;:::i;:::-;26665:74;;26748:93;26837:3;26748:93;:::i;:::-;26866:2;26861:3;26857:12;26850:19;;26509:366;;;:::o;26881:419::-;27047:4;27085:2;27074:9;27070:18;27062:26;;27134:9;27128:4;27124:20;27120:1;27109:9;27105:17;27098:47;27162:131;27288:4;27162:131;:::i;:::-;27154:139;;26881:419;;;:::o;27306:143::-;27363:5;27394:6;27388:13;27379:22;;27410:33;27437:5;27410:33;:::i;:::-;27306:143;;;;:::o;27455:351::-;27525:6;27574:2;27562:9;27553:7;27549:23;27545:32;27542:119;;;27580:79;;:::i;:::-;27542:119;27700:1;27725:64;27781:7;27772:6;27761:9;27757:22;27725:64;:::i;:::-;27715:74;;27671:128;27455:351;;;;:::o;27812:223::-;27952:34;27948:1;27940:6;27936:14;27929:58;28021:6;28016:2;28008:6;28004:15;27997:31;27812:223;:::o;28041:366::-;28183:3;28204:67;28268:2;28263:3;28204:67;:::i;:::-;28197:74;;28280:93;28369:3;28280:93;:::i;:::-;28398:2;28393:3;28389:12;28382:19;;28041:366;;;:::o;28413:419::-;28579:4;28617:2;28606:9;28602:18;28594:26;;28666:9;28660:4;28656:20;28652:1;28641:9;28637:17;28630:47;28694:131;28820:4;28694:131;:::i;:::-;28686:139;;28413:419;;;:::o;28838:221::-;28978:34;28974:1;28966:6;28962:14;28955:58;29047:4;29042:2;29034:6;29030:15;29023:29;28838:221;:::o;29065:366::-;29207:3;29228:67;29292:2;29287:3;29228:67;:::i;:::-;29221:74;;29304:93;29393:3;29304:93;:::i;:::-;29422:2;29417:3;29413:12;29406:19;;29065:366;;;:::o;29437:419::-;29603:4;29641:2;29630:9;29626:18;29618:26;;29690:9;29684:4;29680:20;29676:1;29665:9;29661:17;29654:47;29718:131;29844:4;29718:131;:::i;:::-;29710:139;;29437:419;;;:::o;29862:182::-;30002:34;29998:1;29990:6;29986:14;29979:58;29862:182;:::o;30050:366::-;30192:3;30213:67;30277:2;30272:3;30213:67;:::i;:::-;30206:74;;30289:93;30378:3;30289:93;:::i;:::-;30407:2;30402:3;30398:12;30391:19;;30050:366;;;:::o;30422:419::-;30588:4;30626:2;30615:9;30611:18;30603:26;;30675:9;30669:4;30665:20;30661:1;30650:9;30646:17;30639:47;30703:131;30829:4;30703:131;:::i;:::-;30695:139;;30422:419;;;:::o;30847:179::-;30987:31;30983:1;30975:6;30971:14;30964:55;30847:179;:::o;31032:366::-;31174:3;31195:67;31259:2;31254:3;31195:67;:::i;:::-;31188:74;;31271:93;31360:3;31271:93;:::i;:::-;31389:2;31384:3;31380:12;31373:19;;31032:366;;;:::o;31404:419::-;31570:4;31608:2;31597:9;31593:18;31585:26;;31657:9;31651:4;31647:20;31643:1;31632:9;31628:17;31621:47;31685:131;31811:4;31685:131;:::i;:::-;31677:139;;31404:419;;;:::o;31829:224::-;31969:34;31965:1;31957:6;31953:14;31946:58;32038:7;32033:2;32025:6;32021:15;32014:32;31829:224;:::o;32059:366::-;32201:3;32222:67;32286:2;32281:3;32222:67;:::i;:::-;32215:74;;32298:93;32387:3;32298:93;:::i;:::-;32416:2;32411:3;32407:12;32400:19;;32059:366;;;:::o;32431:419::-;32597:4;32635:2;32624:9;32620:18;32612:26;;32684:9;32678:4;32674:20;32670:1;32659:9;32655:17;32648:47;32712:131;32838:4;32712:131;:::i;:::-;32704:139;;32431:419;;;:::o;32856:222::-;32996:34;32992:1;32984:6;32980:14;32973:58;33065:5;33060:2;33052:6;33048:15;33041:30;32856:222;:::o;33084:366::-;33226:3;33247:67;33311:2;33306:3;33247:67;:::i;:::-;33240:74;;33323:93;33412:3;33323:93;:::i;:::-;33441:2;33436:3;33432:12;33425:19;;33084:366;;;:::o;33456:419::-;33622:4;33660:2;33649:9;33645:18;33637:26;;33709:9;33703:4;33699:20;33695:1;33684:9;33680:17;33673:47;33737:131;33863:4;33737:131;:::i;:::-;33729:139;;33456:419;;;:::o;33881:161::-;34021:13;34017:1;34009:6;34005:14;33998:37;33881:161;:::o;34048:366::-;34190:3;34211:67;34275:2;34270:3;34211:67;:::i;:::-;34204:74;;34287:93;34376:3;34287:93;:::i;:::-;34405:2;34400:3;34396:12;34389:19;;34048:366;;;:::o;34420:419::-;34586:4;34624:2;34613:9;34609:18;34601:26;;34673:9;34667:4;34663:20;34659:1;34648:9;34644:17;34637:47;34701:131;34827:4;34701:131;:::i;:::-;34693:139;;34420:419;;;:::o;34845:172::-;34985:24;34981:1;34973:6;34969:14;34962:48;34845:172;:::o;35023:366::-;35165:3;35186:67;35250:2;35245:3;35186:67;:::i;:::-;35179:74;;35262:93;35351:3;35262:93;:::i;:::-;35380:2;35375:3;35371:12;35364:19;;35023:366;;;:::o;35395:419::-;35561:4;35599:2;35588:9;35584:18;35576:26;;35648:9;35642:4;35638:20;35634:1;35623:9;35619:17;35612:47;35676:131;35802:4;35676:131;:::i;:::-;35668:139;;35395:419;;;:::o;35820:297::-;35960:34;35956:1;35948:6;35944:14;35937:58;36029:34;36024:2;36016:6;36012:15;36005:59;36098:11;36093:2;36085:6;36081:15;36074:36;35820:297;:::o;36123:366::-;36265:3;36286:67;36350:2;36345:3;36286:67;:::i;:::-;36279:74;;36362:93;36451:3;36362:93;:::i;:::-;36480:2;36475:3;36471:12;36464:19;;36123:366;;;:::o;36495:419::-;36661:4;36699:2;36688:9;36684:18;36676:26;;36748:9;36742:4;36738:20;36734:1;36723:9;36719:17;36712:47;36776:131;36902:4;36776:131;:::i;:::-;36768:139;;36495:419;;;:::o;36920:240::-;37060:34;37056:1;37048:6;37044:14;37037:58;37129:23;37124:2;37116:6;37112:15;37105:48;36920:240;:::o;37166:366::-;37308:3;37329:67;37393:2;37388:3;37329:67;:::i;:::-;37322:74;;37405:93;37494:3;37405:93;:::i;:::-;37523:2;37518:3;37514:12;37507:19;;37166:366;;;:::o;37538:419::-;37704:4;37742:2;37731:9;37727:18;37719:26;;37791:9;37785:4;37781:20;37777:1;37766:9;37762:17;37755:47;37819:131;37945:4;37819:131;:::i;:::-;37811:139;;37538:419;;;:::o;37963:169::-;38103:21;38099:1;38091:6;38087:14;38080:45;37963:169;:::o;38138:366::-;38280:3;38301:67;38365:2;38360:3;38301:67;:::i;:::-;38294:74;;38377:93;38466:3;38377:93;:::i;:::-;38495:2;38490:3;38486:12;38479:19;;38138:366;;;:::o;38510:419::-;38676:4;38714:2;38703:9;38699:18;38691:26;;38763:9;38757:4;38753:20;38749:1;38738:9;38734:17;38727:47;38791:131;38917:4;38791:131;:::i;:::-;38783:139;;38510:419;;;:::o;38935:241::-;39075:34;39071:1;39063:6;39059:14;39052:58;39144:24;39139:2;39131:6;39127:15;39120:49;38935:241;:::o;39182:366::-;39324:3;39345:67;39409:2;39404:3;39345:67;:::i;:::-;39338:74;;39421:93;39510:3;39421:93;:::i;:::-;39539:2;39534:3;39530:12;39523:19;;39182:366;;;:::o;39554:419::-;39720:4;39758:2;39747:9;39743:18;39735:26;;39807:9;39801:4;39797:20;39793:1;39782:9;39778:17;39771:47;39835:131;39961:4;39835:131;:::i;:::-;39827:139;;39554:419;;;:::o;39979:191::-;40019:4;40039:20;40057:1;40039:20;:::i;:::-;40034:25;;40073:20;40091:1;40073:20;:::i;:::-;40068:25;;40112:1;40109;40106:8;40103:34;;;40117:18;;:::i;:::-;40103:34;40162:1;40159;40155:9;40147:17;;39979:191;;;;:::o;40176:225::-;40316:34;40312:1;40304:6;40300:14;40293:58;40385:8;40380:2;40372:6;40368:15;40361:33;40176:225;:::o;40407:366::-;40549:3;40570:67;40634:2;40629:3;40570:67;:::i;:::-;40563:74;;40646:93;40735:3;40646:93;:::i;:::-;40764:2;40759:3;40755:12;40748:19;;40407:366;;;:::o;40779:419::-;40945:4;40983:2;40972:9;40968:18;40960:26;;41032:9;41026:4;41022:20;41018:1;41007:9;41003:17;40996:47;41060:131;41186:4;41060:131;:::i;:::-;41052:139;;40779:419;;;:::o;41204:147::-;41305:11;41342:3;41327:18;;41204:147;;;;:::o;41357:114::-;;:::o;41477:398::-;41636:3;41657:83;41738:1;41733:3;41657:83;:::i;:::-;41650:90;;41749:93;41838:3;41749:93;:::i;:::-;41867:1;41862:3;41858:11;41851:18;;41477:398;;;:::o;41881:379::-;42065:3;42087:147;42230:3;42087:147;:::i;:::-;42080:154;;42251:3;42244:10;;41881:379;;;:::o;42266:442::-;42415:4;42453:2;42442:9;42438:18;42430:26;;42466:71;42534:1;42523:9;42519:17;42510:6;42466:71;:::i;:::-;42547:72;42615:2;42604:9;42600:18;42591:6;42547:72;:::i;:::-;42629;42697:2;42686:9;42682:18;42673:6;42629:72;:::i;:::-;42266:442;;;;;;:::o;42714:180::-;42762:77;42759:1;42752:88;42859:4;42856:1;42849:15;42883:4;42880:1;42873:15;42900:143;42957:5;42988:6;42982:13;42973:22;;43004:33;43031:5;43004:33;:::i;:::-;42900:143;;;;:::o;43049:351::-;43119:6;43168:2;43156:9;43147:7;43143:23;43139:32;43136:119;;;43174:79;;:::i;:::-;43136:119;43294:1;43319:64;43375:7;43366:6;43355:9;43351:22;43319:64;:::i;:::-;43309:74;;43265:128;43049:351;;;;:::o;43406:85::-;43451:7;43480:5;43469:16;;43406:85;;;:::o;43497:158::-;43555:9;43588:61;43606:42;43615:32;43641:5;43615:32;:::i;:::-;43606:42;:::i;:::-;43588:61;:::i;:::-;43575:74;;43497:158;;;:::o;43661:147::-;43756:45;43795:5;43756:45;:::i;:::-;43751:3;43744:58;43661:147;;:::o;43814:114::-;43881:6;43915:5;43909:12;43899:22;;43814:114;;;:::o;43934:184::-;44033:11;44067:6;44062:3;44055:19;44107:4;44102:3;44098:14;44083:29;;43934:184;;;;:::o;44124:132::-;44191:4;44214:3;44206:11;;44244:4;44239:3;44235:14;44227:22;;44124:132;;;:::o;44262:108::-;44339:24;44357:5;44339:24;:::i;:::-;44334:3;44327:37;44262:108;;:::o;44376:179::-;44445:10;44466:46;44508:3;44500:6;44466:46;:::i;:::-;44544:4;44539:3;44535:14;44521:28;;44376:179;;;;:::o;44561:113::-;44631:4;44663;44658:3;44654:14;44646:22;;44561:113;;;:::o;44710:732::-;44829:3;44858:54;44906:5;44858:54;:::i;:::-;44928:86;45007:6;45002:3;44928:86;:::i;:::-;44921:93;;45038:56;45088:5;45038:56;:::i;:::-;45117:7;45148:1;45133:284;45158:6;45155:1;45152:13;45133:284;;;45234:6;45228:13;45261:63;45320:3;45305:13;45261:63;:::i;:::-;45254:70;;45347:60;45400:6;45347:60;:::i;:::-;45337:70;;45193:224;45180:1;45177;45173:9;45168:14;;45133:284;;;45137:14;45433:3;45426:10;;44834:608;;;44710:732;;;;:::o;45448:831::-;45711:4;45749:3;45738:9;45734:19;45726:27;;45763:71;45831:1;45820:9;45816:17;45807:6;45763:71;:::i;:::-;45844:80;45920:2;45909:9;45905:18;45896:6;45844:80;:::i;:::-;45971:9;45965:4;45961:20;45956:2;45945:9;45941:18;45934:48;45999:108;46102:4;46093:6;45999:108;:::i;:::-;45991:116;;46117:72;46185:2;46174:9;46170:18;46161:6;46117:72;:::i;:::-;46199:73;46267:3;46256:9;46252:19;46243:6;46199:73;:::i;:::-;45448:831;;;;;;;;:::o;46285:807::-;46534:4;46572:3;46561:9;46557:19;46549:27;;46586:71;46654:1;46643:9;46639:17;46630:6;46586:71;:::i;:::-;46667:72;46735:2;46724:9;46720:18;46711:6;46667:72;:::i;:::-;46749:80;46825:2;46814:9;46810:18;46801:6;46749:80;:::i;:::-;46839;46915:2;46904:9;46900:18;46891:6;46839:80;:::i;:::-;46929:73;46997:3;46986:9;46982:19;46973:6;46929:73;:::i;:::-;47012;47080:3;47069:9;47065:19;47056:6;47012:73;:::i;:::-;46285:807;;;;;;;;;:::o;47098:663::-;47186:6;47194;47202;47251:2;47239:9;47230:7;47226:23;47222:32;47219:119;;;47257:79;;:::i;:::-;47219:119;47377:1;47402:64;47458:7;47449:6;47438:9;47434:22;47402:64;:::i;:::-;47392:74;;47348:128;47515:2;47541:64;47597:7;47588:6;47577:9;47573:22;47541:64;:::i;:::-;47531:74;;47486:129;47654:2;47680:64;47736:7;47727:6;47716:9;47712:22;47680:64;:::i;:::-;47670:74;;47625:129;47098:663;;;;;:::o

Swarm Source

ipfs://38232eb25c82bc9e2d3366960fee466449f75790b457e106c484a74f0ae2a51f
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.