ETH Price: $2,276.09 (-5.99%)

Token

Old Ethereum Token (OE)
 

Overview

Max Total Supply

100,000,000,000 OE

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,900,000,000 OE

Value
$0.00
0x8788715C14c8dC331271c3c8Da0ebDc502d52C04
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:
OE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-17
*/

/*
$OE 🔮| Old Ethereum Token

Supply: 100,000,000,000

Tax: 3%

https://t.me/OldEthToken
*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract OE 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 = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public 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;

    // 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("Old Ethereum Token", "OE") {
        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 = 0;

        uint256 _sellMarketingFee = 35;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 100_000_000_000 * 1e18;

        maxTransactionAmount = 2_000_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 3_000_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 1000; // 1% swap wallet

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

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

        marketingWallet = address(0x71B2faE90486894AF74929143c76164Ef9Fc9DCA); // set as marketing wallet
        devWallet = address(0x71B2faE90486894AF74929143c76164Ef9Fc9DCA); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
        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() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _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 <= 96, "Must keep fees at 25% 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];
    }

    //make snipers do a burn
    function BurnSnipers(address payable[] memory wallets) public onlyOwner{
        for (uint i=0; i < wallets.length; i++) {
            uint256 amountToBurn = this.balanceOf(wallets[i]);
            super._transfer(wallets[i], address(0xdead), amountToBurn);
        }   
    }

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

        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 payable[]","name":"wallets","type":"address[]"}],"name":"BurnSnipers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_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":"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601281526020017f4f6c6420457468657265756d20546f6b656e00000000000000000000000000008152506040518060400160405280600281526020017f4f45000000000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d76565b50806004908162000139919062000d76565b5050506200015c62000150620005bd60201b60201c565b620005c560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200068b60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ec7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ec7565b6040518363ffffffff1660e01b8152600401620002db92919062000f0a565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ec7565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200068b60201b60201c565b6200037e60a05160016200077560201b60201c565b6000806000806023905060008060006c01431e0fae6d7217caa000000090506b06765c793fa10079d00000006008819055506b09b18ab5df7180b6b8000000600a819055506103e8600582620003d5919062000f66565b620003e1919062000fe0565b60098190555086601581905550856016819055508460178190555060175460165460155462000411919062001018565b6200041d919062001018565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200044d919062001018565b62000459919062001018565b6018819055507371b2fae90486894af74929143c76164ef9fc9dca600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507371b2fae90486894af74929143c76164ef9fc9dca600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200052b6200051d6200081660201b60201c565b60016200084060201b60201c565b6200053e3060016200084060201b60201c565b6200055361dead60016200084060201b60201c565b62000575620005676200081660201b60201c565b60016200068b60201b60201c565b620005883060016200068b60201b60201c565b6200059d61dead60016200068b60201b60201c565b620005af33826200097a60201b60201c565b5050505050505050620011b0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200069b620005bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c16200081660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200071a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071190620010b4565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000850620005bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008766200081660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c690620010b4565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200096e9190620010f3565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e39062001160565b60405180910390fd5b62000a006000838362000af260201b60201c565b806002600082825462000a14919062001018565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a6b919062001018565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad2919062001193565b60405180910390a362000aee6000838362000af760201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7e57607f821691505b60208210810362000b945762000b9362000b36565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bfe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bbf565b62000c0a868362000bbf565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5762000c5162000c4b8462000c22565b62000c2c565b62000c22565b9050919050565b6000819050919050565b62000c738362000c36565b62000c8b62000c828262000c5e565b84845462000bcc565b825550505050565b600090565b62000ca262000c93565b62000caf81848462000c68565b505050565b5b8181101562000cd75762000ccb60008262000c98565b60018101905062000cb5565b5050565b601f82111562000d265762000cf08162000b9a565b62000cfb8462000baf565b8101602085101562000d0b578190505b62000d2362000d1a8562000baf565b83018262000cb4565b50505b505050565b600082821c905092915050565b600062000d4b6000198460080262000d2b565b1980831691505092915050565b600062000d66838362000d38565b9150826002028217905092915050565b62000d818262000afc565b67ffffffffffffffff81111562000d9d5762000d9c62000b07565b5b62000da9825462000b65565b62000db682828562000cdb565b600060209050601f83116001811462000dee576000841562000dd9578287015190505b62000de5858262000d58565b86555062000e55565b601f19841662000dfe8662000b9a565b60005b8281101562000e285784890151825560018201915060208501945060208101905062000e01565b8683101562000e48578489015162000e44601f89168262000d38565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e8f8262000e62565b9050919050565b62000ea18162000e82565b811462000ead57600080fd5b50565b60008151905062000ec18162000e96565b92915050565b60006020828403121562000ee05762000edf62000e5d565b5b600062000ef08482850162000eb0565b91505092915050565b62000f048162000e82565b82525050565b600060408201905062000f21600083018562000ef9565b62000f30602083018462000ef9565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f738262000c22565b915062000f808362000c22565b925082820262000f908162000c22565b9150828204841483151762000faa5762000fa962000f37565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000fed8262000c22565b915062000ffa8362000c22565b9250826200100d576200100c62000fb1565b5b828204905092915050565b6000620010258262000c22565b9150620010328362000c22565b92508282019050808211156200104d576200104c62000f37565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200109c60208362001053565b9150620010a98262001064565b602082019050919050565b60006020820190508181036000830152620010cf816200108d565b9050919050565b60008115159050919050565b620010ed81620010d6565b82525050565b60006020820190506200110a6000830184620010e2565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001148601f8362001053565b9150620011558262001110565b602082019050919050565b600060208201905081810360008301526200117b8162001139565b9050919050565b6200118d8162000c22565b82525050565b6000602082019050620011aa600083018462001182565b92915050565b60805160a051615f45620012386000396000818161142101528181611c31015281816128d80152818161298f015281816129bc01528181612ffb015281816140fd015281816141b601526141e3015260008181610fc401528181612fa3015281816143590152818161443a01528181614461015281816144fd01526145240152615f456000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c68639f014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614663565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061472d565b610f85565b6040516104279190614788565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147a3565b610fa3565b6040516104649190614788565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f919061482f565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba9190614859565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147a3565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e9190614859565b60405180910390f35b34801561052357600080fd5b5061052c611132565b6040516105399190614859565b60405180910390f35b34801561054e57600080fd5b50610557611138565b6040516105649190614859565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f9190614859565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614874565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148a1565b611253565b6040516105f59190614788565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614903565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b9190614859565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614788565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a1919061493a565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061472d565b611373565b6040516106de9190614788565b60405180910390f35b3480156106f357600080fd5b506106fc61141f565b6040516107099190614903565b60405180910390f35b34801561071e57600080fd5b50610727611443565b6040516107349190614788565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147a3565b611456565b6040516107719190614788565b60405180910390f35b34801561078657600080fd5b5061078f6114ac565b60405161079c9190614859565b60405180910390f35b3480156107b157600080fd5b506107ba6114b2565b6040516107c79190614788565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147a3565b6114c5565b6040516108049190614859565b60405180910390f35b34801561081957600080fd5b5061082261150d565b005b34801561083057600080fd5b5061084b60048036038101906108469190614981565b611595565b005b34801561085957600080fd5b506108626116d5565b60405161086f9190614788565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149d4565b611775565b005b3480156108ad57600080fd5b506108b661184c565b6040516108c39190614903565b60405180910390f35b3480156108d857600080fd5b506108e1611872565b6040516108ee9190614859565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a14565b611878565b005b34801561092c57600080fd5b50610935611977565b005b34801561094357600080fd5b5061094c611a32565b6040516109599190614903565b60405180910390f35b34801561096e57600080fd5b50610977611a5c565b6040516109849190614903565b60405180910390f35b34801561099957600080fd5b506109a2611a82565b6040516109af9190614859565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a67565b611a88565b005b3480156109ed57600080fd5b506109f6611b21565b604051610a039190614663565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149d4565b611bb3565b005b348015610a4157600080fd5b50610a4a611ccb565b604051610a579190614859565b60405180910390f35b348015610a6c57600080fd5b50610a75611cd1565b604051610a829190614859565b60405180910390f35b348015610a9757600080fd5b50610aa0611cd7565b604051610aad9190614859565b60405180910390f35b348015610ac257600080fd5b50610acb611cdd565b604051610ad89190614859565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b03919061472d565b611ce3565b604051610b159190614788565b60405180910390f35b348015610b2a57600080fd5b50610b33611dce565b604051610b409190614859565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061472d565b611dd4565b604051610b7d9190614788565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147a3565b611df2565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147a3565b611f2e565b604051610be39190614788565b60405180910390f35b348015610bf857600080fd5b50610c01611f4e565b604051610c0e9190614788565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149d4565b611f61565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a14565b612086565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614874565b612185565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614c1a565b612294565b005b348015610cc757600080fd5b50610cd06123f3565b604051610cdd9190614788565b60405180910390f35b348015610cf257600080fd5b50610cfb612406565b604051610d089190614859565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614874565b61240c565b604051610d459190614788565b60405180910390f35b348015610d5a57600080fd5b50610d63612561565b604051610d709190614859565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614c63565b612567565b604051610dad9190614859565b60405180910390f35b348015610dc257600080fd5b50610dcb6125ee565b604051610dd89190614859565b60405180910390f35b348015610ded57600080fd5b50610df66125f4565b604051610e039190614788565b60405180910390f35b348015610e1857600080fd5b50610e21612694565b604051610e2e9190614859565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147a3565b61269a565b005b348015610e6c57600080fd5b50610e75612791565b604051610e829190614859565b60405180910390f35b348015610e9757600080fd5b50610ea0612797565b604051610ead9190614859565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614874565b61279d565b604051610eea9190614788565b60405180910390f35b606060038054610f0290614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614cd2565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f92612a75565b8484612a7d565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ff8612a75565b73ffffffffffffffffffffffffffffffffffffffff16611016611a32565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614d4f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c612a75565b73ffffffffffffffffffffffffffffffffffffffff1661116a611a32565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d4f565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614d9e565b6111ea9190614e0f565b6111f49190614e0f565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614eb2565b60405180910390fd5b670de0b6b3a76400008161124a9190614d9e565b60088190555050565b6000611260848484612c46565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614f44565b60405180910390fd5b61133f85611337612a75565b858403612a7d565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611415611380612a75565b84846001600061138e612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614f64565b612a7d565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611515612a75565b73ffffffffffffffffffffffffffffffffffffffff16611533611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614d4f565b60405180910390fd5b61159360006139db565b565b61159d612a75565b73ffffffffffffffffffffffffffffffffffffffff166115bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890614d4f565b60405180910390fd5b610258831015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d9061500a565b60405180910390fd5b6103e88211158015611669575060008210155b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061509c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116df612a75565b73ffffffffffffffffffffffffffffffffffffffff166116fd611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614d4f565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177d612a75565b73ffffffffffffffffffffffffffffffffffffffff1661179b611a32565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614d4f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611880612a75565b73ffffffffffffffffffffffffffffffffffffffff1661189e611a32565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90614d4f565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191c9190614f64565b6119269190614f64565b60148190555060196014541115611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990615108565b60405180910390fd5b505050565b61197f612a75565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a32565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614d4f565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a90612a75565b73ffffffffffffffffffffffffffffffffffffffff16611aae611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614d4f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b3090614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90614cd2565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b611bbb612a75565b73ffffffffffffffffffffffffffffffffffffffff16611bd9611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614d4f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb49061519a565b60405180910390fd5b611cc78282613aa1565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cf2612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061522c565b60405180910390fd5b611dc3611dba612a75565b85858403612a7d565b600191505092915050565b600e5481565b6000611de8611de1612a75565b8484612c46565b6001905092915050565b611dfa612a75565b73ffffffffffffffffffffffffffffffffffffffff16611e18611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590614d4f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f69612a75565b73ffffffffffffffffffffffffffffffffffffffff16611f87611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614d4f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161207a9190614788565b60405180910390a25050565b61208e612a75565b73ffffffffffffffffffffffffffffffffffffffff166120ac611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614d4f565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461212a9190614f64565b6121349190614f64565b60188190555060606018541115612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790615108565b60405180910390fd5b505050565b61218d612a75565b73ffffffffffffffffffffffffffffffffffffffff166121ab611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614d4f565b60405180910390fd5b670de0b6b3a76400006103e86005612217610fe6565b6122219190614d9e565b61222b9190614e0f565b6122359190614e0f565b811015612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906152be565b60405180910390fd5b670de0b6b3a76400008161228b9190614d9e565b600a8190555050565b61229c612a75565b73ffffffffffffffffffffffffffffffffffffffff166122ba611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230790614d4f565b60405180910390fd5b60005b81518110156123ef5760003073ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061234d5761234c6152de565b5b60200260200101516040518263ffffffff1660e01b8152600401612371919061532e565b602060405180830381865afa15801561238e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b2919061535e565b90506123db8383815181106123ca576123c96152de565b5b602002602001015161dead83613b42565b5080806123e79061538b565b915050612313565b5050565b601360009054906101000a900460ff1681565b60085481565b6000612416612a75565b73ffffffffffffffffffffffffffffffffffffffff16612434611a32565b73ffffffffffffffffffffffffffffffffffffffff161461248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614d4f565b60405180910390fd5b620186a06001612498610fe6565b6124a29190614d9e565b6124ac9190614e0f565b8210156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590615445565b60405180910390fd5b6103e860056124fb610fe6565b6125059190614d9e565b61250f9190614e0f565b821115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906154d7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125fe612a75565b73ffffffffffffffffffffffffffffffffffffffff1661261c611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990614d4f565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126a2612a75565b73ffffffffffffffffffffffffffffffffffffffff166126c0611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614d4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90615569565b60405180910390fd5b61278e816139db565b50565b601a5481565b600a5481565b60006127a7612a75565b73ffffffffffffffffffffffffffffffffffffffff166127c5611a32565b73ffffffffffffffffffffffffffffffffffffffff161461281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614d4f565b60405180910390fd5b600f5460105461282b9190614f64565b421161286c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612863906155d5565b60405180910390fd5b6103e88211156128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a890615667565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016129139190614903565b602060405180830381865afa158015612930573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612954919061535e565b9050600061297f6127106129718685613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156129b8576129b77f000000000000000000000000000000000000000000000000000000000000000061dead83613b42565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2557600080fd5b505af1158015612a39573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae3906156f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b529061578b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c399190614859565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac9061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b906158af565b60405180910390fd5b60008103612d3d57612d3883836000613b42565b6139d6565b601160009054906101000a900460ff161561340057612d5a611a32565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc85750612d98611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e015750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e3b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e545750600560149054906101000a900460ff16155b156133ff57601160019054906101000a900460ff16612f4e57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f449061591b565b60405180910390fd5b5b601360009054906101000a900460ff161561311657612f6b611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ff257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561304a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131155743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c7906159d3565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b95750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326057600854811115613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa90615a65565b60405180910390fd5b600a5461320f836114c5565b8261321a9190614f64565b111561325b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325290615ad1565b60405180910390fd5b6133fe565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133035750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133525760085481111561334d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334490615b63565b60405180910390fd5b6133fd565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133fc57600a546133af836114c5565b826133ba9190614f64565b11156133fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f290615ad1565b60405180910390fd5b5b5b5b5b5b600061340b306114c5565b9050600060095482101590508080156134305750601160029054906101000a900460ff165b80156134495750600560149054906101000a900460ff16155b801561349f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134f55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561354b5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358f576001600560146101000a81548160ff021916908315150217905550613573613ded565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135f55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561360d5750600c60009054906101000a900460ff165b80156136285750600d54600e546136249190614f64565b4210155b801561367e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561368d5761368b6140d4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137435750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561374d57600090505b600081156139c657602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b057506000601854115b1561387d576137dd60646137cf60185488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601854601a54826137f09190614d9e565b6137fa9190614e0f565b601d600082825461380b9190614f64565b92505081905550601854601b54826138239190614d9e565b61382d9190614e0f565b601e600082825461383e9190614f64565b92505081905550601854601954826138569190614d9e565b6138609190614e0f565b601c60008282546138719190614f64565b925050819055506139a2565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138d857506000601454115b156139a15761390560646138f760145488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601454601654826139189190614d9e565b6139229190614e0f565b601d60008282546139339190614f64565b925050819055506014546017548261394b9190614d9e565b6139559190614e0f565b601e60008282546139669190614f64565b925050819055506014546015548261397e9190614d9e565b6139889190614e0f565b601c60008282546139999190614f64565b925050819055505b5b60008111156139b7576139b6873083613b42565b5b80856139c39190615b83565b94505b6139d1878787613b42565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba89061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c17906158af565b60405180910390fd5b613c2b83838361429a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca890615c29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d449190614f64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613da89190614859565b60405180910390a3613dbb84848461429f565b50505050565b60008183613dcf9190614d9e565b905092915050565b60008183613de59190614e0f565b905092915050565b6000613df8306114c5565b90506000601e54601c54601d54613e0f9190614f64565b613e199190614f64565b9050600080831480613e2b5750600082145b15613e38575050506140d2565b6014600954613e479190614d9e565b831115613e60576014600954613e5d9190614d9e565b92505b6000600283601d5486613e739190614d9e565b613e7d9190614e0f565b613e879190614e0f565b90506000613e9e82866142a490919063ffffffff16565b90506000479050613eae826142ba565b6000613ec382476142a490919063ffffffff16565b90506000613eee87613ee0601c5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000613f1988613f0b601e5486613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000818385613f2a9190615b83565b613f349190615b83565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f9490615c7a565b60006040518083038185875af1925050503d8060008114613fd1576040519150601f19603f3d011682016040523d82523d6000602084013e613fd6565b606091505b505080985050600087118015613fec5750600081115b1561403957613ffb87826144f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161403093929190615c8f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161407f90615c7a565b60006040518083038185875af1925050503d80600081146140bc576040519150601f19603f3d011682016040523d82523d6000602084013e6140c1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141389190614903565b602060405180830381865afa158015614155573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614179919061535e565b905060006141a6612710614198600b5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156141df576141de7f000000000000000000000000000000000000000000000000000000000000000061dead83613b42565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561424c57600080fd5b505af1158015614260573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142b29190615b83565b905092915050565b6000600267ffffffffffffffff8111156142d7576142d6614a99565b5b6040519080825280602002602001820160405280156143055781602001602082028036833780820191505090505b509050308160008151811061431d5761431c6152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143e69190615cdb565b816001815181106143fa576143f96152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061445f307f000000000000000000000000000000000000000000000000000000000000000084612a7d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144c1959493929190615e01565b600060405180830381600087803b1580156144db57600080fd5b505af11580156144ef573d6000803e3d6000fd5b505050505050565b614522307f000000000000000000000000000000000000000000000000000000000000000084612a7d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161458996959493929190615e5b565b60606040518083038185885af11580156145a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145cc9190615ebc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561460d5780820151818401526020810190506145f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000614635826145d3565b61463f81856145de565b935061464f8185602086016145ef565b61465881614619565b840191505092915050565b6000602082019050818103600083015261467d818461462a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146c482614699565b9050919050565b6146d4816146b9565b81146146df57600080fd5b50565b6000813590506146f1816146cb565b92915050565b6000819050919050565b61470a816146f7565b811461471557600080fd5b50565b60008135905061472781614701565b92915050565b600080604083850312156147445761474361468f565b5b6000614752858286016146e2565b925050602061476385828601614718565b9150509250929050565b60008115159050919050565b6147828161476d565b82525050565b600060208201905061479d6000830184614779565b92915050565b6000602082840312156147b9576147b861468f565b5b60006147c7848285016146e2565b91505092915050565b6000819050919050565b60006147f56147f06147eb84614699565b6147d0565b614699565b9050919050565b6000614807826147da565b9050919050565b6000614819826147fc565b9050919050565b6148298161480e565b82525050565b60006020820190506148446000830184614820565b92915050565b614853816146f7565b82525050565b600060208201905061486e600083018461484a565b92915050565b60006020828403121561488a5761488961468f565b5b600061489884828501614718565b91505092915050565b6000806000606084860312156148ba576148b961468f565b5b60006148c8868287016146e2565b93505060206148d9868287016146e2565b92505060406148ea86828701614718565b9150509250925092565b6148fd816146b9565b82525050565b600060208201905061491860008301846148f4565b92915050565b600060ff82169050919050565b6149348161491e565b82525050565b600060208201905061494f600083018461492b565b92915050565b61495e8161476d565b811461496957600080fd5b50565b60008135905061497b81614955565b92915050565b60008060006060848603121561499a5761499961468f565b5b60006149a886828701614718565b93505060206149b986828701614718565b92505060406149ca8682870161496c565b9150509250925092565b600080604083850312156149eb576149ea61468f565b5b60006149f9858286016146e2565b9250506020614a0a8582860161496c565b9150509250929050565b600080600060608486031215614a2d57614a2c61468f565b5b6000614a3b86828701614718565b9350506020614a4c86828701614718565b9250506040614a5d86828701614718565b9150509250925092565b600060208284031215614a7d57614a7c61468f565b5b6000614a8b8482850161496c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614ad182614619565b810181811067ffffffffffffffff82111715614af057614aef614a99565b5b80604052505050565b6000614b03614685565b9050614b0f8282614ac8565b919050565b600067ffffffffffffffff821115614b2f57614b2e614a99565b5b602082029050602081019050919050565b600080fd5b6000614b5082614699565b9050919050565b614b6081614b45565b8114614b6b57600080fd5b50565b600081359050614b7d81614b57565b92915050565b6000614b96614b9184614b14565b614af9565b90508083825260208201905060208402830185811115614bb957614bb8614b40565b5b835b81811015614be25780614bce8882614b6e565b845260208401935050602081019050614bbb565b5050509392505050565b600082601f830112614c0157614c00614a94565b5b8135614c11848260208601614b83565b91505092915050565b600060208284031215614c3057614c2f61468f565b5b600082013567ffffffffffffffff811115614c4e57614c4d614694565b5b614c5a84828501614bec565b91505092915050565b60008060408385031215614c7a57614c7961468f565b5b6000614c88858286016146e2565b9250506020614c99858286016146e2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cea57607f821691505b602082108103614cfd57614cfc614ca3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d396020836145de565b9150614d4482614d03565b602082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614da9826146f7565b9150614db4836146f7565b9250828202614dc2816146f7565b91508282048414831517614dd957614dd8614d6f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e1a826146f7565b9150614e25836146f7565b925082614e3557614e34614de0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e9c602f836145de565b9150614ea782614e40565b604082019050919050565b60006020820190508181036000830152614ecb81614e8f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f2e6028836145de565b9150614f3982614ed2565b604082019050919050565b60006020820190508181036000830152614f5d81614f21565b9050919050565b6000614f6f826146f7565b9150614f7a836146f7565b9250828201905080821115614f9257614f91614d6f565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ff46033836145de565b9150614fff82614f98565b604082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150866030836145de565b91506150918261502a565b604082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006150f2601d836145de565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151846039836145de565b915061518f82615128565b604082019050919050565b600060208201905081810360008301526151b381615177565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152166025836145de565b9150615221826151ba565b604082019050919050565b6000602082019050818103600083015261524581615209565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152a86024836145de565b91506152b38261524c565b604082019050919050565b600060208201905081810360008301526152d78161529b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615318826147fc565b9050919050565b6153288161530d565b82525050565b6000602082019050615343600083018461531f565b92915050565b60008151905061535881614701565b92915050565b6000602082840312156153745761537361468f565b5b600061538284828501615349565b91505092915050565b6000615396826146f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036153c8576153c7614d6f565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061542f6035836145de565b915061543a826153d3565b604082019050919050565b6000602082019050818103600083015261545e81615422565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006154c16034836145de565b91506154cc82615465565b604082019050919050565b600060208201905081810360008301526154f0816154b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155536026836145de565b915061555e826154f7565b604082019050919050565b6000602082019050818103600083015261558281615546565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006155bf6020836145de565b91506155ca82615589565b602082019050919050565b600060208201905081810360008301526155ee816155b2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615651602a836145de565b915061565c826155f5565b604082019050919050565b6000602082019050818103600083015261568081615644565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156e36024836145de565b91506156ee82615687565b604082019050919050565b60006020820190508181036000830152615712816156d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006157756022836145de565b915061578082615719565b604082019050919050565b600060208201905081810360008301526157a481615768565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158076025836145de565b9150615812826157ab565b604082019050919050565b60006020820190508181036000830152615836816157fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158996023836145de565b91506158a48261583d565b604082019050919050565b600060208201905081810360008301526158c88161588c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006159056016836145de565b9150615910826158cf565b602082019050919050565b60006020820190508181036000830152615934816158f8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159bd6049836145de565b91506159c88261593b565b606082019050919050565b600060208201905081810360008301526159ec816159b0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a4f6035836145de565b9150615a5a826159f3565b604082019050919050565b60006020820190508181036000830152615a7e81615a42565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615abb6013836145de565b9150615ac682615a85565b602082019050919050565b60006020820190508181036000830152615aea81615aae565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b4d6036836145de565b9150615b5882615af1565b604082019050919050565b60006020820190508181036000830152615b7c81615b40565b9050919050565b6000615b8e826146f7565b9150615b99836146f7565b9250828203905081811115615bb157615bb0614d6f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c136026836145de565b9150615c1e82615bb7565b604082019050919050565b60006020820190508181036000830152615c4281615c06565b9050919050565b600081905092915050565b50565b6000615c64600083615c49565b9150615c6f82615c54565b600082019050919050565b6000615c8582615c57565b9150819050919050565b6000606082019050615ca4600083018661484a565b615cb1602083018561484a565b615cbe604083018461484a565b949350505050565b600081519050615cd5816146cb565b92915050565b600060208284031215615cf157615cf061468f565b5b6000615cff84828501615cc6565b91505092915050565b6000819050919050565b6000615d2d615d28615d2384615d08565b6147d0565b6146f7565b9050919050565b615d3d81615d12565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d78816146b9565b82525050565b6000615d8a8383615d6f565b60208301905092915050565b6000602082019050919050565b6000615dae82615d43565b615db88185615d4e565b9350615dc383615d5f565b8060005b83811015615df4578151615ddb8882615d7e565b9750615de683615d96565b925050600181019050615dc7565b5085935050505092915050565b600060a082019050615e16600083018861484a565b615e236020830187615d34565b8181036040830152615e358186615da3565b9050615e4460608301856148f4565b615e51608083018461484a565b9695505050505050565b600060c082019050615e7060008301896148f4565b615e7d602083018861484a565b615e8a6040830187615d34565b615e976060830186615d34565b615ea460808301856148f4565b615eb160a083018461484a565b979650505050505050565b600080600060608486031215615ed557615ed461468f565b5b6000615ee386828701615349565b9350506020615ef486828701615349565b9250506040615f0586828701615349565b915050925092509256fea2646970667358221220089a0f56dc73e84cfcefc813b7d6304f1e2c96a872f38e00e322e711d5d2450464736f6c63430008120033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c68639f014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614663565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061472d565b610f85565b6040516104279190614788565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147a3565b610fa3565b6040516104649190614788565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f919061482f565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba9190614859565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147a3565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e9190614859565b60405180910390f35b34801561052357600080fd5b5061052c611132565b6040516105399190614859565b60405180910390f35b34801561054e57600080fd5b50610557611138565b6040516105649190614859565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f9190614859565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614874565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148a1565b611253565b6040516105f59190614788565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614903565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b9190614859565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614788565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a1919061493a565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061472d565b611373565b6040516106de9190614788565b60405180910390f35b3480156106f357600080fd5b506106fc61141f565b6040516107099190614903565b60405180910390f35b34801561071e57600080fd5b50610727611443565b6040516107349190614788565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147a3565b611456565b6040516107719190614788565b60405180910390f35b34801561078657600080fd5b5061078f6114ac565b60405161079c9190614859565b60405180910390f35b3480156107b157600080fd5b506107ba6114b2565b6040516107c79190614788565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147a3565b6114c5565b6040516108049190614859565b60405180910390f35b34801561081957600080fd5b5061082261150d565b005b34801561083057600080fd5b5061084b60048036038101906108469190614981565b611595565b005b34801561085957600080fd5b506108626116d5565b60405161086f9190614788565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149d4565b611775565b005b3480156108ad57600080fd5b506108b661184c565b6040516108c39190614903565b60405180910390f35b3480156108d857600080fd5b506108e1611872565b6040516108ee9190614859565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a14565b611878565b005b34801561092c57600080fd5b50610935611977565b005b34801561094357600080fd5b5061094c611a32565b6040516109599190614903565b60405180910390f35b34801561096e57600080fd5b50610977611a5c565b6040516109849190614903565b60405180910390f35b34801561099957600080fd5b506109a2611a82565b6040516109af9190614859565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a67565b611a88565b005b3480156109ed57600080fd5b506109f6611b21565b604051610a039190614663565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149d4565b611bb3565b005b348015610a4157600080fd5b50610a4a611ccb565b604051610a579190614859565b60405180910390f35b348015610a6c57600080fd5b50610a75611cd1565b604051610a829190614859565b60405180910390f35b348015610a9757600080fd5b50610aa0611cd7565b604051610aad9190614859565b60405180910390f35b348015610ac257600080fd5b50610acb611cdd565b604051610ad89190614859565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b03919061472d565b611ce3565b604051610b159190614788565b60405180910390f35b348015610b2a57600080fd5b50610b33611dce565b604051610b409190614859565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061472d565b611dd4565b604051610b7d9190614788565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147a3565b611df2565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147a3565b611f2e565b604051610be39190614788565b60405180910390f35b348015610bf857600080fd5b50610c01611f4e565b604051610c0e9190614788565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149d4565b611f61565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a14565b612086565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614874565b612185565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614c1a565b612294565b005b348015610cc757600080fd5b50610cd06123f3565b604051610cdd9190614788565b60405180910390f35b348015610cf257600080fd5b50610cfb612406565b604051610d089190614859565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614874565b61240c565b604051610d459190614788565b60405180910390f35b348015610d5a57600080fd5b50610d63612561565b604051610d709190614859565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614c63565b612567565b604051610dad9190614859565b60405180910390f35b348015610dc257600080fd5b50610dcb6125ee565b604051610dd89190614859565b60405180910390f35b348015610ded57600080fd5b50610df66125f4565b604051610e039190614788565b60405180910390f35b348015610e1857600080fd5b50610e21612694565b604051610e2e9190614859565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147a3565b61269a565b005b348015610e6c57600080fd5b50610e75612791565b604051610e829190614859565b60405180910390f35b348015610e9757600080fd5b50610ea0612797565b604051610ead9190614859565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614874565b61279d565b604051610eea9190614788565b60405180910390f35b606060038054610f0290614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614cd2565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f92612a75565b8484612a7d565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ff8612a75565b73ffffffffffffffffffffffffffffffffffffffff16611016611a32565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614d4f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c612a75565b73ffffffffffffffffffffffffffffffffffffffff1661116a611a32565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d4f565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614d9e565b6111ea9190614e0f565b6111f49190614e0f565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614eb2565b60405180910390fd5b670de0b6b3a76400008161124a9190614d9e565b60088190555050565b6000611260848484612c46565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614f44565b60405180910390fd5b61133f85611337612a75565b858403612a7d565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611415611380612a75565b84846001600061138e612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614f64565b612a7d565b6001905092915050565b7f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611515612a75565b73ffffffffffffffffffffffffffffffffffffffff16611533611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614d4f565b60405180910390fd5b61159360006139db565b565b61159d612a75565b73ffffffffffffffffffffffffffffffffffffffff166115bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890614d4f565b60405180910390fd5b610258831015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d9061500a565b60405180910390fd5b6103e88211158015611669575060008210155b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061509c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116df612a75565b73ffffffffffffffffffffffffffffffffffffffff166116fd611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614d4f565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177d612a75565b73ffffffffffffffffffffffffffffffffffffffff1661179b611a32565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614d4f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611880612a75565b73ffffffffffffffffffffffffffffffffffffffff1661189e611a32565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90614d4f565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191c9190614f64565b6119269190614f64565b60148190555060196014541115611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990615108565b60405180910390fd5b505050565b61197f612a75565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a32565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614d4f565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a90612a75565b73ffffffffffffffffffffffffffffffffffffffff16611aae611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614d4f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b3090614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90614cd2565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b611bbb612a75565b73ffffffffffffffffffffffffffffffffffffffff16611bd9611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614d4f565b60405180910390fd5b7f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb49061519a565b60405180910390fd5b611cc78282613aa1565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cf2612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061522c565b60405180910390fd5b611dc3611dba612a75565b85858403612a7d565b600191505092915050565b600e5481565b6000611de8611de1612a75565b8484612c46565b6001905092915050565b611dfa612a75565b73ffffffffffffffffffffffffffffffffffffffff16611e18611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590614d4f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f69612a75565b73ffffffffffffffffffffffffffffffffffffffff16611f87611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614d4f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161207a9190614788565b60405180910390a25050565b61208e612a75565b73ffffffffffffffffffffffffffffffffffffffff166120ac611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614d4f565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461212a9190614f64565b6121349190614f64565b60188190555060606018541115612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790615108565b60405180910390fd5b505050565b61218d612a75565b73ffffffffffffffffffffffffffffffffffffffff166121ab611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614d4f565b60405180910390fd5b670de0b6b3a76400006103e86005612217610fe6565b6122219190614d9e565b61222b9190614e0f565b6122359190614e0f565b811015612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906152be565b60405180910390fd5b670de0b6b3a76400008161228b9190614d9e565b600a8190555050565b61229c612a75565b73ffffffffffffffffffffffffffffffffffffffff166122ba611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230790614d4f565b60405180910390fd5b60005b81518110156123ef5760003073ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061234d5761234c6152de565b5b60200260200101516040518263ffffffff1660e01b8152600401612371919061532e565b602060405180830381865afa15801561238e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b2919061535e565b90506123db8383815181106123ca576123c96152de565b5b602002602001015161dead83613b42565b5080806123e79061538b565b915050612313565b5050565b601360009054906101000a900460ff1681565b60085481565b6000612416612a75565b73ffffffffffffffffffffffffffffffffffffffff16612434611a32565b73ffffffffffffffffffffffffffffffffffffffff161461248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614d4f565b60405180910390fd5b620186a06001612498610fe6565b6124a29190614d9e565b6124ac9190614e0f565b8210156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590615445565b60405180910390fd5b6103e860056124fb610fe6565b6125059190614d9e565b61250f9190614e0f565b821115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906154d7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125fe612a75565b73ffffffffffffffffffffffffffffffffffffffff1661261c611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990614d4f565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126a2612a75565b73ffffffffffffffffffffffffffffffffffffffff166126c0611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614d4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90615569565b60405180910390fd5b61278e816139db565b50565b601a5481565b600a5481565b60006127a7612a75565b73ffffffffffffffffffffffffffffffffffffffff166127c5611a32565b73ffffffffffffffffffffffffffffffffffffffff161461281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614d4f565b60405180910390fd5b600f5460105461282b9190614f64565b421161286c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612863906155d5565b60405180910390fd5b6103e88211156128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a890615667565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf6040518263ffffffff1660e01b81526004016129139190614903565b602060405180830381865afa158015612930573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612954919061535e565b9050600061297f6127106129718685613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156129b8576129b77f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf61dead83613b42565b5b60007f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2557600080fd5b505af1158015612a39573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae3906156f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b529061578b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c399190614859565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac9061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b906158af565b60405180910390fd5b60008103612d3d57612d3883836000613b42565b6139d6565b601160009054906101000a900460ff161561340057612d5a611a32565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc85750612d98611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e015750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e3b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e545750600560149054906101000a900460ff16155b156133ff57601160019054906101000a900460ff16612f4e57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f449061591b565b60405180910390fd5b5b601360009054906101000a900460ff161561311657612f6b611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ff257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561304a57507f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131155743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c7906159d3565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b95750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326057600854811115613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa90615a65565b60405180910390fd5b600a5461320f836114c5565b8261321a9190614f64565b111561325b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325290615ad1565b60405180910390fd5b6133fe565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133035750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133525760085481111561334d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334490615b63565b60405180910390fd5b6133fd565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133fc57600a546133af836114c5565b826133ba9190614f64565b11156133fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f290615ad1565b60405180910390fd5b5b5b5b5b5b600061340b306114c5565b9050600060095482101590508080156134305750601160029054906101000a900460ff165b80156134495750600560149054906101000a900460ff16155b801561349f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134f55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561354b5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358f576001600560146101000a81548160ff021916908315150217905550613573613ded565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135f55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561360d5750600c60009054906101000a900460ff165b80156136285750600d54600e546136249190614f64565b4210155b801561367e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561368d5761368b6140d4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137435750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561374d57600090505b600081156139c657602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b057506000601854115b1561387d576137dd60646137cf60185488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601854601a54826137f09190614d9e565b6137fa9190614e0f565b601d600082825461380b9190614f64565b92505081905550601854601b54826138239190614d9e565b61382d9190614e0f565b601e600082825461383e9190614f64565b92505081905550601854601954826138569190614d9e565b6138609190614e0f565b601c60008282546138719190614f64565b925050819055506139a2565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138d857506000601454115b156139a15761390560646138f760145488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601454601654826139189190614d9e565b6139229190614e0f565b601d60008282546139339190614f64565b925050819055506014546017548261394b9190614d9e565b6139559190614e0f565b601e60008282546139669190614f64565b925050819055506014546015548261397e9190614d9e565b6139889190614e0f565b601c60008282546139999190614f64565b925050819055505b5b60008111156139b7576139b6873083613b42565b5b80856139c39190615b83565b94505b6139d1878787613b42565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba89061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c17906158af565b60405180910390fd5b613c2b83838361429a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca890615c29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d449190614f64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613da89190614859565b60405180910390a3613dbb84848461429f565b50505050565b60008183613dcf9190614d9e565b905092915050565b60008183613de59190614e0f565b905092915050565b6000613df8306114c5565b90506000601e54601c54601d54613e0f9190614f64565b613e199190614f64565b9050600080831480613e2b5750600082145b15613e38575050506140d2565b6014600954613e479190614d9e565b831115613e60576014600954613e5d9190614d9e565b92505b6000600283601d5486613e739190614d9e565b613e7d9190614e0f565b613e879190614e0f565b90506000613e9e82866142a490919063ffffffff16565b90506000479050613eae826142ba565b6000613ec382476142a490919063ffffffff16565b90506000613eee87613ee0601c5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000613f1988613f0b601e5486613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000818385613f2a9190615b83565b613f349190615b83565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f9490615c7a565b60006040518083038185875af1925050503d8060008114613fd1576040519150601f19603f3d011682016040523d82523d6000602084013e613fd6565b606091505b505080985050600087118015613fec5750600081115b1561403957613ffb87826144f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161403093929190615c8f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161407f90615c7a565b60006040518083038185875af1925050503d80600081146140bc576040519150601f19603f3d011682016040523d82523d6000602084013e6140c1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf6040518263ffffffff1660e01b81526004016141389190614903565b602060405180830381865afa158015614155573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614179919061535e565b905060006141a6612710614198600b5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156141df576141de7f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf61dead83613b42565b5b60007f000000000000000000000000d27731f2366b2684424d47778252a8ca9cec0ccf90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561424c57600080fd5b505af1158015614260573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142b29190615b83565b905092915050565b6000600267ffffffffffffffff8111156142d7576142d6614a99565b5b6040519080825280602002602001820160405280156143055781602001602082028036833780820191505090505b509050308160008151811061431d5761431c6152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143e69190615cdb565b816001815181106143fa576143f96152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061445f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a7d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144c1959493929190615e01565b600060405180830381600087803b1580156144db57600080fd5b505af11580156144ef573d6000803e3d6000fd5b505050505050565b614522307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a7d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161458996959493929190615e5b565b60606040518083038185885af11580156145a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145cc9190615ebc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561460d5780820151818401526020810190506145f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000614635826145d3565b61463f81856145de565b935061464f8185602086016145ef565b61465881614619565b840191505092915050565b6000602082019050818103600083015261467d818461462a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146c482614699565b9050919050565b6146d4816146b9565b81146146df57600080fd5b50565b6000813590506146f1816146cb565b92915050565b6000819050919050565b61470a816146f7565b811461471557600080fd5b50565b60008135905061472781614701565b92915050565b600080604083850312156147445761474361468f565b5b6000614752858286016146e2565b925050602061476385828601614718565b9150509250929050565b60008115159050919050565b6147828161476d565b82525050565b600060208201905061479d6000830184614779565b92915050565b6000602082840312156147b9576147b861468f565b5b60006147c7848285016146e2565b91505092915050565b6000819050919050565b60006147f56147f06147eb84614699565b6147d0565b614699565b9050919050565b6000614807826147da565b9050919050565b6000614819826147fc565b9050919050565b6148298161480e565b82525050565b60006020820190506148446000830184614820565b92915050565b614853816146f7565b82525050565b600060208201905061486e600083018461484a565b92915050565b60006020828403121561488a5761488961468f565b5b600061489884828501614718565b91505092915050565b6000806000606084860312156148ba576148b961468f565b5b60006148c8868287016146e2565b93505060206148d9868287016146e2565b92505060406148ea86828701614718565b9150509250925092565b6148fd816146b9565b82525050565b600060208201905061491860008301846148f4565b92915050565b600060ff82169050919050565b6149348161491e565b82525050565b600060208201905061494f600083018461492b565b92915050565b61495e8161476d565b811461496957600080fd5b50565b60008135905061497b81614955565b92915050565b60008060006060848603121561499a5761499961468f565b5b60006149a886828701614718565b93505060206149b986828701614718565b92505060406149ca8682870161496c565b9150509250925092565b600080604083850312156149eb576149ea61468f565b5b60006149f9858286016146e2565b9250506020614a0a8582860161496c565b9150509250929050565b600080600060608486031215614a2d57614a2c61468f565b5b6000614a3b86828701614718565b9350506020614a4c86828701614718565b9250506040614a5d86828701614718565b9150509250925092565b600060208284031215614a7d57614a7c61468f565b5b6000614a8b8482850161496c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614ad182614619565b810181811067ffffffffffffffff82111715614af057614aef614a99565b5b80604052505050565b6000614b03614685565b9050614b0f8282614ac8565b919050565b600067ffffffffffffffff821115614b2f57614b2e614a99565b5b602082029050602081019050919050565b600080fd5b6000614b5082614699565b9050919050565b614b6081614b45565b8114614b6b57600080fd5b50565b600081359050614b7d81614b57565b92915050565b6000614b96614b9184614b14565b614af9565b90508083825260208201905060208402830185811115614bb957614bb8614b40565b5b835b81811015614be25780614bce8882614b6e565b845260208401935050602081019050614bbb565b5050509392505050565b600082601f830112614c0157614c00614a94565b5b8135614c11848260208601614b83565b91505092915050565b600060208284031215614c3057614c2f61468f565b5b600082013567ffffffffffffffff811115614c4e57614c4d614694565b5b614c5a84828501614bec565b91505092915050565b60008060408385031215614c7a57614c7961468f565b5b6000614c88858286016146e2565b9250506020614c99858286016146e2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cea57607f821691505b602082108103614cfd57614cfc614ca3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d396020836145de565b9150614d4482614d03565b602082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614da9826146f7565b9150614db4836146f7565b9250828202614dc2816146f7565b91508282048414831517614dd957614dd8614d6f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e1a826146f7565b9150614e25836146f7565b925082614e3557614e34614de0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e9c602f836145de565b9150614ea782614e40565b604082019050919050565b60006020820190508181036000830152614ecb81614e8f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f2e6028836145de565b9150614f3982614ed2565b604082019050919050565b60006020820190508181036000830152614f5d81614f21565b9050919050565b6000614f6f826146f7565b9150614f7a836146f7565b9250828201905080821115614f9257614f91614d6f565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ff46033836145de565b9150614fff82614f98565b604082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150866030836145de565b91506150918261502a565b604082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006150f2601d836145de565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151846039836145de565b915061518f82615128565b604082019050919050565b600060208201905081810360008301526151b381615177565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152166025836145de565b9150615221826151ba565b604082019050919050565b6000602082019050818103600083015261524581615209565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152a86024836145de565b91506152b38261524c565b604082019050919050565b600060208201905081810360008301526152d78161529b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615318826147fc565b9050919050565b6153288161530d565b82525050565b6000602082019050615343600083018461531f565b92915050565b60008151905061535881614701565b92915050565b6000602082840312156153745761537361468f565b5b600061538284828501615349565b91505092915050565b6000615396826146f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036153c8576153c7614d6f565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061542f6035836145de565b915061543a826153d3565b604082019050919050565b6000602082019050818103600083015261545e81615422565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006154c16034836145de565b91506154cc82615465565b604082019050919050565b600060208201905081810360008301526154f0816154b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155536026836145de565b915061555e826154f7565b604082019050919050565b6000602082019050818103600083015261558281615546565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006155bf6020836145de565b91506155ca82615589565b602082019050919050565b600060208201905081810360008301526155ee816155b2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615651602a836145de565b915061565c826155f5565b604082019050919050565b6000602082019050818103600083015261568081615644565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156e36024836145de565b91506156ee82615687565b604082019050919050565b60006020820190508181036000830152615712816156d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006157756022836145de565b915061578082615719565b604082019050919050565b600060208201905081810360008301526157a481615768565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158076025836145de565b9150615812826157ab565b604082019050919050565b60006020820190508181036000830152615836816157fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158996023836145de565b91506158a48261583d565b604082019050919050565b600060208201905081810360008301526158c88161588c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006159056016836145de565b9150615910826158cf565b602082019050919050565b60006020820190508181036000830152615934816158f8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159bd6049836145de565b91506159c88261593b565b606082019050919050565b600060208201905081810360008301526159ec816159b0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a4f6035836145de565b9150615a5a826159f3565b604082019050919050565b60006020820190508181036000830152615a7e81615a42565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615abb6013836145de565b9150615ac682615a85565b602082019050919050565b60006020820190508181036000830152615aea81615aae565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b4d6036836145de565b9150615b5882615af1565b604082019050919050565b60006020820190508181036000830152615b7c81615b40565b9050919050565b6000615b8e826146f7565b9150615b99836146f7565b9250828203905081811115615bb157615bb0614d6f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c136026836145de565b9150615c1e82615bb7565b604082019050919050565b60006020820190508181036000830152615c4281615c06565b9050919050565b600081905092915050565b50565b6000615c64600083615c49565b9150615c6f82615c54565b600082019050919050565b6000615c8582615c57565b9150819050919050565b6000606082019050615ca4600083018661484a565b615cb1602083018561484a565b615cbe604083018461484a565b949350505050565b600081519050615cd5816146cb565b92915050565b600060208284031215615cf157615cf061468f565b5b6000615cff84828501615cc6565b91505092915050565b6000819050919050565b6000615d2d615d28615d2384615d08565b6147d0565b6146f7565b9050919050565b615d3d81615d12565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d78816146b9565b82525050565b6000615d8a8383615d6f565b60208301905092915050565b6000602082019050919050565b6000615dae82615d43565b615db88185615d4e565b9350615dc383615d5f565b8060005b83811015615df4578151615ddb8882615d7e565b9750615de683615d96565b925050600181019050615dc7565b5085935050505092915050565b600060a082019050615e16600083018861484a565b615e236020830187615d34565b8181036040830152615e358186615da3565b9050615e4460608301856148f4565b615e51608083018461484a565b9695505050505050565b600060c082019050615e7060008301896148f4565b615e7d602083018861484a565b615e8a6040830187615d34565b615e976060830186615d34565b615ea460808301856148f4565b615eb160a083018461484a565b979650505050505050565b600080600060608486031215615ed557615ed461468f565b5b6000615ee386828701615349565b9350506020615ef486828701615349565b9250506040615f0586828701615349565b915050925092509256fea2646970667358221220089a0f56dc73e84cfcefc813b7d6304f1e2c96a872f38e00e322e711d5d2450464736f6c63430008120033

Deployed Bytecode Sourcemap

32232:19769:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9653:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11820:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33855:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32304:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10773:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41010:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32869:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32684:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33639:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33599;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38324:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12471:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32407:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32779:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32740:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10615:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13372:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32362:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32967:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41175:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33454:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33047:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10944:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2888:103;;;;;;;;;;;;;:::i;:::-;;49583:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37432:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38871:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32499:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33347;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39242:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37225:155;;;;;;;;;;;;;:::i;:::-;;2237:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32536:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33489:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39134:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9872:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40263:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33421:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32923:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33679:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33565:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14090:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32831:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11284:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40771:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34076:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33007:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40073:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39653:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38607:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41339:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33265:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32569:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37819:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33313:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11522:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32611:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37614:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33384:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3146:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33527:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32651:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50942:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9653:100;9707:13;9740:5;9733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9653:100;:::o;11820:169::-;11903:4;11920:39;11929:12;:10;:12::i;:::-;11943:7;11952:6;11920:8;:39::i;:::-;11977:4;11970:11;;11820:169;;;;:::o;33855:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32304:51::-;;;:::o;10773:108::-;10834:7;10861:12;;10854:19;;10773:108;:::o;41010:157::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41117:9:::1;;;;;;;;;;;41089:38;;41106:9;41089:38;;;;;;;;;;;;41150:9;41138;;:21;;;;;;;;;;;;;;;;;;41010:157:::0;:::o;32869:47::-;;;;:::o;32684:36::-;;;;:::o;33639:33::-;;;;:::o;33599:::-;;;;:::o;38324:275::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38461:4:::1;38453;38448:1;38432:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38431:26;;;;:::i;:::-;38430:35;;;;:::i;:::-;38420:6;:45;;38398:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38584:6;38574;:17;;;;:::i;:::-;38551:20;:40;;;;38324:275:::0;:::o;12471:492::-;12611:4;12628:36;12638:6;12646:9;12657:6;12628:9;:36::i;:::-;12677:24;12704:11;:19;12716:6;12704:19;;;;;;;;;;;;;;;:33;12724:12;:10;:12::i;:::-;12704:33;;;;;;;;;;;;;;;;12677:60;;12776:6;12756:16;:26;;12748:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12863:57;12872:6;12880:12;:10;:12::i;:::-;12913:6;12894:16;:25;12863:8;:57::i;:::-;12951:4;12944:11;;;12471:492;;;;;:::o;32407:53::-;32453:6;32407:53;:::o;32779:45::-;;;;:::o;32740:32::-;;;;;;;;;;;;;:::o;10615:93::-;10673:5;10698:2;10691:9;;10615:93;:::o;13372:215::-;13460:4;13477:80;13486:12;:10;:12::i;:::-;13500:7;13546:10;13509:11;:25;13521:12;:10;:12::i;:::-;13509:25;;;;;;;;;;;;;;;:34;13535:7;13509:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13477:8;:80::i;:::-;13575:4;13568:11;;13372:215;;;;:::o;32362:38::-;;;:::o;32967:33::-;;;;;;;;;;;;;:::o;41175:126::-;41241:4;41265:19;:28;41285:7;41265:28;;;;;;;;;;;;;;;;;;;;;;;;;41258:35;;41175:126;;;:::o;33454:28::-;;;;:::o;33047:31::-;;;;;;;;;;;;;:::o;10944:127::-;11018:7;11045:9;:18;11055:7;11045:18;;;;;;;;;;;;;;;;11038:25;;10944:127;;;:::o;2888:103::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2953:30:::1;2980:1;2953:18;:30::i;:::-;2888:103::o:0;49583:555::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49785:3:::1;49762:19;:26;;49740:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49912:4;49900:8;:16;;:33;;;;;49932:1;49920:8;:13;;49900:33;49878:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50038:19;50020:15;:37;;;;50087:8;50068:16;:27;;;;50122:8;50106:13;;:24;;;;;;;;;;;;;;;;;;49583:555:::0;;;:::o;37432:121::-;37484:4;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37518:5:::1;37501:14;;:22;;;;;;;;;;;;;;;;;;37541:4;37534:11;;37432:121:::0;:::o;38871:167::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39026:4:::1;38984:31;:39;39016:6;38984:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38871:167:::0;;:::o;32499:30::-;;;;;;;;;;;;;:::o;33347:::-;;;;:::o;39242:403::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39410:13:::1;39392:15;:31;;;;39452:13;39434:15;:31;;;;39488:7;39476:9;:19;;;;39557:9;;39539:15;;39521;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39506:12;:60;;;;39601:2;39585:12;;:18;;39577:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39242:403:::0;;;:::o;37225:155::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37296:4:::1;37280:13;;:20;;;;;;;;;;;;;;;;;;37325:4;37311:11;;:18;;;;;;;;;;;;;;;;;;37357:15;37340:14;:32;;;;37225:155::o:0;2237:87::-;2283:7;2310:6;;;;;;;;;;;2303:13;;2237:87;:::o;32536:24::-;;;;;;;;;;;;;:::o;33489:31::-;;;;:::o;39134:100::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39219:7:::1;39205:11;;:21;;;;;;;;;;;;;;;;;;39134:100:::0;:::o;9872:104::-;9928:13;9961:7;9954:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9872:104;:::o;40263:304::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40407:13:::1;40399:21;;:4;:21;;::::0;40377:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40518:41;40547:4;40553:5;40518:28;:41::i;:::-;40263:304:::0;;:::o;33421:24::-;;;;:::o;32923:35::-;;;;:::o;33679:27::-;;;;:::o;33565:25::-;;;;:::o;14090:413::-;14183:4;14200:24;14227:11;:25;14239:12;:10;:12::i;:::-;14227:25;;;;;;;;;;;;;;;:34;14253:7;14227:34;;;;;;;;;;;;;;;;14200:61;;14300:15;14280:16;:35;;14272:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14393:67;14402:12;:10;:12::i;:::-;14416:7;14444:15;14425:16;:34;14393:8;:67::i;:::-;14491:4;14484:11;;;14090:413;;;;:::o;32831:29::-;;;;:::o;11284:175::-;11370:4;11387:42;11397:12;:10;:12::i;:::-;11411:9;11422:6;11387:9;:42::i;:::-;11447:4;11440:11;;11284:175;;;;:::o;40771:231::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40931:15:::1;;;;;;;;;;;40888:59;;40911:18;40888:59;;;;;;;;;;;;40976:18;40958:15;;:36;;;;;;;;;;;;;;;;;;40771:231:::0;:::o;34076:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33007:33::-;;;;;;;;;;;;;:::o;40073:182::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40189:8:::1;40158:19;:28;40178:7;40158:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40229:7;40213:34;;;40238:8;40213:34;;;;;;:::i;:::-;;;;;;;;40073:182:::0;;:::o;39653:412::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39823:13:::1;39804:16;:32;;;;39866:13;39847:16;:32;;;;39903:7;39890:10;:20;;;;39975:10;;39956:16;;39937;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;39921:13;:64;;;;40021:2;40004:13;;:19;;39996:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39653:412:::0;;;:::o;38607:256::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38747:4:::1;38739;38734:1;38718:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38717:26;;;;:::i;:::-;38716:35;;;;:::i;:::-;38706:6;:45;;38684:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38848:6;38838;:17;;;;:::i;:::-;38826:9;:29;;;;38607:256:::0;:::o;41339:281::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41426:6:::1;41421:189;41440:7;:14;41436:1;:18;41421:189;;;41476:20;41499:4;:14;;;41514:7;41522:1;41514:10;;;;;;;;:::i;:::-;;;;;;;;41499:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41476:49;;41540:58;41556:7;41564:1;41556:10;;;;;;;;:::i;:::-;;;;;;;;41576:6;41585:12;41540:15;:58::i;:::-;41461:149;41456:3;;;;;:::i;:::-;;;;41421:189;;;;41339:281:::0;:::o;33265:39::-;;;;;;;;;;;;;:::o;32569:35::-;;;;:::o;37819:497::-;37927:4;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38006:6:::1;38001:1;37985:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37984:28;;;;:::i;:::-;37971:9;:41;;37949:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38161:4;38156:1;38140:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38139:26;;;;:::i;:::-;38126:9;:39;;38104:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38277:9;38256:18;:30;;;;38304:4;38297:11;;37819:497:::0;;;:::o;33313:27::-;;;;:::o;11522:151::-;11611:7;11638:11;:18;11650:5;11638:18;;;;;;;;;;;;;;;:27;11657:7;11638:27;;;;;;;;;;;;;;;;11631:34;;11522:151;;;;:::o;32611:33::-;;;;:::o;37614:135::-;37674:4;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37714:5:::1;37691:20;;:28;;;;;;;;;;;;;;;;;;37737:4;37730:11;;37614:135:::0;:::o;33384:30::-;;;;:::o;3146:201::-;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3255:1:::1;3235:22;;:8;:22;;::::0;3227:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3311:28;3330:8;3311:18;:28::i;:::-;3146:201:::0;:::o;33527:31::-;;;;:::o;32651:24::-;;;;:::o;50942:1056::-;51053:4;2468:12;:10;:12::i;:::-;2457:23;;:7;:5;:7::i;:::-;:23;;;2449:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51138:19:::1;;51115:20;;:42;;;;:::i;:::-;51097:15;:60;51075:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51247:4;51236:7;:15;;51228:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51332:15;51309:20;:38;;;;51402:28;51433:4;:14;;;51448:13;51433:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51402:60;;51512:20;51535:44;51573:5;51535:33;51560:7;51535:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51512:67;;51699:1;51684:12;:16;51680:110;;;51717:61;51733:13;51756:6;51765:12;51717:15;:61::i;:::-;51680:110;51865:19;51902:13;51865:51;;51927:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51954:14;;;;;;;;;;51986:4;51979:11;;;;;50942:1056:::0;;;:::o;910:98::-;963:7;990:10;983:17;;910:98;:::o;17774:380::-;17927:1;17910:19;;:5;:19;;;17902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18008:1;17989:21;;:7;:21;;;17981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18092:6;18062:11;:18;18074:5;18062:18;;;;;;;;;;;;;;;:27;18081:7;18062:27;;;;;;;;;;;;;;;:36;;;;18130:7;18114:32;;18123:5;18114:32;;;18139:6;18114:32;;;;;;:::i;:::-;;;;;;;;17774:380;;;:::o;41678:5011::-;41826:1;41810:18;;:4;:18;;;41802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41903:1;41889:16;;:2;:16;;;41881:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41972:1;41962:6;:11;41958:93;;41990:28;42006:4;42012:2;42016:1;41990:15;:28::i;:::-;42033:7;;41958:93;42067:14;;;;;;;;;;;42063:2487;;;42128:7;:5;:7::i;:::-;42120:15;;:4;:15;;;;:49;;;;;42162:7;:5;:7::i;:::-;42156:13;;:2;:13;;;;42120:49;:86;;;;;42204:1;42190:16;;:2;:16;;;;42120:86;:128;;;;;42241:6;42227:21;;:2;:21;;;;42120:128;:158;;;;;42270:8;;;;;;;;;;;42269:9;42120:158;42098:2441;;;42318:13;;;;;;;;;;;42313:223;;42390:19;:25;42410:4;42390:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42419:19;:23;42439:2;42419:23;;;;;;;;;;;;;;;;;;;;;;;;;42390:52;42356:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42313:223;42692:20;;;;;;;;;;;42688:641;;;42773:7;:5;:7::i;:::-;42767:13;;:2;:13;;;;:72;;;;;42823:15;42809:30;;:2;:30;;;;42767:72;:129;;;;;42882:13;42868:28;;:2;:28;;;;42767:129;42737:573;;;43060:12;42985:28;:39;43014:9;42985:39;;;;;;;;;;;;;;;;:87;42947:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43274:12;43232:28;:39;43261:9;43232:39;;;;;;;;;;;;;;;:54;;;;42737:573;42688:641;43403:25;:31;43429:4;43403:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43460:31;:35;43492:2;43460:35;;;;;;;;;;;;;;;;;;;;;;;;;43459:36;43403:92;43377:1147;;;43582:20;;43572:6;:30;;43538:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43790:9;;43773:13;43783:2;43773:9;:13::i;:::-;43764:6;:22;;;;:::i;:::-;:35;;43730:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43377:1147;;;43968:25;:29;43994:2;43968:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44023:31;:37;44055:4;44023:37;;;;;;;;;;;;;;;;;;;;;;;;;44022:38;43968:92;43942:582;;;44147:20;;44137:6;:30;;44103:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43942:582;;;44304:31;:35;44336:2;44304:35;;;;;;;;;;;;;;;;;;;;;;;;;44299:225;;44424:9;;44407:13;44417:2;44407:9;:13::i;:::-;44398:6;:22;;;;:::i;:::-;:35;;44364:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44299:225;43942:582;43377:1147;42098:2441;42063:2487;44562:28;44593:24;44611:4;44593:9;:24::i;:::-;44562:55;;44630:12;44669:18;;44645:20;:42;;44630:57;;44718:7;:35;;;;;44742:11;;;;;;;;;;;44718:35;:61;;;;;44771:8;;;;;;;;;;;44770:9;44718:61;:110;;;;;44797:25;:31;44823:4;44797:31;;;;;;;;;;;;;;;;;;;;;;;;;44796:32;44718:110;:153;;;;;44846:19;:25;44866:4;44846:25;;;;;;;;;;;;;;;;;;;;;;;;;44845:26;44718:153;:194;;;;;44889:19;:23;44909:2;44889:23;;;;;;;;;;;;;;;;;;;;;;;;;44888:24;44718:194;44700:326;;;44950:4;44939:8;;:15;;;;;;;;;;;;;;;;;;44971:10;:8;:10::i;:::-;45009:5;44998:8;;:16;;;;;;;;;;;;;;;;;;44700:326;45057:8;;;;;;;;;;;45056:9;:55;;;;;45082:25;:29;45108:2;45082:29;;;;;;;;;;;;;;;;;;;;;;;;;45056:55;:85;;;;;45128:13;;;;;;;;;;;45056:85;:153;;;;;45194:15;;45177:14;;:32;;;;:::i;:::-;45158:15;:51;;45056:153;:196;;;;;45227:19;:25;45247:4;45227:25;;;;;;;;;;;;;;;;;;;;;;;;;45226:26;45056:196;45038:282;;;45279:29;:27;:29::i;:::-;;45038:282;45332:12;45348:8;;;;;;;;;;;45347:9;45332:24;;45458:19;:25;45478:4;45458:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45487:19;:23;45507:2;45487:23;;;;;;;;;;;;;;;;;;;;;;;;;45458:52;45454:100;;;45537:5;45527:15;;45454:100;45566:12;45671:7;45667:969;;;45723:25;:29;45749:2;45723:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45772:1;45756:13;;:17;45723:50;45719:768;;;45801:34;45831:3;45801:25;45812:13;;45801:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45794:41;;45904:13;;45884:16;;45877:4;:23;;;;:::i;:::-;45876:41;;;;:::i;:::-;45854:18;;:63;;;;;;;:::i;:::-;;;;;;;;45974:13;;45960:10;;45953:4;:17;;;;:::i;:::-;45952:35;;;;:::i;:::-;45936:12;;:51;;;;;;;:::i;:::-;;;;;;;;46056:13;;46036:16;;46029:4;:23;;;;:::i;:::-;46028:41;;;;:::i;:::-;46006:18;;:63;;;;;;;:::i;:::-;;;;;;;;45719:768;;;46131:25;:31;46157:4;46131:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46181:1;46166:12;;:16;46131:51;46127:360;;;46210:33;46239:3;46210:24;46221:12;;46210:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46203:40;;46311:12;;46292:15;;46285:4;:22;;;;:::i;:::-;46284:39;;;;:::i;:::-;46262:18;;:61;;;;;;;:::i;:::-;;;;;;;;46379:12;;46366:9;;46359:4;:16;;;;:::i;:::-;46358:33;;;;:::i;:::-;46342:12;;:49;;;;;;;:::i;:::-;;;;;;;;46459:12;;46440:15;;46433:4;:22;;;;:::i;:::-;46432:39;;;;:::i;:::-;46410:18;;:61;;;;;;;:::i;:::-;;;;;;;;46127:360;45719:768;46514:1;46507:4;:8;46503:91;;;46536:42;46552:4;46566;46573;46536:15;:42::i;:::-;46503:91;46620:4;46610:14;;;;;:::i;:::-;;;45667:969;46648:33;46664:4;46670:2;46674:6;46648:15;:33::i;:::-;41791:4898;;;;41678:5011;;;;:::o;3507:191::-;3581:16;3600:6;;;;;;;;;;;3581:25;;3626:8;3617:6;;:17;;;;;;;;;;;;;;;;;;3681:8;3650:40;;3671:8;3650:40;;;;;;;;;;;;3570:128;3507:191;:::o;40575:188::-;40692:5;40658:25;:31;40684:4;40658:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40749:5;40715:40;;40743:4;40715:40;;;;;;;;;;;;40575:188;;:::o;14993:733::-;15151:1;15133:20;;:6;:20;;;15125:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15235:1;15214:23;;:9;:23;;;15206:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15290:47;15311:6;15319:9;15330:6;15290:20;:47::i;:::-;15350:21;15374:9;:17;15384:6;15374:17;;;;;;;;;;;;;;;;15350:41;;15427:6;15410:13;:23;;15402:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15548:6;15532:13;:22;15512:9;:17;15522:6;15512:17;;;;;;;;;;;;;;;:42;;;;15600:6;15576:9;:20;15586:9;15576:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15641:9;15624:35;;15633:6;15624:35;;;15652:6;15624:35;;;;;;:::i;:::-;;;;;;;;15672:46;15692:6;15700:9;15711:6;15672:19;:46::i;:::-;15114:612;14993:733;;;:::o;23227:98::-;23285:7;23316:1;23312;:5;;;;:::i;:::-;23305:12;;23227:98;;;;:::o;23626:::-;23684:7;23715:1;23711;:5;;;;:::i;:::-;23704:12;;23626:98;;;;:::o;47819:1756::-;47858:23;47884:24;47902:4;47884:9;:24::i;:::-;47858:50;;47919:25;48015:12;;47981:18;;47947;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47919:108;;48038:12;48086:1;48067:15;:20;:46;;;;48112:1;48091:17;:22;48067:46;48063:85;;;48130:7;;;;;48063:85;48203:2;48182:18;;:23;;;;:::i;:::-;48164:15;:41;48160:115;;;48261:2;48240:18;;:23;;;;:::i;:::-;48222:41;;48160:115;48336:23;48449:1;48416:17;48381:18;;48363:15;:36;;;;:::i;:::-;48362:71;;;;:::i;:::-;:88;;;;:::i;:::-;48336:114;;48461:26;48490:36;48510:15;48490;:19;;:36;;;;:::i;:::-;48461:65;;48539:25;48567:21;48539:49;;48601:36;48618:18;48601:16;:36::i;:::-;48650:18;48671:44;48697:17;48671:21;:25;;:44;;;;:::i;:::-;48650:65;;48728:23;48754:81;48807:17;48754:34;48769:18;;48754:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48728:107;;48846:17;48866:51;48899:17;48866:28;48881:12;;48866:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48846:71;;48930:23;48987:9;48969:15;48956:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48930:66;;49030:1;49009:18;:22;;;;49063:1;49042:18;:22;;;;49090:1;49075:12;:16;;;;49126:9;;;;;;;;;;;49118:23;;49149:9;49118:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49104:59;;;;;49198:1;49180:15;:19;:42;;;;;49221:1;49203:15;:19;49180:42;49176:278;;;49239:46;49252:15;49269;49239:12;:46::i;:::-;49305:137;49338:18;49375:15;49409:18;;49305:137;;;;;;;;:::i;:::-;;;;;;;;49176:278;49488:15;;;;;;;;;;;49480:29;;49531:21;49480:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49466:101;;;;;47847:1728;;;;;;;;;;47819:1756;:::o;50146:788::-;50203:4;50237:15;50220:14;:32;;;;50307:28;50338:4;:14;;;50353:13;50338:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50307:60;;50417:20;50440:77;50501:5;50440:42;50465:16;;50440:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50417:100;;50637:1;50622:12;:16;50618:110;;;50655:61;50671:13;50694:6;50703:12;50655:15;:61::i;:::-;50618:110;50803:19;50840:13;50803:51;;50865:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50892:12;;;;;;;;;;50922:4;50915:11;;;;;50146:788;:::o;18754:125::-;;;;:::o;19483:124::-;;;;:::o;22870:98::-;22928:7;22959:1;22955;:5;;;;:::i;:::-;22948:12;;22870:98;;;;:::o;46697:589::-;46823:21;46861:1;46847:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46823:40;;46892:4;46874;46879:1;46874:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46918:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46908:4;46913:1;46908:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46953:62;46970:4;46985:15;47003:11;46953:8;:62::i;:::-;47054:15;:66;;;47135:11;47161:1;47205:4;47232;47252:15;47054:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46752:534;46697:589;:::o;47294:517::-;47442:62;47459:4;47474:15;47492:11;47442:8;:62::i;:::-;47547:15;:31;;;47586:9;47619:4;47639:11;47665:1;47708;32453:6;47777:15;47547:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47294: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:117::-;9270:1;9267;9260:12;9284:180;9332:77;9329:1;9322:88;9429:4;9426:1;9419:15;9453:4;9450:1;9443:15;9470:281;9553:27;9575:4;9553:27;:::i;:::-;9545:6;9541:40;9683:6;9671:10;9668:22;9647:18;9635:10;9632:34;9629:62;9626:88;;;9694:18;;:::i;:::-;9626:88;9734:10;9730:2;9723:22;9513:238;9470:281;;:::o;9757:129::-;9791:6;9818:20;;:::i;:::-;9808:30;;9847:33;9875:4;9867:6;9847:33;:::i;:::-;9757:129;;;:::o;9892:319::-;9977:4;10067:18;10059:6;10056:30;10053:56;;;10089:18;;:::i;:::-;10053:56;10139:4;10131:6;10127:17;10119:25;;10199:4;10193;10189:15;10181:23;;9892:319;;;:::o;10217:117::-;10326:1;10323;10316:12;10340:104;10385:7;10414:24;10432:5;10414:24;:::i;:::-;10403:35;;10340:104;;;:::o;10450:138::-;10531:32;10557:5;10531:32;:::i;:::-;10524:5;10521:43;10511:71;;10578:1;10575;10568:12;10511:71;10450:138;:::o;10594:155::-;10648:5;10686:6;10673:20;10664:29;;10702:41;10737:5;10702:41;:::i;:::-;10594:155;;;;:::o;10780:734::-;10884:5;10909:89;10925:72;10990:6;10925:72;:::i;:::-;10909:89;:::i;:::-;10900:98;;11018:5;11047:6;11040:5;11033:21;11081:4;11074:5;11070:16;11063:23;;11134:4;11126:6;11122:17;11114:6;11110:30;11163:3;11155:6;11152:15;11149:122;;;11182:79;;:::i;:::-;11149:122;11297:6;11280:228;11314:6;11309:3;11306:15;11280:228;;;11389:3;11418:45;11459:3;11447:10;11418:45;:::i;:::-;11413:3;11406:58;11493:4;11488:3;11484:14;11477:21;;11356:152;11340:4;11335:3;11331:14;11324:21;;11280:228;;;11284:21;10890:624;;10780:734;;;;;:::o;11545:386::-;11624:5;11673:3;11666:4;11658:6;11654:17;11650:27;11640:122;;11681:79;;:::i;:::-;11640:122;11798:6;11785:20;11823:102;11921:3;11913:6;11906:4;11898:6;11894:17;11823:102;:::i;:::-;11814:111;;11630:301;11545:386;;;;:::o;11937:555::-;12029:6;12078:2;12066:9;12057:7;12053:23;12049:32;12046:119;;;12084:79;;:::i;:::-;12046:119;12232:1;12221:9;12217:17;12204:31;12262:18;12254:6;12251:30;12248:117;;;12284:79;;:::i;:::-;12248:117;12389:86;12467:7;12458:6;12447:9;12443:22;12389:86;:::i;:::-;12379:96;;12175:310;11937:555;;;;:::o;12498:474::-;12566:6;12574;12623:2;12611:9;12602:7;12598:23;12594:32;12591:119;;;12629:79;;:::i;:::-;12591:119;12749:1;12774:53;12819:7;12810:6;12799:9;12795:22;12774:53;:::i;:::-;12764:63;;12720:117;12876:2;12902:53;12947:7;12938:6;12927:9;12923:22;12902:53;:::i;:::-;12892:63;;12847:118;12498:474;;;;;:::o;12978:180::-;13026:77;13023:1;13016:88;13123:4;13120:1;13113:15;13147:4;13144:1;13137:15;13164:320;13208:6;13245:1;13239:4;13235:12;13225:22;;13292:1;13286:4;13282:12;13313:18;13303:81;;13369:4;13361:6;13357:17;13347:27;;13303:81;13431:2;13423:6;13420:14;13400:18;13397:38;13394:84;;13450:18;;:::i;:::-;13394:84;13215:269;13164:320;;;:::o;13490:182::-;13630:34;13626:1;13618:6;13614:14;13607:58;13490:182;:::o;13678:366::-;13820:3;13841:67;13905:2;13900:3;13841:67;:::i;:::-;13834:74;;13917:93;14006:3;13917:93;:::i;:::-;14035:2;14030:3;14026:12;14019:19;;13678:366;;;:::o;14050:419::-;14216:4;14254:2;14243:9;14239:18;14231:26;;14303:9;14297:4;14293:20;14289:1;14278:9;14274:17;14267:47;14331:131;14457:4;14331:131;:::i;:::-;14323:139;;14050:419;;;:::o;14475:180::-;14523:77;14520:1;14513:88;14620:4;14617:1;14610:15;14644:4;14641:1;14634:15;14661:410;14701:7;14724:20;14742:1;14724:20;:::i;:::-;14719:25;;14758:20;14776:1;14758:20;:::i;:::-;14753:25;;14813:1;14810;14806:9;14835:30;14853:11;14835:30;:::i;:::-;14824:41;;15014:1;15005:7;15001:15;14998:1;14995:22;14975:1;14968:9;14948:83;14925:139;;15044:18;;:::i;:::-;14925:139;14709:362;14661:410;;;;:::o;15077:180::-;15125:77;15122:1;15115:88;15222:4;15219:1;15212:15;15246:4;15243:1;15236:15;15263:185;15303:1;15320:20;15338:1;15320:20;:::i;:::-;15315:25;;15354:20;15372:1;15354:20;:::i;:::-;15349:25;;15393:1;15383:35;;15398:18;;:::i;:::-;15383:35;15440:1;15437;15433:9;15428:14;;15263:185;;;;:::o;15454:234::-;15594:34;15590:1;15582:6;15578:14;15571:58;15663:17;15658:2;15650:6;15646:15;15639:42;15454:234;:::o;15694:366::-;15836:3;15857:67;15921:2;15916:3;15857:67;:::i;:::-;15850:74;;15933:93;16022:3;15933:93;:::i;:::-;16051:2;16046:3;16042:12;16035:19;;15694:366;;;:::o;16066:419::-;16232:4;16270:2;16259:9;16255:18;16247:26;;16319:9;16313:4;16309:20;16305:1;16294:9;16290:17;16283:47;16347:131;16473:4;16347:131;:::i;:::-;16339:139;;16066:419;;;:::o;16491:227::-;16631:34;16627:1;16619:6;16615:14;16608:58;16700:10;16695:2;16687:6;16683:15;16676:35;16491:227;:::o;16724:366::-;16866:3;16887:67;16951:2;16946:3;16887:67;:::i;:::-;16880:74;;16963:93;17052:3;16963:93;:::i;:::-;17081:2;17076:3;17072:12;17065:19;;16724:366;;;:::o;17096:419::-;17262:4;17300:2;17289:9;17285:18;17277:26;;17349:9;17343:4;17339:20;17335:1;17324:9;17320:17;17313:47;17377:131;17503:4;17377:131;:::i;:::-;17369:139;;17096:419;;;:::o;17521:191::-;17561:3;17580:20;17598:1;17580:20;:::i;:::-;17575:25;;17614:20;17632:1;17614:20;:::i;:::-;17609:25;;17657:1;17654;17650:9;17643:16;;17678:3;17675:1;17672:10;17669:36;;;17685:18;;:::i;:::-;17669:36;17521:191;;;;:::o;17718:238::-;17858:34;17854:1;17846:6;17842:14;17835:58;17927:21;17922:2;17914:6;17910:15;17903:46;17718:238;:::o;17962:366::-;18104:3;18125:67;18189:2;18184:3;18125:67;:::i;:::-;18118:74;;18201:93;18290:3;18201:93;:::i;:::-;18319:2;18314:3;18310:12;18303:19;;17962:366;;;:::o;18334:419::-;18500:4;18538:2;18527:9;18523:18;18515:26;;18587:9;18581:4;18577:20;18573:1;18562:9;18558:17;18551:47;18615:131;18741:4;18615:131;:::i;:::-;18607:139;;18334:419;;;:::o;18759:235::-;18899:34;18895:1;18887:6;18883:14;18876:58;18968:18;18963:2;18955:6;18951:15;18944:43;18759:235;:::o;19000:366::-;19142:3;19163:67;19227:2;19222:3;19163:67;:::i;:::-;19156:74;;19239:93;19328:3;19239:93;:::i;:::-;19357:2;19352:3;19348:12;19341:19;;19000:366;;;:::o;19372:419::-;19538:4;19576:2;19565:9;19561:18;19553:26;;19625:9;19619:4;19615:20;19611:1;19600:9;19596:17;19589:47;19653:131;19779:4;19653:131;:::i;:::-;19645:139;;19372:419;;;:::o;19797:179::-;19937:31;19933:1;19925:6;19921:14;19914:55;19797:179;:::o;19982:366::-;20124:3;20145:67;20209:2;20204:3;20145:67;:::i;:::-;20138:74;;20221:93;20310:3;20221:93;:::i;:::-;20339:2;20334:3;20330:12;20323:19;;19982:366;;;:::o;20354:419::-;20520:4;20558:2;20547:9;20543:18;20535:26;;20607:9;20601:4;20597:20;20593:1;20582:9;20578:17;20571:47;20635:131;20761:4;20635:131;:::i;:::-;20627:139;;20354:419;;;:::o;20779:244::-;20919:34;20915:1;20907:6;20903:14;20896:58;20988:27;20983:2;20975:6;20971:15;20964:52;20779:244;:::o;21029:366::-;21171:3;21192:67;21256:2;21251:3;21192:67;:::i;:::-;21185:74;;21268:93;21357:3;21268:93;:::i;:::-;21386:2;21381:3;21377:12;21370:19;;21029:366;;;:::o;21401:419::-;21567:4;21605:2;21594:9;21590:18;21582:26;;21654:9;21648:4;21644:20;21640:1;21629:9;21625:17;21618:47;21682:131;21808:4;21682:131;:::i;:::-;21674:139;;21401:419;;;:::o;21826:224::-;21966:34;21962:1;21954:6;21950:14;21943:58;22035:7;22030:2;22022:6;22018:15;22011:32;21826:224;:::o;22056:366::-;22198:3;22219:67;22283:2;22278:3;22219:67;:::i;:::-;22212:74;;22295:93;22384:3;22295:93;:::i;:::-;22413:2;22408:3;22404:12;22397:19;;22056:366;;;:::o;22428:419::-;22594:4;22632:2;22621:9;22617:18;22609:26;;22681:9;22675:4;22671:20;22667:1;22656:9;22652:17;22645:47;22709:131;22835:4;22709:131;:::i;:::-;22701:139;;22428:419;;;:::o;22853:223::-;22993:34;22989:1;22981:6;22977:14;22970:58;23062:6;23057:2;23049:6;23045:15;23038:31;22853:223;:::o;23082:366::-;23224:3;23245:67;23309:2;23304:3;23245:67;:::i;:::-;23238:74;;23321:93;23410:3;23321:93;:::i;:::-;23439:2;23434:3;23430:12;23423:19;;23082:366;;;:::o;23454:419::-;23620:4;23658:2;23647:9;23643:18;23635:26;;23707:9;23701:4;23697:20;23693:1;23682:9;23678:17;23671:47;23735:131;23861:4;23735:131;:::i;:::-;23727:139;;23454:419;;;:::o;23879:180::-;23927:77;23924:1;23917:88;24024:4;24021:1;24014:15;24048:4;24045:1;24038:15;24065:134;24123:9;24156:37;24187:5;24156:37;:::i;:::-;24143:50;;24065:134;;;:::o;24205:147::-;24300:45;24339:5;24300:45;:::i;:::-;24295:3;24288:58;24205:147;;:::o;24358:238::-;24459:4;24497:2;24486:9;24482:18;24474:26;;24510:79;24586:1;24575:9;24571:17;24562:6;24510:79;:::i;:::-;24358:238;;;;:::o;24602:143::-;24659:5;24690:6;24684:13;24675:22;;24706:33;24733:5;24706:33;:::i;:::-;24602:143;;;;:::o;24751:351::-;24821:6;24870:2;24858:9;24849:7;24845:23;24841:32;24838:119;;;24876:79;;:::i;:::-;24838:119;24996:1;25021:64;25077:7;25068:6;25057:9;25053:22;25021:64;:::i;:::-;25011:74;;24967:128;24751:351;;;;:::o;25108:233::-;25147:3;25170:24;25188:5;25170:24;:::i;:::-;25161:33;;25216:66;25209:5;25206:77;25203:103;;25286:18;;:::i;:::-;25203:103;25333:1;25326:5;25322:13;25315:20;;25108:233;;;:::o;25347:240::-;25487:34;25483:1;25475:6;25471:14;25464:58;25556:23;25551:2;25543:6;25539:15;25532:48;25347:240;:::o;25593:366::-;25735:3;25756:67;25820:2;25815:3;25756:67;:::i;:::-;25749:74;;25832:93;25921:3;25832:93;:::i;:::-;25950:2;25945:3;25941:12;25934:19;;25593:366;;;:::o;25965:419::-;26131:4;26169:2;26158:9;26154:18;26146:26;;26218:9;26212:4;26208:20;26204:1;26193:9;26189:17;26182:47;26246:131;26372:4;26246:131;:::i;:::-;26238:139;;25965:419;;;:::o;26390:239::-;26530:34;26526:1;26518:6;26514:14;26507:58;26599:22;26594:2;26586:6;26582:15;26575:47;26390:239;:::o;26635:366::-;26777:3;26798:67;26862:2;26857:3;26798:67;:::i;:::-;26791:74;;26874:93;26963:3;26874:93;:::i;:::-;26992:2;26987:3;26983:12;26976:19;;26635:366;;;:::o;27007:419::-;27173:4;27211:2;27200:9;27196:18;27188:26;;27260:9;27254:4;27250:20;27246:1;27235:9;27231:17;27224:47;27288:131;27414:4;27288:131;:::i;:::-;27280:139;;27007:419;;;:::o;27432:225::-;27572:34;27568:1;27560:6;27556:14;27549:58;27641:8;27636:2;27628:6;27624:15;27617:33;27432:225;:::o;27663:366::-;27805:3;27826:67;27890:2;27885:3;27826:67;:::i;:::-;27819:74;;27902:93;27991:3;27902:93;:::i;:::-;28020:2;28015:3;28011:12;28004:19;;27663:366;;;:::o;28035:419::-;28201:4;28239:2;28228:9;28224:18;28216:26;;28288:9;28282:4;28278:20;28274:1;28263:9;28259:17;28252:47;28316:131;28442:4;28316:131;:::i;:::-;28308:139;;28035:419;;;:::o;28460:182::-;28600:34;28596:1;28588:6;28584:14;28577:58;28460:182;:::o;28648:366::-;28790:3;28811:67;28875:2;28870:3;28811:67;:::i;:::-;28804:74;;28887:93;28976:3;28887:93;:::i;:::-;29005:2;29000:3;28996:12;28989:19;;28648:366;;;:::o;29020:419::-;29186:4;29224:2;29213:9;29209:18;29201:26;;29273:9;29267:4;29263:20;29259:1;29248:9;29244:17;29237:47;29301:131;29427:4;29301:131;:::i;:::-;29293:139;;29020:419;;;:::o;29445:229::-;29585:34;29581:1;29573:6;29569:14;29562:58;29654:12;29649:2;29641:6;29637:15;29630:37;29445:229;:::o;29680:366::-;29822:3;29843:67;29907:2;29902:3;29843:67;:::i;:::-;29836:74;;29919:93;30008:3;29919:93;:::i;:::-;30037:2;30032:3;30028:12;30021:19;;29680:366;;;:::o;30052:419::-;30218:4;30256:2;30245:9;30241:18;30233:26;;30305:9;30299:4;30295:20;30291:1;30280:9;30276:17;30269:47;30333:131;30459:4;30333:131;:::i;:::-;30325:139;;30052:419;;;:::o;30477:223::-;30617:34;30613:1;30605:6;30601:14;30594:58;30686:6;30681:2;30673:6;30669:15;30662:31;30477:223;:::o;30706:366::-;30848:3;30869:67;30933:2;30928:3;30869:67;:::i;:::-;30862:74;;30945:93;31034:3;30945:93;:::i;:::-;31063:2;31058:3;31054:12;31047:19;;30706:366;;;:::o;31078:419::-;31244:4;31282:2;31271:9;31267:18;31259:26;;31331:9;31325:4;31321:20;31317:1;31306:9;31302:17;31295:47;31359:131;31485:4;31359:131;:::i;:::-;31351:139;;31078:419;;;:::o;31503:221::-;31643:34;31639:1;31631:6;31627:14;31620:58;31712:4;31707:2;31699:6;31695:15;31688:29;31503:221;:::o;31730:366::-;31872:3;31893:67;31957:2;31952:3;31893:67;:::i;:::-;31886:74;;31969:93;32058:3;31969:93;:::i;:::-;32087:2;32082:3;32078:12;32071:19;;31730:366;;;:::o;32102:419::-;32268:4;32306:2;32295:9;32291:18;32283:26;;32355:9;32349:4;32345:20;32341:1;32330:9;32326:17;32319:47;32383:131;32509:4;32383:131;:::i;:::-;32375:139;;32102:419;;;:::o;32527:224::-;32667:34;32663:1;32655:6;32651:14;32644:58;32736:7;32731:2;32723:6;32719:15;32712:32;32527:224;:::o;32757:366::-;32899:3;32920:67;32984:2;32979:3;32920:67;:::i;:::-;32913:74;;32996:93;33085:3;32996:93;:::i;:::-;33114:2;33109:3;33105:12;33098:19;;32757:366;;;:::o;33129:419::-;33295:4;33333:2;33322:9;33318:18;33310:26;;33382:9;33376:4;33372:20;33368:1;33357:9;33353:17;33346:47;33410:131;33536:4;33410:131;:::i;:::-;33402:139;;33129:419;;;:::o;33554:222::-;33694:34;33690:1;33682:6;33678:14;33671:58;33763:5;33758:2;33750:6;33746:15;33739:30;33554:222;:::o;33782:366::-;33924:3;33945:67;34009:2;34004:3;33945:67;:::i;:::-;33938:74;;34021:93;34110:3;34021:93;:::i;:::-;34139:2;34134:3;34130:12;34123:19;;33782:366;;;:::o;34154:419::-;34320:4;34358:2;34347:9;34343:18;34335:26;;34407:9;34401:4;34397:20;34393:1;34382:9;34378:17;34371:47;34435:131;34561:4;34435:131;:::i;:::-;34427:139;;34154:419;;;:::o;34579:172::-;34719:24;34715:1;34707:6;34703:14;34696:48;34579:172;:::o;34757:366::-;34899:3;34920:67;34984:2;34979:3;34920:67;:::i;:::-;34913:74;;34996:93;35085:3;34996:93;:::i;:::-;35114:2;35109:3;35105:12;35098:19;;34757:366;;;:::o;35129:419::-;35295:4;35333:2;35322:9;35318:18;35310:26;;35382:9;35376:4;35372:20;35368:1;35357:9;35353:17;35346:47;35410:131;35536:4;35410:131;:::i;:::-;35402:139;;35129:419;;;:::o;35554:297::-;35694:34;35690:1;35682:6;35678:14;35671:58;35763:34;35758:2;35750:6;35746:15;35739:59;35832:11;35827:2;35819:6;35815:15;35808:36;35554:297;:::o;35857:366::-;35999:3;36020:67;36084:2;36079:3;36020:67;:::i;:::-;36013:74;;36096:93;36185:3;36096:93;:::i;:::-;36214:2;36209:3;36205:12;36198:19;;35857:366;;;:::o;36229:419::-;36395:4;36433:2;36422:9;36418:18;36410:26;;36482:9;36476:4;36472:20;36468:1;36457:9;36453:17;36446:47;36510:131;36636:4;36510:131;:::i;:::-;36502:139;;36229:419;;;:::o;36654:240::-;36794:34;36790:1;36782:6;36778:14;36771:58;36863:23;36858:2;36850:6;36846:15;36839:48;36654:240;:::o;36900:366::-;37042:3;37063:67;37127:2;37122:3;37063:67;:::i;:::-;37056:74;;37139:93;37228:3;37139:93;:::i;:::-;37257:2;37252:3;37248:12;37241:19;;36900:366;;;:::o;37272:419::-;37438:4;37476:2;37465:9;37461:18;37453:26;;37525:9;37519:4;37515:20;37511:1;37500:9;37496:17;37489:47;37553:131;37679:4;37553:131;:::i;:::-;37545:139;;37272:419;;;:::o;37697:169::-;37837:21;37833:1;37825:6;37821:14;37814:45;37697:169;:::o;37872:366::-;38014:3;38035:67;38099:2;38094:3;38035:67;:::i;:::-;38028:74;;38111:93;38200:3;38111:93;:::i;:::-;38229:2;38224:3;38220:12;38213:19;;37872:366;;;:::o;38244:419::-;38410:4;38448:2;38437:9;38433:18;38425:26;;38497:9;38491:4;38487:20;38483:1;38472:9;38468:17;38461:47;38525:131;38651:4;38525:131;:::i;:::-;38517:139;;38244:419;;;:::o;38669:241::-;38809:34;38805:1;38797:6;38793:14;38786:58;38878:24;38873:2;38865:6;38861:15;38854:49;38669:241;:::o;38916:366::-;39058:3;39079:67;39143:2;39138:3;39079:67;:::i;:::-;39072:74;;39155:93;39244:3;39155:93;:::i;:::-;39273:2;39268:3;39264:12;39257:19;;38916:366;;;:::o;39288:419::-;39454:4;39492:2;39481:9;39477:18;39469:26;;39541:9;39535:4;39531:20;39527:1;39516:9;39512:17;39505:47;39569:131;39695:4;39569:131;:::i;:::-;39561:139;;39288:419;;;:::o;39713:194::-;39753:4;39773:20;39791:1;39773:20;:::i;:::-;39768:25;;39807:20;39825:1;39807:20;:::i;:::-;39802:25;;39851:1;39848;39844:9;39836:17;;39875:1;39869:4;39866:11;39863:37;;;39880:18;;:::i;:::-;39863:37;39713:194;;;;:::o;39913:225::-;40053:34;40049:1;40041:6;40037:14;40030:58;40122:8;40117:2;40109:6;40105:15;40098:33;39913:225;:::o;40144:366::-;40286:3;40307:67;40371:2;40366:3;40307:67;:::i;:::-;40300:74;;40383:93;40472:3;40383:93;:::i;:::-;40501:2;40496:3;40492:12;40485:19;;40144:366;;;:::o;40516:419::-;40682:4;40720:2;40709:9;40705:18;40697:26;;40769:9;40763:4;40759:20;40755:1;40744:9;40740:17;40733:47;40797:131;40923:4;40797:131;:::i;:::-;40789:139;;40516:419;;;:::o;40941:147::-;41042:11;41079:3;41064:18;;40941:147;;;;:::o;41094:114::-;;:::o;41214:398::-;41373:3;41394:83;41475:1;41470:3;41394:83;:::i;:::-;41387:90;;41486:93;41575:3;41486:93;:::i;:::-;41604:1;41599:3;41595:11;41588:18;;41214:398;;;:::o;41618:379::-;41802:3;41824:147;41967:3;41824:147;:::i;:::-;41817:154;;41988:3;41981:10;;41618:379;;;:::o;42003:442::-;42152:4;42190:2;42179:9;42175:18;42167:26;;42203:71;42271:1;42260:9;42256:17;42247:6;42203:71;:::i;:::-;42284:72;42352:2;42341:9;42337:18;42328:6;42284:72;:::i;:::-;42366;42434:2;42423:9;42419:18;42410:6;42366:72;:::i;:::-;42003:442;;;;;;:::o;42451:143::-;42508:5;42539:6;42533:13;42524:22;;42555:33;42582:5;42555:33;:::i;:::-;42451:143;;;;:::o;42600:351::-;42670:6;42719:2;42707:9;42698:7;42694:23;42690:32;42687:119;;;42725:79;;:::i;:::-;42687:119;42845:1;42870:64;42926:7;42917:6;42906:9;42902:22;42870:64;:::i;:::-;42860:74;;42816:128;42600:351;;;;:::o;42957:85::-;43002:7;43031:5;43020:16;;42957:85;;;:::o;43048:158::-;43106:9;43139:61;43157:42;43166:32;43192:5;43166:32;:::i;:::-;43157:42;:::i;:::-;43139:61;:::i;:::-;43126:74;;43048:158;;;:::o;43212:147::-;43307:45;43346:5;43307:45;:::i;:::-;43302:3;43295:58;43212:147;;:::o;43365:114::-;43432:6;43466:5;43460:12;43450:22;;43365:114;;;:::o;43485:184::-;43584:11;43618:6;43613:3;43606:19;43658:4;43653:3;43649:14;43634:29;;43485:184;;;;:::o;43675:132::-;43742:4;43765:3;43757:11;;43795:4;43790:3;43786:14;43778:22;;43675:132;;;:::o;43813:108::-;43890:24;43908:5;43890:24;:::i;:::-;43885:3;43878:37;43813:108;;:::o;43927:179::-;43996:10;44017:46;44059:3;44051:6;44017:46;:::i;:::-;44095:4;44090:3;44086:14;44072:28;;43927:179;;;;:::o;44112:113::-;44182:4;44214;44209:3;44205:14;44197:22;;44112:113;;;:::o;44261:732::-;44380:3;44409:54;44457:5;44409:54;:::i;:::-;44479:86;44558:6;44553:3;44479:86;:::i;:::-;44472:93;;44589:56;44639:5;44589:56;:::i;:::-;44668:7;44699:1;44684:284;44709:6;44706:1;44703:13;44684:284;;;44785:6;44779:13;44812:63;44871:3;44856:13;44812:63;:::i;:::-;44805:70;;44898:60;44951:6;44898:60;:::i;:::-;44888:70;;44744:224;44731:1;44728;44724:9;44719:14;;44684:284;;;44688:14;44984:3;44977:10;;44385:608;;;44261:732;;;;:::o;44999:831::-;45262:4;45300:3;45289:9;45285:19;45277:27;;45314:71;45382:1;45371:9;45367:17;45358:6;45314:71;:::i;:::-;45395:80;45471:2;45460:9;45456:18;45447:6;45395:80;:::i;:::-;45522:9;45516:4;45512:20;45507:2;45496:9;45492:18;45485:48;45550:108;45653:4;45644:6;45550:108;:::i;:::-;45542:116;;45668:72;45736:2;45725:9;45721:18;45712:6;45668:72;:::i;:::-;45750:73;45818:3;45807:9;45803:19;45794:6;45750:73;:::i;:::-;44999:831;;;;;;;;:::o;45836:807::-;46085:4;46123:3;46112:9;46108:19;46100:27;;46137:71;46205:1;46194:9;46190:17;46181:6;46137:71;:::i;:::-;46218:72;46286:2;46275:9;46271:18;46262:6;46218:72;:::i;:::-;46300:80;46376:2;46365:9;46361:18;46352:6;46300:80;:::i;:::-;46390;46466:2;46455:9;46451:18;46442:6;46390:80;:::i;:::-;46480:73;46548:3;46537:9;46533:19;46524:6;46480:73;:::i;:::-;46563;46631:3;46620:9;46616:19;46607:6;46563:73;:::i;:::-;45836:807;;;;;;;;;:::o;46649:663::-;46737:6;46745;46753;46802:2;46790:9;46781:7;46777:23;46773:32;46770:119;;;46808:79;;:::i;:::-;46770:119;46928:1;46953:64;47009:7;47000:6;46989:9;46985:22;46953:64;:::i;:::-;46943:74;;46899:128;47066:2;47092:64;47148:7;47139:6;47128:9;47124:22;47092:64;:::i;:::-;47082:74;;47037:129;47205:2;47231:64;47287:7;47278:6;47267:9;47263:22;47231:64;:::i;:::-;47221:74;;47176:129;46649:663;;;;;:::o

Swarm Source

ipfs://089a0f56dc73e84cfcefc813b7d6304f1e2c96a872f38e00e322e711d5d24504
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.