ETH Price: $3,335.05 (-3.75%)
Gas: 3 Gwei

Token

SIMP Token (SIMP)
 

Overview

Max Total Supply

1,000,000,000 SIMP

Holders

258

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
177,487.201492958313257459 SIMP

Value
$0.00
0x10f4e8ac00407beb03ddcf9920101d317251bc7e
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:
SIMPToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract SIMPToken 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 treasuryWallet;
    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 buyTreasuryFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

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

    mapping(address => bool) public blacklist;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event treasuryWalletUpdated(
        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("SIMP Token", "SIMP") {
        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 _buyTreasuryFee = 2;
        uint256 _buyLiquidityFee = 6;
        uint256 _buyDevFee = 2;

        uint256 _sellTreasuryFee = 7;
        uint256 _sellLiquidityFee = 6;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 10_000_000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyTreasuryFee = _buyTreasuryFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee + buyDevFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee + sellDevFee;

        treasuryWallet = address(0xef94A60e76EB00296E81515f20da7763340f4a33); // set as treasury wallet
        devWallet = address(0xD2387194268b75281FB08FDAf2Eda7039c68aA3b); // 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;
    }

    function addToBlacklist(address _user) public onlyOwner {
        blacklist[_user] = true;
    }

    function removeFromBlacklist(address _user) public onlyOwner {
        blacklist[_user] = false;
    }

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

    function updateSellFees(
        uint256 _treasuryFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 25, "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 updateTreasuryWallet(address newTreasuryWallet)
    external
    onlyOwner
    {
        emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet);
        treasuryWallet = newTreasuryWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(!blacklist[from], "ERC20: from address is blacklisted");
        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;
                tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForTreasury += (fees * buyTreasuryFee) / 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 +
        tokensForTreasury +
        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 ethForTreasury = ethBalance.mul(tokensForTreasury).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForTreasury - ethForDev;

        tokensForLiquidity = 0;
        tokensForTreasury = 0;
        tokensForDev = 0;

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

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

        (success, ) = address(treasuryWallet).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":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","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":"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","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":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","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":"tokensForTreasury","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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_treasuryFee","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":"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":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600a81526020017f53494d5020546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53494d500000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b1f565b5080600490805190602001906200014792919062000b1f565b5050506200016a6200015e620005df60201b60201c565b620005e760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006ad60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c39565b6040518363ffffffff1660e01b8152600401620002e992919062000c7c565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c39565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006ad60201b60201c565b6200038c60a05160016200079760201b60201c565b60006002905060006006905060006002905060006007905060006006905060006002905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a108b2a2c28029094000000600a81905550612710600582620003f7919062000ce2565b62000403919062000d72565b60098190555086601581905550856016819055508460178190555060175460165460155462000433919062000daa565b6200043f919062000daa565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200046f919062000daa565b6200047b919062000daa565b60188190555073ef94a60e76eb00296e81515f20da7763340f4a33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d2387194268b75281fb08fdaf2eda7039c68aa3b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054d6200053f6200083860201b60201c565b60016200086260201b60201c565b620005603060016200086260201b60201c565b6200057561dead60016200086260201b60201c565b62000597620005896200083860201b60201c565b6001620006ad60201b60201c565b620005aa306001620006ad60201b60201c565b620005bf61dead6001620006ad60201b60201c565b620005d133826200099c60201b60201c565b505050505050505062000fc9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bd620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006e36200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200073c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007339062000e68565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000872620005df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008986200083860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008e89062000e68565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000990919062000ea7565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a069062000f14565b60405180910390fd5b62000a236000838362000b1560201b60201c565b806002600082825462000a37919062000daa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a8e919062000daa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000af5919062000f47565b60405180910390a362000b116000838362000b1a60201b60201c565b5050565b505050565b505050565b82805462000b2d9062000f93565b90600052602060002090601f01602090048101928262000b51576000855562000b9d565b82601f1062000b6c57805160ff191683800117855562000b9d565b8280016001018555821562000b9d579182015b8281111562000b9c57825182559160200191906001019062000b7f565b5b50905062000bac919062000bb0565b5090565b5b8082111562000bcb57600081600090555060010162000bb1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c018262000bd4565b9050919050565b62000c138162000bf4565b811462000c1f57600080fd5b50565b60008151905062000c338162000c08565b92915050565b60006020828403121562000c525762000c5162000bcf565b5b600062000c628482850162000c22565b91505092915050565b62000c768162000bf4565b82525050565b600060408201905062000c93600083018562000c6b565b62000ca2602083018462000c6b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cef8262000ca9565b915062000cfc8362000ca9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d385762000d3762000cb3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d7f8262000ca9565b915062000d8c8362000ca9565b92508262000d9f5762000d9e62000d43565b5b828204905092915050565b600062000db78262000ca9565b915062000dc48362000ca9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dfc5762000dfb62000cb3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e5060208362000e07565b915062000e5d8262000e18565b602082019050919050565b6000602082019050818103600083015262000e838162000e41565b9050919050565b60008115159050919050565b62000ea18162000e8a565b82525050565b600060208201905062000ebe600083018462000e96565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000efc601f8362000e07565b915062000f098262000ec4565b602082019050919050565b6000602082019050818103600083015262000f2f8162000eed565b9050919050565b62000f418162000ca9565b82525050565b600060208201905062000f5e600083018462000f36565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fac57607f821691505b6020821081141562000fc35762000fc262000f64565b5b50919050565b60805160a051615fd4620010516000396000818161159401528181611f90015281816129c401528181612a7b01528181612aa8015281816131790152818161427d01528181614336015261436301526000818161104001528181613121015281816144d9015281816145ba015281816145e10152818161467d01526146a40152615fd46000f3fe6080604052600436106103d25760003560e01c8063809d458d116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610e76578063f637434214610e9f578063f8b45b0514610eca578063f9f92be414610ef5578063fe72b27a14610f32576103d9565b8063dd62ed3e14610db8578063e2f4560514610df5578063e884f26014610e20578063f11a24d314610e4b576103d9565b8063c8c8ebe4116100e7578063c8c8ebe414610cfa578063cc2ffe7c14610d25578063d257b34f14610d50578063d85ba06314610d8d576103d9565b8063c024666814610c54578063c17b5b8c14610c7d578063c18bc19514610ca6578063c876d0b914610ccf576103d9565b80639ec22c0e11610190578063a4c82a001161015f578063a4c82a0014610b84578063a9059cbb14610baf578063b62496f514610bec578063bbc0c74214610c29576103d9565b80639ec22c0e14610ac65780639fccce3214610af1578063a0d82dc514610b1c578063a457c2d714610b47576103d9565b8063924de9b7116101cc578063924de9b714610a1e57806395d89b4114610a475780639a7a23d614610a725780639c3b4fdc14610a9b576103d9565b8063809d458d146109885780638a8c523c146109b15780638da5cb5b146109c85780638ea5220f146109f3576103d9565b806344337ea1116102ed5780636b2fb12411610280578063730c18881161024f578063730c1888146108e2578063751039fc1461090b5780637571336a146109365780638095d5641461095f576103d9565b80636b2fb124146108385780636ddd17131461086357806370a082311461088e578063715018a6146108cb576103d9565b80634fbee193116102bc5780634fbee1931461077c578063537df3b6146107b95780635c068a8c146107e25780636a486a8e1461080d576103d9565b806344337ea1146106d25780634626402b146106fb57806349bd5a5e146107265780634a62bb6514610751576103d9565b80631a8145bb116103655780632c3e486c116103345780632c3e486c146106145780632e82f1a01461063f578063313ce5671461066a5780633950935114610695576103d9565b80631a8145bb14610558578063203e727e1461058357806323b872dd146105ac57806327c8f835146105e9576103d9565b806318160ddd116103a157806318160ddd146104ae5780631816467f146104d9578063184c16c514610502578063199ffc721461052d576103d9565b806306fdde03146103de578063095ea7b31461040957806310d5de53146104465780631694505e14610483576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610f6f565b60405161040091906147ec565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906148a7565b611001565b60405161043d9190614902565b60405180910390f35b34801561045257600080fd5b5061046d6004803603810190610468919061491d565b61101f565b60405161047a9190614902565b60405180910390f35b34801561048f57600080fd5b5061049861103e565b6040516104a591906149a9565b60405180910390f35b3480156104ba57600080fd5b506104c3611062565b6040516104d091906149d3565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb919061491d565b61106c565b005b34801561050e57600080fd5b506105176111a8565b60405161052491906149d3565b60405180910390f35b34801561053957600080fd5b506105426111ae565b60405161054f91906149d3565b60405180910390f35b34801561056457600080fd5b5061056d6111b4565b60405161057a91906149d3565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906149ee565b6111ba565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190614a1b565b6112c9565b6040516105e09190614902565b60405180910390f35b3480156105f557600080fd5b506105fe6113c1565b60405161060b9190614a7d565b60405180910390f35b34801561062057600080fd5b506106296113c7565b60405161063691906149d3565b60405180910390f35b34801561064b57600080fd5b506106546113cd565b6040516106619190614902565b60405180910390f35b34801561067657600080fd5b5061067f6113e0565b60405161068c9190614ab4565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906148a7565b6113e9565b6040516106c99190614902565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061491d565b611495565b005b34801561070757600080fd5b5061071061156c565b60405161071d9190614a7d565b60405180910390f35b34801561073257600080fd5b5061073b611592565b6040516107489190614a7d565b60405180910390f35b34801561075d57600080fd5b506107666115b6565b6040516107739190614902565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e919061491d565b6115c9565b6040516107b09190614902565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061491d565b61161f565b005b3480156107ee57600080fd5b506107f76116f6565b60405161080491906149d3565b60405180910390f35b34801561081957600080fd5b506108226116fc565b60405161082f91906149d3565b60405180910390f35b34801561084457600080fd5b5061084d611702565b60405161085a91906149d3565b60405180910390f35b34801561086f57600080fd5b50610878611708565b6040516108859190614902565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b0919061491d565b61171b565b6040516108c291906149d3565b60405180910390f35b3480156108d757600080fd5b506108e0611763565b005b3480156108ee57600080fd5b5061090960048036038101906109049190614afb565b6117eb565b005b34801561091757600080fd5b5061092061192b565b60405161092d9190614902565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190614b4e565b6119cb565b005b34801561096b57600080fd5b5061098660048036038101906109819190614b8e565b611aa2565b005b34801561099457600080fd5b506109af60048036038101906109aa919061491d565b611ba0565b005b3480156109bd57600080fd5b506109c6611cdc565b005b3480156109d457600080fd5b506109dd611d97565b6040516109ea9190614a7d565b60405180910390f35b3480156109ff57600080fd5b50610a08611dc1565b604051610a159190614a7d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190614be1565b611de7565b005b348015610a5357600080fd5b50610a5c611e80565b604051610a6991906147ec565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a949190614b4e565b611f12565b005b348015610aa757600080fd5b50610ab061202b565b604051610abd91906149d3565b60405180910390f35b348015610ad257600080fd5b50610adb612031565b604051610ae891906149d3565b60405180910390f35b348015610afd57600080fd5b50610b06612037565b604051610b1391906149d3565b60405180910390f35b348015610b2857600080fd5b50610b3161203d565b604051610b3e91906149d3565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b6991906148a7565b612043565b604051610b7b9190614902565b60405180910390f35b348015610b9057600080fd5b50610b9961212e565b604051610ba691906149d3565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd191906148a7565b612134565b604051610be39190614902565b60405180910390f35b348015610bf857600080fd5b50610c136004803603810190610c0e919061491d565b612152565b604051610c209190614902565b60405180910390f35b348015610c3557600080fd5b50610c3e612172565b604051610c4b9190614902565b60405180910390f35b348015610c6057600080fd5b50610c7b6004803603810190610c769190614b4e565b612185565b005b348015610c8957600080fd5b50610ca46004803603810190610c9f9190614b8e565b6122aa565b005b348015610cb257600080fd5b50610ccd6004803603810190610cc891906149ee565b6123a9565b005b348015610cdb57600080fd5b50610ce46124b8565b604051610cf19190614902565b60405180910390f35b348015610d0657600080fd5b50610d0f6124cb565b604051610d1c91906149d3565b60405180910390f35b348015610d3157600080fd5b50610d3a6124d1565b604051610d4791906149d3565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d7291906149ee565b6124d7565b604051610d849190614902565b60405180910390f35b348015610d9957600080fd5b50610da261262c565b604051610daf91906149d3565b60405180910390f35b348015610dc457600080fd5b50610ddf6004803603810190610dda9190614c0e565b612632565b604051610dec91906149d3565b60405180910390f35b348015610e0157600080fd5b50610e0a6126b9565b604051610e1791906149d3565b60405180910390f35b348015610e2c57600080fd5b50610e356126bf565b604051610e429190614902565b60405180910390f35b348015610e5757600080fd5b50610e6061275f565b604051610e6d91906149d3565b60405180910390f35b348015610e8257600080fd5b50610e9d6004803603810190610e98919061491d565b612765565b005b348015610eab57600080fd5b50610eb461285d565b604051610ec191906149d3565b60405180910390f35b348015610ed657600080fd5b50610edf612863565b604051610eec91906149d3565b60405180910390f35b348015610f0157600080fd5b50610f1c6004803603810190610f17919061491d565b612869565b604051610f299190614902565b60405180910390f35b348015610f3e57600080fd5b50610f596004803603810190610f5491906149ee565b612889565b604051610f669190614902565b60405180910390f35b606060038054610f7e90614c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa90614c7d565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b5050505050905090565b600061101561100e612b61565b8484612b69565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b611074612b61565b73ffffffffffffffffffffffffffffffffffffffff16611092611d97565b73ffffffffffffffffffffffffffffffffffffffff16146110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90614cfb565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6111c2612b61565b73ffffffffffffffffffffffffffffffffffffffff166111e0611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614cfb565b60405180910390fd5b670de0b6b3a76400006103e8600161124c611062565b6112569190614d4a565b6112609190614dd3565b61126a9190614dd3565b8110156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614e76565b60405180910390fd5b670de0b6b3a7640000816112c09190614d4a565b60088190555050565b60006112d6848484612d34565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611321612b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890614f08565b60405180910390fd5b6113b5856113ad612b61565b858403612b69565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061148b6113f6612b61565b848460016000611404612b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114869190614f28565b612b69565b6001905092915050565b61149d612b61565b73ffffffffffffffffffffffffffffffffffffffff166114bb611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890614cfb565b60405180910390fd5b6001602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611627612b61565b73ffffffffffffffffffffffffffffffffffffffff16611645611d97565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614cfb565b60405180910390fd5b6000602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60155481565b60185481565b60195481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61176b612b61565b73ffffffffffffffffffffffffffffffffffffffff16611789611d97565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614cfb565b60405180910390fd5b6117e96000613b59565b565b6117f3612b61565b73ffffffffffffffffffffffffffffffffffffffff16611811611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90614cfb565b60405180910390fd5b6102588310156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390614ff0565b60405180910390fd5b6103e882111580156118bf575060008210155b6118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590615082565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6000611935612b61565b73ffffffffffffffffffffffffffffffffffffffff16611953611d97565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090614cfb565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6119d3612b61565b73ffffffffffffffffffffffffffffffffffffffff166119f1611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614cfb565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611aaa612b61565b73ffffffffffffffffffffffffffffffffffffffff16611ac8611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1590614cfb565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611b469190614f28565b611b509190614f28565b601481905550601480541115611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b92906150ee565b60405180910390fd5b505050565b611ba8612b61565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614cfb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ce4612b61565b73ffffffffffffffffffffffffffffffffffffffff16611d02611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90614cfb565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611def612b61565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614cfb565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611e8f90614c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebb90614c7d565b8015611f085780601f10611edd57610100808354040283529160200191611f08565b820191906000526020600020905b815481529060010190602001808311611eeb57829003601f168201915b5050505050905090565b611f1a612b61565b73ffffffffffffffffffffffffffffffffffffffff16611f38611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614cfb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490615180565b60405180910390fd5b6120278282613c1f565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000612052612b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690615212565b60405180910390fd5b61212361211a612b61565b85858403612b69565b600191505092915050565b600e5481565b6000612148612141612b61565b8484612d34565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b61218d612b61565b73ffffffffffffffffffffffffffffffffffffffff166121ab611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614cfb565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161229e9190614902565b60405180910390a25050565b6122b2612b61565b73ffffffffffffffffffffffffffffffffffffffff166122d0611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614cfb565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461234e9190614f28565b6123589190614f28565b601881905550601960185411156123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b9061527e565b60405180910390fd5b505050565b6123b1612b61565b73ffffffffffffffffffffffffffffffffffffffff166123cf611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90614cfb565b60405180910390fd5b670de0b6b3a76400006103e8600561243b611062565b6124459190614d4a565b61244f9190614dd3565b6124599190614dd3565b81101561249b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249290615310565b60405180910390fd5b670de0b6b3a7640000816124af9190614d4a565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b601c5481565b60006124e1612b61565b73ffffffffffffffffffffffffffffffffffffffff166124ff611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254c90614cfb565b60405180910390fd5b620186a06001612563611062565b61256d9190614d4a565b6125779190614dd3565b8210156125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b0906153a2565b60405180910390fd5b6103e860056125c6611062565b6125d09190614d4a565b6125da9190614dd3565b82111561261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261390615434565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006126c9612b61565b73ffffffffffffffffffffffffffffffffffffffff166126e7611d97565b73ffffffffffffffffffffffffffffffffffffffff161461273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490614cfb565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61276d612b61565b73ffffffffffffffffffffffffffffffffffffffff1661278b611d97565b73ffffffffffffffffffffffffffffffffffffffff16146127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890614cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906154c6565b60405180910390fd5b61285a81613b59565b50565b601a5481565b600a5481565b60226020528060005260406000206000915054906101000a900460ff1681565b6000612893612b61565b73ffffffffffffffffffffffffffffffffffffffff166128b1611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe90614cfb565b60405180910390fd5b600f546010546129179190614f28565b4211612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90615532565b60405180910390fd5b6103e882111561299d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612994906155c4565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016129ff9190614a7d565b602060405180830381865afa158015612a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4091906155f9565b90506000612a6b612710612a5d8685613cc090919063ffffffff16565b613cd690919063ffffffff16565b90506000811115612aa457612aa37f000000000000000000000000000000000000000000000000000000000000000061dead83613cec565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b1157600080fd5b505af1158015612b25573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd090615698565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c409061572a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d2791906149d3565b60405180910390a3505050565b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db8906157bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e289061584e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e98906158e0565b60405180910390fd5b6000811415612ebb57612eb683836000613cec565b613b54565b601160009054906101000a900460ff161561357e57612ed8611d97565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f465750612f16611d97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fb9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fd25750600560149054906101000a900460ff16155b1561357d57601160019054906101000a900460ff166130cc57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061308c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6130cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c29061594c565b60405180910390fd5b5b601360009054906101000a900460ff1615613294576130e9611d97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561317057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156131c857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156132935743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324590615a04565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133375750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133de57600854811115613381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337890615a96565b60405180910390fd5b600a5461338d8361171b565b826133989190614f28565b11156133d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d090615b02565b60405180910390fd5b61357c565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134815750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134d0576008548111156134cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c290615b94565b60405180910390fd5b61357b565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661357a57600a5461352d8361171b565b826135389190614f28565b1115613579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357090615b02565b60405180910390fd5b5b5b5b5b5b60006135893061171b565b9050600060095482101590508080156135ae5750601160029054906101000a900460ff165b80156135c75750600560149054906101000a900460ff16155b801561361d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156136735750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156136c95750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561370d576001600560146101000a81548160ff0219169083151502179055506136f1613f6d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156137735750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561378b5750600c60009054906101000a900460ff165b80156137a65750600d54600e546137a29190614f28565b4210155b80156137fc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561380b57613809614254565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138c15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138cb57600090505b60008115613b4457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561392e57506000601854115b156139fb5761395b606461394d60185488613cc090919063ffffffff16565b613cd690919063ffffffff16565b9050601854601a548261396e9190614d4a565b6139789190614dd3565b601d60008282546139899190614f28565b92505081905550601854601b54826139a19190614d4a565b6139ab9190614dd3565b601e60008282546139bc9190614f28565b92505081905550601854601954826139d49190614d4a565b6139de9190614dd3565b601c60008282546139ef9190614f28565b92505081905550613b20565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a5657506000601454115b15613b1f57613a836064613a7560145488613cc090919063ffffffff16565b613cd690919063ffffffff16565b905060145460165482613a969190614d4a565b613aa09190614dd3565b601d6000828254613ab19190614f28565b9250508190555060145460175482613ac99190614d4a565b613ad39190614dd3565b601e6000828254613ae49190614f28565b9250508190555060145460155482613afc9190614d4a565b613b069190614dd3565b601c6000828254613b179190614f28565b925050819055505b5b6000811115613b3557613b34873083613cec565b5b8085613b419190615bb4565b94505b613b4f878787613cec565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613cce9190614d4a565b905092915050565b60008183613ce49190614dd3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d539061584e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc3906158e0565b60405180910390fd5b613dd783838361441a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e5490615c5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ef09190614f28565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613f5491906149d3565b60405180910390a3613f6784848461441f565b50505050565b6000613f783061171b565b90506000601e54601c54601d54613f8f9190614f28565b613f999190614f28565b9050600080831480613fab5750600082145b15613fb857505050614252565b6014600954613fc79190614d4a565b831115613fe0576014600954613fdd9190614d4a565b92505b6000600283601d5486613ff39190614d4a565b613ffd9190614dd3565b6140079190614dd3565b9050600061401e828661442490919063ffffffff16565b9050600047905061402e8261443a565b6000614043824761442490919063ffffffff16565b9050600061406e87614060601c5485613cc090919063ffffffff16565b613cd690919063ffffffff16565b905060006140998861408b601e5486613cc090919063ffffffff16565b613cd690919063ffffffff16565b905060008183856140aa9190615bb4565b6140b49190615bb4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161411490615cab565b60006040518083038185875af1925050503d8060008114614151576040519150601f19603f3d011682016040523d82523d6000602084013e614156565b606091505b50508098505060008711801561416c5750600081115b156141b95761417b8782614677565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516141b093929190615cc0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516141ff90615cab565b60006040518083038185875af1925050503d806000811461423c576040519150601f19603f3d011682016040523d82523d6000602084013e614241565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016142b89190614a7d565b602060405180830381865afa1580156142d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142f991906155f9565b90506000614326612710614318600b5485613cc090919063ffffffff16565b613cd690919063ffffffff16565b9050600081111561435f5761435e7f000000000000000000000000000000000000000000000000000000000000000061dead83613cec565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156143cc57600080fd5b505af11580156143e0573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836144329190615bb4565b905092915050565b6000600267ffffffffffffffff81111561445757614456615cf7565b5b6040519080825280602002602001820160405280156144855781602001602082028036833780820191505090505b509050308160008151811061449d5761449c615d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145669190615d6a565b8160018151811061457a57614579615d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145df307f000000000000000000000000000000000000000000000000000000000000000084612b69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614641959493929190615e90565b600060405180830381600087803b15801561465b57600080fd5b505af115801561466f573d6000803e3d6000fd5b505050505050565b6146a2307f000000000000000000000000000000000000000000000000000000000000000084612b69565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161470996959493929190615eea565b60606040518083038185885af1158015614727573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061474c9190615f4b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561478d578082015181840152602081019050614772565b8381111561479c576000848401525b50505050565b6000601f19601f8301169050919050565b60006147be82614753565b6147c8818561475e565b93506147d881856020860161476f565b6147e1816147a2565b840191505092915050565b6000602082019050818103600083015261480681846147b3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061483e82614813565b9050919050565b61484e81614833565b811461485957600080fd5b50565b60008135905061486b81614845565b92915050565b6000819050919050565b61488481614871565b811461488f57600080fd5b50565b6000813590506148a18161487b565b92915050565b600080604083850312156148be576148bd61480e565b5b60006148cc8582860161485c565b92505060206148dd85828601614892565b9150509250929050565b60008115159050919050565b6148fc816148e7565b82525050565b600060208201905061491760008301846148f3565b92915050565b6000602082840312156149335761493261480e565b5b60006149418482850161485c565b91505092915050565b6000819050919050565b600061496f61496a61496584614813565b61494a565b614813565b9050919050565b600061498182614954565b9050919050565b600061499382614976565b9050919050565b6149a381614988565b82525050565b60006020820190506149be600083018461499a565b92915050565b6149cd81614871565b82525050565b60006020820190506149e860008301846149c4565b92915050565b600060208284031215614a0457614a0361480e565b5b6000614a1284828501614892565b91505092915050565b600080600060608486031215614a3457614a3361480e565b5b6000614a428682870161485c565b9350506020614a538682870161485c565b9250506040614a6486828701614892565b9150509250925092565b614a7781614833565b82525050565b6000602082019050614a926000830184614a6e565b92915050565b600060ff82169050919050565b614aae81614a98565b82525050565b6000602082019050614ac96000830184614aa5565b92915050565b614ad8816148e7565b8114614ae357600080fd5b50565b600081359050614af581614acf565b92915050565b600080600060608486031215614b1457614b1361480e565b5b6000614b2286828701614892565b9350506020614b3386828701614892565b9250506040614b4486828701614ae6565b9150509250925092565b60008060408385031215614b6557614b6461480e565b5b6000614b738582860161485c565b9250506020614b8485828601614ae6565b9150509250929050565b600080600060608486031215614ba757614ba661480e565b5b6000614bb586828701614892565b9350506020614bc686828701614892565b9250506040614bd786828701614892565b9150509250925092565b600060208284031215614bf757614bf661480e565b5b6000614c0584828501614ae6565b91505092915050565b60008060408385031215614c2557614c2461480e565b5b6000614c338582860161485c565b9250506020614c448582860161485c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c9557607f821691505b60208210811415614ca957614ca8614c4e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ce560208361475e565b9150614cf082614caf565b602082019050919050565b60006020820190508181036000830152614d1481614cd8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d5582614871565b9150614d6083614871565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d9957614d98614d1b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dde82614871565b9150614de983614871565b925082614df957614df8614da4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e60602f8361475e565b9150614e6b82614e04565b604082019050919050565b60006020820190508181036000830152614e8f81614e53565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614ef260288361475e565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b6000614f3382614871565b9150614f3e83614871565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f7357614f72614d1b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614fda60338361475e565b9150614fe582614f7e565b604082019050919050565b6000602082019050818103600083015261500981614fcd565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b600061506c60308361475e565b915061507782615010565b604082019050919050565b6000602082019050818103600083015261509b8161505f565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006150d8601d8361475e565b91506150e3826150a2565b602082019050919050565b60006020820190508181036000830152615107816150cb565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061516a60398361475e565b91506151758261510e565b604082019050919050565b600060208201905081810360008301526151998161515d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006151fc60258361475e565b9150615207826151a0565b604082019050919050565b6000602082019050818103600083015261522b816151ef565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000615268601d8361475e565b915061527382615232565b602082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152fa60248361475e565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061538c60358361475e565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061541e60348361475e565b9150615429826153c2565b604082019050919050565b6000602082019050818103600083015261544d81615411565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154b060268361475e565b91506154bb82615454565b604082019050919050565b600060208201905081810360008301526154df816154a3565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061551c60208361475e565b9150615527826154e6565b602082019050919050565b6000602082019050818103600083015261554b8161550f565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006155ae602a8361475e565b91506155b982615552565b604082019050919050565b600060208201905081810360008301526155dd816155a1565b9050919050565b6000815190506155f38161487b565b92915050565b60006020828403121561560f5761560e61480e565b5b600061561d848285016155e4565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061568260248361475e565b915061568d82615626565b604082019050919050565b600060208201905081810360008301526156b181615675565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061571460228361475e565b915061571f826156b8565b604082019050919050565b6000602082019050818103600083015261574381615707565b9050919050565b7f45524332303a2066726f6d206164647265737320697320626c61636b6c69737460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006157a660228361475e565b91506157b18261574a565b604082019050919050565b600060208201905081810360008301526157d581615799565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061583860258361475e565b9150615843826157dc565b604082019050919050565b600060208201905081810360008301526158678161582b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158ca60238361475e565b91506158d58261586e565b604082019050919050565b600060208201905081810360008301526158f9816158bd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061593660168361475e565b915061594182615900565b602082019050919050565b6000602082019050818103600083015261596581615929565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159ee60498361475e565b91506159f98261596c565b606082019050919050565b60006020820190508181036000830152615a1d816159e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a8060358361475e565b9150615a8b82615a24565b604082019050919050565b60006020820190508181036000830152615aaf81615a73565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615aec60138361475e565b9150615af782615ab6565b602082019050919050565b60006020820190508181036000830152615b1b81615adf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b7e60368361475e565b9150615b8982615b22565b604082019050919050565b60006020820190508181036000830152615bad81615b71565b9050919050565b6000615bbf82614871565b9150615bca83614871565b925082821015615bdd57615bdc614d1b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c4460268361475e565b9150615c4f82615be8565b604082019050919050565b60006020820190508181036000830152615c7381615c37565b9050919050565b600081905092915050565b50565b6000615c95600083615c7a565b9150615ca082615c85565b600082019050919050565b6000615cb682615c88565b9150819050919050565b6000606082019050615cd560008301866149c4565b615ce260208301856149c4565b615cef60408301846149c4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615d6481614845565b92915050565b600060208284031215615d8057615d7f61480e565b5b6000615d8e84828501615d55565b91505092915050565b6000819050919050565b6000615dbc615db7615db284615d97565b61494a565b614871565b9050919050565b615dcc81615da1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615e0781614833565b82525050565b6000615e198383615dfe565b60208301905092915050565b6000602082019050919050565b6000615e3d82615dd2565b615e478185615ddd565b9350615e5283615dee565b8060005b83811015615e83578151615e6a8882615e0d565b9750615e7583615e25565b925050600181019050615e56565b5085935050505092915050565b600060a082019050615ea560008301886149c4565b615eb26020830187615dc3565b8181036040830152615ec48186615e32565b9050615ed36060830185614a6e565b615ee060808301846149c4565b9695505050505050565b600060c082019050615eff6000830189614a6e565b615f0c60208301886149c4565b615f196040830187615dc3565b615f266060830186615dc3565b615f336080830185614a6e565b615f4060a08301846149c4565b979650505050505050565b600080600060608486031215615f6457615f6361480e565b5b6000615f72868287016155e4565b9350506020615f83868287016155e4565b9250506040615f94868287016155e4565b915050925092509256fea264697066735822122091eb55f8ed29b50beae8d3b1d6d8fe0b3b90a77e5dd0e74cedee0785d23d8a8864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103d25760003560e01c8063809d458d116101fd578063c024666811610118578063dd62ed3e116100ab578063f2fde38b1161007a578063f2fde38b14610e76578063f637434214610e9f578063f8b45b0514610eca578063f9f92be414610ef5578063fe72b27a14610f32576103d9565b8063dd62ed3e14610db8578063e2f4560514610df5578063e884f26014610e20578063f11a24d314610e4b576103d9565b8063c8c8ebe4116100e7578063c8c8ebe414610cfa578063cc2ffe7c14610d25578063d257b34f14610d50578063d85ba06314610d8d576103d9565b8063c024666814610c54578063c17b5b8c14610c7d578063c18bc19514610ca6578063c876d0b914610ccf576103d9565b80639ec22c0e11610190578063a4c82a001161015f578063a4c82a0014610b84578063a9059cbb14610baf578063b62496f514610bec578063bbc0c74214610c29576103d9565b80639ec22c0e14610ac65780639fccce3214610af1578063a0d82dc514610b1c578063a457c2d714610b47576103d9565b8063924de9b7116101cc578063924de9b714610a1e57806395d89b4114610a475780639a7a23d614610a725780639c3b4fdc14610a9b576103d9565b8063809d458d146109885780638a8c523c146109b15780638da5cb5b146109c85780638ea5220f146109f3576103d9565b806344337ea1116102ed5780636b2fb12411610280578063730c18881161024f578063730c1888146108e2578063751039fc1461090b5780637571336a146109365780638095d5641461095f576103d9565b80636b2fb124146108385780636ddd17131461086357806370a082311461088e578063715018a6146108cb576103d9565b80634fbee193116102bc5780634fbee1931461077c578063537df3b6146107b95780635c068a8c146107e25780636a486a8e1461080d576103d9565b806344337ea1146106d25780634626402b146106fb57806349bd5a5e146107265780634a62bb6514610751576103d9565b80631a8145bb116103655780632c3e486c116103345780632c3e486c146106145780632e82f1a01461063f578063313ce5671461066a5780633950935114610695576103d9565b80631a8145bb14610558578063203e727e1461058357806323b872dd146105ac57806327c8f835146105e9576103d9565b806318160ddd116103a157806318160ddd146104ae5780631816467f146104d9578063184c16c514610502578063199ffc721461052d576103d9565b806306fdde03146103de578063095ea7b31461040957806310d5de53146104465780631694505e14610483576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610f6f565b60405161040091906147ec565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b91906148a7565b611001565b60405161043d9190614902565b60405180910390f35b34801561045257600080fd5b5061046d6004803603810190610468919061491d565b61101f565b60405161047a9190614902565b60405180910390f35b34801561048f57600080fd5b5061049861103e565b6040516104a591906149a9565b60405180910390f35b3480156104ba57600080fd5b506104c3611062565b6040516104d091906149d3565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb919061491d565b61106c565b005b34801561050e57600080fd5b506105176111a8565b60405161052491906149d3565b60405180910390f35b34801561053957600080fd5b506105426111ae565b60405161054f91906149d3565b60405180910390f35b34801561056457600080fd5b5061056d6111b4565b60405161057a91906149d3565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906149ee565b6111ba565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190614a1b565b6112c9565b6040516105e09190614902565b60405180910390f35b3480156105f557600080fd5b506105fe6113c1565b60405161060b9190614a7d565b60405180910390f35b34801561062057600080fd5b506106296113c7565b60405161063691906149d3565b60405180910390f35b34801561064b57600080fd5b506106546113cd565b6040516106619190614902565b60405180910390f35b34801561067657600080fd5b5061067f6113e0565b60405161068c9190614ab4565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906148a7565b6113e9565b6040516106c99190614902565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f4919061491d565b611495565b005b34801561070757600080fd5b5061071061156c565b60405161071d9190614a7d565b60405180910390f35b34801561073257600080fd5b5061073b611592565b6040516107489190614a7d565b60405180910390f35b34801561075d57600080fd5b506107666115b6565b6040516107739190614902565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e919061491d565b6115c9565b6040516107b09190614902565b60405180910390f35b3480156107c557600080fd5b506107e060048036038101906107db919061491d565b61161f565b005b3480156107ee57600080fd5b506107f76116f6565b60405161080491906149d3565b60405180910390f35b34801561081957600080fd5b506108226116fc565b60405161082f91906149d3565b60405180910390f35b34801561084457600080fd5b5061084d611702565b60405161085a91906149d3565b60405180910390f35b34801561086f57600080fd5b50610878611708565b6040516108859190614902565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b0919061491d565b61171b565b6040516108c291906149d3565b60405180910390f35b3480156108d757600080fd5b506108e0611763565b005b3480156108ee57600080fd5b5061090960048036038101906109049190614afb565b6117eb565b005b34801561091757600080fd5b5061092061192b565b60405161092d9190614902565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190614b4e565b6119cb565b005b34801561096b57600080fd5b5061098660048036038101906109819190614b8e565b611aa2565b005b34801561099457600080fd5b506109af60048036038101906109aa919061491d565b611ba0565b005b3480156109bd57600080fd5b506109c6611cdc565b005b3480156109d457600080fd5b506109dd611d97565b6040516109ea9190614a7d565b60405180910390f35b3480156109ff57600080fd5b50610a08611dc1565b604051610a159190614a7d565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a409190614be1565b611de7565b005b348015610a5357600080fd5b50610a5c611e80565b604051610a6991906147ec565b60405180910390f35b348015610a7e57600080fd5b50610a996004803603810190610a949190614b4e565b611f12565b005b348015610aa757600080fd5b50610ab061202b565b604051610abd91906149d3565b60405180910390f35b348015610ad257600080fd5b50610adb612031565b604051610ae891906149d3565b60405180910390f35b348015610afd57600080fd5b50610b06612037565b604051610b1391906149d3565b60405180910390f35b348015610b2857600080fd5b50610b3161203d565b604051610b3e91906149d3565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b6991906148a7565b612043565b604051610b7b9190614902565b60405180910390f35b348015610b9057600080fd5b50610b9961212e565b604051610ba691906149d3565b60405180910390f35b348015610bbb57600080fd5b50610bd66004803603810190610bd191906148a7565b612134565b604051610be39190614902565b60405180910390f35b348015610bf857600080fd5b50610c136004803603810190610c0e919061491d565b612152565b604051610c209190614902565b60405180910390f35b348015610c3557600080fd5b50610c3e612172565b604051610c4b9190614902565b60405180910390f35b348015610c6057600080fd5b50610c7b6004803603810190610c769190614b4e565b612185565b005b348015610c8957600080fd5b50610ca46004803603810190610c9f9190614b8e565b6122aa565b005b348015610cb257600080fd5b50610ccd6004803603810190610cc891906149ee565b6123a9565b005b348015610cdb57600080fd5b50610ce46124b8565b604051610cf19190614902565b60405180910390f35b348015610d0657600080fd5b50610d0f6124cb565b604051610d1c91906149d3565b60405180910390f35b348015610d3157600080fd5b50610d3a6124d1565b604051610d4791906149d3565b60405180910390f35b348015610d5c57600080fd5b50610d776004803603810190610d7291906149ee565b6124d7565b604051610d849190614902565b60405180910390f35b348015610d9957600080fd5b50610da261262c565b604051610daf91906149d3565b60405180910390f35b348015610dc457600080fd5b50610ddf6004803603810190610dda9190614c0e565b612632565b604051610dec91906149d3565b60405180910390f35b348015610e0157600080fd5b50610e0a6126b9565b604051610e1791906149d3565b60405180910390f35b348015610e2c57600080fd5b50610e356126bf565b604051610e429190614902565b60405180910390f35b348015610e5757600080fd5b50610e6061275f565b604051610e6d91906149d3565b60405180910390f35b348015610e8257600080fd5b50610e9d6004803603810190610e98919061491d565b612765565b005b348015610eab57600080fd5b50610eb461285d565b604051610ec191906149d3565b60405180910390f35b348015610ed657600080fd5b50610edf612863565b604051610eec91906149d3565b60405180910390f35b348015610f0157600080fd5b50610f1c6004803603810190610f17919061491d565b612869565b604051610f299190614902565b60405180910390f35b348015610f3e57600080fd5b50610f596004803603810190610f5491906149ee565b612889565b604051610f669190614902565b60405180910390f35b606060038054610f7e90614c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054610faa90614c7d565b8015610ff75780601f10610fcc57610100808354040283529160200191610ff7565b820191906000526020600020905b815481529060010190602001808311610fda57829003601f168201915b5050505050905090565b600061101561100e612b61565b8484612b69565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b611074612b61565b73ffffffffffffffffffffffffffffffffffffffff16611092611d97565b73ffffffffffffffffffffffffffffffffffffffff16146110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90614cfb565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6111c2612b61565b73ffffffffffffffffffffffffffffffffffffffff166111e0611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614cfb565b60405180910390fd5b670de0b6b3a76400006103e8600161124c611062565b6112569190614d4a565b6112609190614dd3565b61126a9190614dd3565b8110156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614e76565b60405180910390fd5b670de0b6b3a7640000816112c09190614d4a565b60088190555050565b60006112d6848484612d34565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611321612b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890614f08565b60405180910390fd5b6113b5856113ad612b61565b858403612b69565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061148b6113f6612b61565b848460016000611404612b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114869190614f28565b612b69565b6001905092915050565b61149d612b61565b73ffffffffffffffffffffffffffffffffffffffff166114bb611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890614cfb565b60405180910390fd5b6001602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611627612b61565b73ffffffffffffffffffffffffffffffffffffffff16611645611d97565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614cfb565b60405180910390fd5b6000602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60155481565b60185481565b60195481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61176b612b61565b73ffffffffffffffffffffffffffffffffffffffff16611789611d97565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614cfb565b60405180910390fd5b6117e96000613b59565b565b6117f3612b61565b73ffffffffffffffffffffffffffffffffffffffff16611811611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611867576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185e90614cfb565b60405180910390fd5b6102588310156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390614ff0565b60405180910390fd5b6103e882111580156118bf575060008210155b6118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f590615082565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6000611935612b61565b73ffffffffffffffffffffffffffffffffffffffff16611953611d97565b73ffffffffffffffffffffffffffffffffffffffff16146119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090614cfb565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6119d3612b61565b73ffffffffffffffffffffffffffffffffffffffff166119f1611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90614cfb565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611aaa612b61565b73ffffffffffffffffffffffffffffffffffffffff16611ac8611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1590614cfb565b60405180910390fd5b826015819055508160168190555080601781905550601754601654601554611b469190614f28565b611b509190614f28565b601481905550601480541115611b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b92906150ee565b60405180910390fd5b505050565b611ba8612b61565b73ffffffffffffffffffffffffffffffffffffffff16611bc6611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614cfb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63560405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611ce4612b61565b73ffffffffffffffffffffffffffffffffffffffff16611d02611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90614cfb565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611def612b61565b73ffffffffffffffffffffffffffffffffffffffff16611e0d611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a90614cfb565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611e8f90614c7d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebb90614c7d565b8015611f085780601f10611edd57610100808354040283529160200191611f08565b820191906000526020600020905b815481529060010190602001808311611eeb57829003601f168201915b5050505050905090565b611f1a612b61565b73ffffffffffffffffffffffffffffffffffffffff16611f38611d97565b73ffffffffffffffffffffffffffffffffffffffff1614611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8590614cfb565b60405180910390fd5b7f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490615180565b60405180910390fd5b6120278282613c1f565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000612052612b61565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561210f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210690615212565b60405180910390fd5b61212361211a612b61565b85858403612b69565b600191505092915050565b600e5481565b6000612148612141612b61565b8484612d34565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b61218d612b61565b73ffffffffffffffffffffffffffffffffffffffff166121ab611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614cfb565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161229e9190614902565b60405180910390a25050565b6122b2612b61565b73ffffffffffffffffffffffffffffffffffffffff166122d0611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d90614cfb565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461234e9190614f28565b6123589190614f28565b601881905550601960185411156123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b9061527e565b60405180910390fd5b505050565b6123b1612b61565b73ffffffffffffffffffffffffffffffffffffffff166123cf611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241c90614cfb565b60405180910390fd5b670de0b6b3a76400006103e8600561243b611062565b6124459190614d4a565b61244f9190614dd3565b6124599190614dd3565b81101561249b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249290615310565b60405180910390fd5b670de0b6b3a7640000816124af9190614d4a565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b601c5481565b60006124e1612b61565b73ffffffffffffffffffffffffffffffffffffffff166124ff611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254c90614cfb565b60405180910390fd5b620186a06001612563611062565b61256d9190614d4a565b6125779190614dd3565b8210156125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b0906153a2565b60405180910390fd5b6103e860056125c6611062565b6125d09190614d4a565b6125da9190614dd3565b82111561261c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261390615434565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006126c9612b61565b73ffffffffffffffffffffffffffffffffffffffff166126e7611d97565b73ffffffffffffffffffffffffffffffffffffffff161461273d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273490614cfb565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61276d612b61565b73ffffffffffffffffffffffffffffffffffffffff1661278b611d97565b73ffffffffffffffffffffffffffffffffffffffff16146127e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d890614cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612851576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612848906154c6565b60405180910390fd5b61285a81613b59565b50565b601a5481565b600a5481565b60226020528060005260406000206000915054906101000a900460ff1681565b6000612893612b61565b73ffffffffffffffffffffffffffffffffffffffff166128b1611d97565b73ffffffffffffffffffffffffffffffffffffffff1614612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe90614cfb565b60405180910390fd5b600f546010546129179190614f28565b4211612958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90615532565b60405180910390fd5b6103e882111561299d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612994906155c4565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb6040518263ffffffff1660e01b81526004016129ff9190614a7d565b602060405180830381865afa158015612a1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a4091906155f9565b90506000612a6b612710612a5d8685613cc090919063ffffffff16565b613cd690919063ffffffff16565b90506000811115612aa457612aa37f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb61dead83613cec565b5b60007f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612b1157600080fd5b505af1158015612b25573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd090615698565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c409061572a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612d2791906149d3565b60405180910390a3505050565b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db8906157bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e289061584e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e98906158e0565b60405180910390fd5b6000811415612ebb57612eb683836000613cec565b613b54565b601160009054906101000a900460ff161561357e57612ed8611d97565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612f465750612f16611d97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612f7f5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fb9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612fd25750600560149054906101000a900460ff16155b1561357d57601160019054906101000a900460ff166130cc57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061308c5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6130cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c29061594c565b60405180910390fd5b5b601360009054906101000a900460ff1615613294576130e9611d97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561317057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156131c857507f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156132935743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061324e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161324590615a04565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133375750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133de57600854811115613381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337890615a96565b60405180910390fd5b600a5461338d8361171b565b826133989190614f28565b11156133d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d090615b02565b60405180910390fd5b61357c565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134815750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156134d0576008548111156134cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c290615b94565b60405180910390fd5b61357b565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661357a57600a5461352d8361171b565b826135389190614f28565b1115613579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357090615b02565b60405180910390fd5b5b5b5b5b5b60006135893061171b565b9050600060095482101590508080156135ae5750601160029054906101000a900460ff165b80156135c75750600560149054906101000a900460ff16155b801561361d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156136735750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156136c95750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561370d576001600560146101000a81548160ff0219169083151502179055506136f1613f6d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156137735750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561378b5750600c60009054906101000a900460ff165b80156137a65750600d54600e546137a29190614f28565b4210155b80156137fc5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561380b57613809614254565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806138c15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156138cb57600090505b60008115613b4457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561392e57506000601854115b156139fb5761395b606461394d60185488613cc090919063ffffffff16565b613cd690919063ffffffff16565b9050601854601a548261396e9190614d4a565b6139789190614dd3565b601d60008282546139899190614f28565b92505081905550601854601b54826139a19190614d4a565b6139ab9190614dd3565b601e60008282546139bc9190614f28565b92505081905550601854601954826139d49190614d4a565b6139de9190614dd3565b601c60008282546139ef9190614f28565b92505081905550613b20565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015613a5657506000601454115b15613b1f57613a836064613a7560145488613cc090919063ffffffff16565b613cd690919063ffffffff16565b905060145460165482613a969190614d4a565b613aa09190614dd3565b601d6000828254613ab19190614f28565b9250508190555060145460175482613ac99190614d4a565b613ad39190614dd3565b601e6000828254613ae49190614f28565b9250508190555060145460155482613afc9190614d4a565b613b069190614dd3565b601c6000828254613b179190614f28565b925050819055505b5b6000811115613b3557613b34873083613cec565b5b8085613b419190615bb4565b94505b613b4f878787613cec565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60008183613cce9190614d4a565b905092915050565b60008183613ce49190614dd3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613d5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d539061584e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc3906158e0565b60405180910390fd5b613dd783838361441a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e5490615c5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ef09190614f28565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613f5491906149d3565b60405180910390a3613f6784848461441f565b50505050565b6000613f783061171b565b90506000601e54601c54601d54613f8f9190614f28565b613f999190614f28565b9050600080831480613fab5750600082145b15613fb857505050614252565b6014600954613fc79190614d4a565b831115613fe0576014600954613fdd9190614d4a565b92505b6000600283601d5486613ff39190614d4a565b613ffd9190614dd3565b6140079190614dd3565b9050600061401e828661442490919063ffffffff16565b9050600047905061402e8261443a565b6000614043824761442490919063ffffffff16565b9050600061406e87614060601c5485613cc090919063ffffffff16565b613cd690919063ffffffff16565b905060006140998861408b601e5486613cc090919063ffffffff16565b613cd690919063ffffffff16565b905060008183856140aa9190615bb4565b6140b49190615bb4565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161411490615cab565b60006040518083038185875af1925050503d8060008114614151576040519150601f19603f3d011682016040523d82523d6000602084013e614156565b606091505b50508098505060008711801561416c5750600081115b156141b95761417b8782614677565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516141b093929190615cc0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516141ff90615cab565b60006040518083038185875af1925050503d806000811461423c576040519150601f19603f3d011682016040523d82523d6000602084013e614241565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb6040518263ffffffff1660e01b81526004016142b89190614a7d565b602060405180830381865afa1580156142d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142f991906155f9565b90506000614326612710614318600b5485613cc090919063ffffffff16565b613cd690919063ffffffff16565b9050600081111561435f5761435e7f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb61dead83613cec565b5b60007f00000000000000000000000028f13dbb83659e1ae7b7d64a9a82b8822c8903eb90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156143cc57600080fd5b505af11580156143e0573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836144329190615bb4565b905092915050565b6000600267ffffffffffffffff81111561445757614456615cf7565b5b6040519080825280602002602001820160405280156144855781602001602082028036833780820191505090505b509050308160008151811061449d5761449c615d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145669190615d6a565b8160018151811061457a57614579615d26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506145df307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614641959493929190615e90565b600060405180830381600087803b15801561465b57600080fd5b505af115801561466f573d6000803e3d6000fd5b505050505050565b6146a2307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612b69565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161470996959493929190615eea565b60606040518083038185885af1158015614727573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061474c9190615f4b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561478d578082015181840152602081019050614772565b8381111561479c576000848401525b50505050565b6000601f19601f8301169050919050565b60006147be82614753565b6147c8818561475e565b93506147d881856020860161476f565b6147e1816147a2565b840191505092915050565b6000602082019050818103600083015261480681846147b3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061483e82614813565b9050919050565b61484e81614833565b811461485957600080fd5b50565b60008135905061486b81614845565b92915050565b6000819050919050565b61488481614871565b811461488f57600080fd5b50565b6000813590506148a18161487b565b92915050565b600080604083850312156148be576148bd61480e565b5b60006148cc8582860161485c565b92505060206148dd85828601614892565b9150509250929050565b60008115159050919050565b6148fc816148e7565b82525050565b600060208201905061491760008301846148f3565b92915050565b6000602082840312156149335761493261480e565b5b60006149418482850161485c565b91505092915050565b6000819050919050565b600061496f61496a61496584614813565b61494a565b614813565b9050919050565b600061498182614954565b9050919050565b600061499382614976565b9050919050565b6149a381614988565b82525050565b60006020820190506149be600083018461499a565b92915050565b6149cd81614871565b82525050565b60006020820190506149e860008301846149c4565b92915050565b600060208284031215614a0457614a0361480e565b5b6000614a1284828501614892565b91505092915050565b600080600060608486031215614a3457614a3361480e565b5b6000614a428682870161485c565b9350506020614a538682870161485c565b9250506040614a6486828701614892565b9150509250925092565b614a7781614833565b82525050565b6000602082019050614a926000830184614a6e565b92915050565b600060ff82169050919050565b614aae81614a98565b82525050565b6000602082019050614ac96000830184614aa5565b92915050565b614ad8816148e7565b8114614ae357600080fd5b50565b600081359050614af581614acf565b92915050565b600080600060608486031215614b1457614b1361480e565b5b6000614b2286828701614892565b9350506020614b3386828701614892565b9250506040614b4486828701614ae6565b9150509250925092565b60008060408385031215614b6557614b6461480e565b5b6000614b738582860161485c565b9250506020614b8485828601614ae6565b9150509250929050565b600080600060608486031215614ba757614ba661480e565b5b6000614bb586828701614892565b9350506020614bc686828701614892565b9250506040614bd786828701614892565b9150509250925092565b600060208284031215614bf757614bf661480e565b5b6000614c0584828501614ae6565b91505092915050565b60008060408385031215614c2557614c2461480e565b5b6000614c338582860161485c565b9250506020614c448582860161485c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614c9557607f821691505b60208210811415614ca957614ca8614c4e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614ce560208361475e565b9150614cf082614caf565b602082019050919050565b60006020820190508181036000830152614d1481614cd8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614d5582614871565b9150614d6083614871565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d9957614d98614d1b565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614dde82614871565b9150614de983614871565b925082614df957614df8614da4565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e60602f8361475e565b9150614e6b82614e04565b604082019050919050565b60006020820190508181036000830152614e8f81614e53565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614ef260288361475e565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b6000614f3382614871565b9150614f3e83614871565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f7357614f72614d1b565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614fda60338361475e565b9150614fe582614f7e565b604082019050919050565b6000602082019050818103600083015261500981614fcd565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b600061506c60308361475e565b915061507782615010565b604082019050919050565b6000602082019050818103600083015261509b8161505f565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006150d8601d8361475e565b91506150e3826150a2565b602082019050919050565b60006020820190508181036000830152615107816150cb565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061516a60398361475e565b91506151758261510e565b604082019050919050565b600060208201905081810360008301526151998161515d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006151fc60258361475e565b9150615207826151a0565b604082019050919050565b6000602082019050818103600083015261522b816151ef565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000615268601d8361475e565b915061527382615232565b602082019050919050565b600060208201905081810360008301526152978161525b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152fa60248361475e565b91506153058261529e565b604082019050919050565b60006020820190508181036000830152615329816152ed565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061538c60358361475e565b915061539782615330565b604082019050919050565b600060208201905081810360008301526153bb8161537f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061541e60348361475e565b9150615429826153c2565b604082019050919050565b6000602082019050818103600083015261544d81615411565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006154b060268361475e565b91506154bb82615454565b604082019050919050565b600060208201905081810360008301526154df816154a3565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061551c60208361475e565b9150615527826154e6565b602082019050919050565b6000602082019050818103600083015261554b8161550f565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006155ae602a8361475e565b91506155b982615552565b604082019050919050565b600060208201905081810360008301526155dd816155a1565b9050919050565b6000815190506155f38161487b565b92915050565b60006020828403121561560f5761560e61480e565b5b600061561d848285016155e4565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061568260248361475e565b915061568d82615626565b604082019050919050565b600060208201905081810360008301526156b181615675565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061571460228361475e565b915061571f826156b8565b604082019050919050565b6000602082019050818103600083015261574381615707565b9050919050565b7f45524332303a2066726f6d206164647265737320697320626c61636b6c69737460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006157a660228361475e565b91506157b18261574a565b604082019050919050565b600060208201905081810360008301526157d581615799565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061583860258361475e565b9150615843826157dc565b604082019050919050565b600060208201905081810360008301526158678161582b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158ca60238361475e565b91506158d58261586e565b604082019050919050565b600060208201905081810360008301526158f9816158bd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061593660168361475e565b915061594182615900565b602082019050919050565b6000602082019050818103600083015261596581615929565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159ee60498361475e565b91506159f98261596c565b606082019050919050565b60006020820190508181036000830152615a1d816159e1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a8060358361475e565b9150615a8b82615a24565b604082019050919050565b60006020820190508181036000830152615aaf81615a73565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615aec60138361475e565b9150615af782615ab6565b602082019050919050565b60006020820190508181036000830152615b1b81615adf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b7e60368361475e565b9150615b8982615b22565b604082019050919050565b60006020820190508181036000830152615bad81615b71565b9050919050565b6000615bbf82614871565b9150615bca83614871565b925082821015615bdd57615bdc614d1b565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c4460268361475e565b9150615c4f82615be8565b604082019050919050565b60006020820190508181036000830152615c7381615c37565b9050919050565b600081905092915050565b50565b6000615c95600083615c7a565b9150615ca082615c85565b600082019050919050565b6000615cb682615c88565b9150819050919050565b6000606082019050615cd560008301866149c4565b615ce260208301856149c4565b615cef60408301846149c4565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050615d6481614845565b92915050565b600060208284031215615d8057615d7f61480e565b5b6000615d8e84828501615d55565b91505092915050565b6000819050919050565b6000615dbc615db7615db284615d97565b61494a565b614871565b9050919050565b615dcc81615da1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615e0781614833565b82525050565b6000615e198383615dfe565b60208301905092915050565b6000602082019050919050565b6000615e3d82615dd2565b615e478185615ddd565b9350615e5283615dee565b8060005b83811015615e83578151615e6a8882615e0d565b9750615e7583615e25565b925050600181019050615e56565b5085935050505092915050565b600060a082019050615ea560008301886149c4565b615eb26020830187615dc3565b8181036040830152615ec48186615e32565b9050615ed36060830185614a6e565b615ee060808301846149c4565b9695505050505050565b600060c082019050615eff6000830189614a6e565b615f0c60208301886149c4565b615f196040830187615dc3565b615f266060830186615dc3565b615f336080830185614a6e565b615f4060a08301846149c4565b979650505050505050565b600080600060608486031215615f6457615f6361480e565b5b6000615f72868287016155e4565b9350506020615f83868287016155e4565b9250506040615f94868287016155e4565b915050925092509256fea264697066735822122091eb55f8ed29b50beae8d3b1d6d8fe0b3b90a77e5dd0e74cedee0785d23d8a8864736f6c634300080a0033

Deployed Bytecode Sourcemap

32407:19656:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11722:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34033:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32486:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41379:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33050:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32865:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33817:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38732:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12373:480;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32589:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32960:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32921:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10517:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13262:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37959:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32681:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32544:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41544:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38065:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33528:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33634:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33669:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33228:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10846:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2790:103;;;;;;;;;;;;;:::i;:::-;;49657:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37634:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39279:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39642:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41155:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37427:155;;;;;;;;;;;;;:::i;:::-;;2139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32717:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39534:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9774:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40655:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33601:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33104:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33857:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33744:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13980:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33012:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11186:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34254:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33188:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40465:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40049:408;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39015:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33446:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32750:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33778:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38239:485;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33494:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32792:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37816:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33564:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33706:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32832:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34320:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51016:1044;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9555:100;9609:13;9642:5;9635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9555:100;:::o;11722:169::-;11805:4;11822:39;11831:12;:10;:12::i;:::-;11845:7;11854:6;11822:8;:39::i;:::-;11879:4;11872:11;;11722:169;;;;:::o;34033:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32486:51::-;;;:::o;10675:108::-;10736:7;10763:12;;10756:19;;10675:108;:::o;41379:157::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41486:9:::1;;;;;;;;;;;41458:38;;41475:9;41458:38;;;;;;;;;;;;41519:9;41507;;:21;;;;;;;;;;;;;;;;;;41379:157:::0;:::o;33050:47::-;;;;:::o;32865:36::-;;;;:::o;33817:33::-;;;;:::o;38732:275::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38869:4:::1;38861;38856:1;38840:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38839:26;;;;:::i;:::-;38838:35;;;;:::i;:::-;38828:6;:45;;38806:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38992:6;38982;:17;;;;:::i;:::-;38959:20;:40;;;;38732:275:::0;:::o;12373:480::-;12513:4;12530:36;12540:6;12548:9;12559:6;12530:9;:36::i;:::-;12579:24;12606:11;:19;12618:6;12606:19;;;;;;;;;;;;;;;:33;12626:12;:10;:12::i;:::-;12606:33;;;;;;;;;;;;;;;;12579:60;;12678:6;12658:16;:26;;12650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12757:57;12766:6;12774:12;:10;:12::i;:::-;12807:6;12788:16;:25;12757:8;:57::i;:::-;12841:4;12834:11;;;12373:480;;;;;:::o;32589:53::-;32635:6;32589:53;:::o;32960:45::-;;;;:::o;32921:32::-;;;;;;;;;;;;;:::o;10517:93::-;10575:5;10600:2;10593:9;;10517:93;:::o;13262:215::-;13350:4;13367:80;13376:12;:10;:12::i;:::-;13390:7;13436:10;13399:11;:25;13411:12;:10;:12::i;:::-;13399:25;;;;;;;;;;;;;;;:34;13425:7;13399:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13367:8;:80::i;:::-;13465:4;13458:11;;13262:215;;;;:::o;37959:98::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38045:4:::1;38026:9;:16;38036:5;38026:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;37959:98:::0;:::o;32681:29::-;;;;;;;;;;;;;:::o;32544:38::-;;;:::o;33148:33::-;;;;;;;;;;;;;:::o;41544:126::-;41610:4;41634:19;:28;41654:7;41634:28;;;;;;;;;;;;;;;;;;;;;;;;;41627:35;;41544:126;;;:::o;38065:104::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38156:5:::1;38137:9;:16;38147:5;38137:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;38065:104:::0;:::o;33528:29::-;;;;:::o;33634:28::-;;;;:::o;33669:30::-;;;;:::o;33228:31::-;;;;;;;;;;;;;:::o;10846:127::-;10920:7;10947:9;:18;10957:7;10947:18;;;;;;;;;;;;;;;;10940:25;;10846:127;;;:::o;2790:103::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;49657:555::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49859:3:::1;49836:19;:26;;49814:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49986:4;49974:8;:16;;:33;;;;;50006:1;49994:8;:13;;49974:33;49952:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50112:19;50094:15;:37;;;;50161:8;50142:16;:27;;;;50196:8;50180:13;;:24;;;;;;;;;;;;;;;;;;49657:555:::0;;;:::o;37634:121::-;37686:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37720:5:::1;37703:14;;:22;;;;;;;;;;;;;;;;;;37743:4;37736:11;;37634:121:::0;:::o;39279:159::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39426:4:::1;39384:31;:39;39416:6;39384:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39279:159:::0;;:::o;39642:399::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39808:12:::1;39791:14;:29;;;;39849:13;39831:15;:31;;;;39885:7;39873:9;:19;;;;39953:9;;39935:15;;39918:14;;:32;;;;:::i;:::-;:44;;;;:::i;:::-;39903:12;:59;;;;39997:2;39981:12:::0;::::1;:18;;39973:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39642:399:::0;;;:::o;41155:216::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41303:14:::1;;;;;;;;;;;41262:56;;41284:17;41262:56;;;;;;;;;;;;41346:17;41329:14;;:34;;;;;;;;;;;;;;;;;;41155:216:::0;:::o;37427:155::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37498:4:::1;37482:13;;:20;;;;;;;;;;;;;;;;;;37527:4;37513:11;;:18;;;;;;;;;;;;;;;;;;37559:15;37542:14;:32;;;;37427:155::o:0;2139:87::-;2185:7;2212:6;;;;;;;;;;;2205:13;;2139:87;:::o;32717:24::-;;;;;;;;;;;;;:::o;39534:100::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39619:7:::1;39605:11;;:21;;;;;;;;;;;;;;;;;;39534:100:::0;:::o;9774:104::-;9830:13;9863:7;9856:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9774:104;:::o;40655:296::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40791:13:::1;40783:21;;:4;:21;;;;40761:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40902:41;40931:4;40937:5;40902:28;:41::i;:::-;40655:296:::0;;:::o;33601:24::-;;;;:::o;33104:35::-;;;;:::o;33857:27::-;;;;:::o;33744:25::-;;;;:::o;13980:401::-;14073:4;14090:24;14117:11;:25;14129:12;:10;:12::i;:::-;14117:25;;;;;;;;;;;;;;;:34;14143:7;14117:34;;;;;;;;;;;;;;;;14090:61;;14190:15;14170:16;:35;;14162:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14275:67;14284:12;:10;:12::i;:::-;14298:7;14326:15;14307:16;:34;14275:8;:67::i;:::-;14369:4;14362:11;;;13980:401;;;;:::o;33012:29::-;;;;:::o;11186:175::-;11272:4;11289:42;11299:12;:10;:12::i;:::-;11313:9;11324:6;11289:9;:42::i;:::-;11349:4;11342:11;;11186:175;;;;:::o;34254:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33188:33::-;;;;;;;;;;;;;:::o;40465:182::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40581:8:::1;40550:19;:28;40570:7;40550:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40621:7;40605:34;;;40630:8;40605:34;;;;;;:::i;:::-;;;;;;;;40465:182:::0;;:::o;40049:408::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40217:12:::1;40199:15;:30;;;;40259:13;40240:16;:32;;;;40296:7;40283:10;:20;;;;40367:10;;40348:16;;40330:15;;:34;;;;:::i;:::-;:47;;;;:::i;:::-;40314:13;:63;;;;40413:2;40396:13;;:19;;40388:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40049:408:::0;;;:::o;39015:256::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39155:4:::1;39147;39142:1;39126:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39125:26;;;;:::i;:::-;39124:35;;;;:::i;:::-;39114:6;:45;;39092:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39256:6;39246;:17;;;;:::i;:::-;39234:9;:29;;;;39015:256:::0;:::o;33446:39::-;;;;;;;;;;;;;:::o;32750:35::-;;;;:::o;33778:32::-;;;;:::o;38239:485::-;38335:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38414:6:::1;38409:1;38393:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38392:28;;;;:::i;:::-;38379:9;:41;;38357:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38569:4;38564:1;38548:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38547:26;;;;:::i;:::-;38534:9;:39;;38512:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38685:9;38664:18;:30;;;;38712:4;38705:11;;38239:485:::0;;;:::o;33494:27::-;;;;:::o;11424:151::-;11513:7;11540:11;:18;11552:5;11540:18;;;;;;;;;;;;;;;:27;11559:7;11540:27;;;;;;;;;;;;;;;;11533:34;;11424:151;;;;:::o;32792:33::-;;;;:::o;37816:135::-;37876:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37916:5:::1;37893:20;;:28;;;;;;;;;;;;;;;;;;37939:4;37932:11;;37816:135:::0;:::o;33564:30::-;;;;:::o;3048:201::-;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3157:1:::1;3137:22;;:8;:22;;;;3129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;33706:31::-;;;;:::o;32832:24::-;;;;:::o;34320:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;51016:1044::-;51115:4;2370:12;:10;:12::i;:::-;2359:23;;:7;:5;:7::i;:::-;:23;;;2351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51200:19:::1;;51177:20;;:42;;;;:::i;:::-;51159:15;:60;51137:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51309:4;51298:7;:15;;51290:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51394:15;51371:20;:38;;;;51464:28;51495:4;:14;;;51510:13;51495:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51464:60;;51574:20;51597:44;51635:5;51597:33;51622:7;51597:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51574:67;;51761:1;51746:12;:16;51742:110;;;51779:61;51795:13;51818:6;51827:12;51779:15;:61::i;:::-;51742:110;51927:19;51964:13;51927:51;;51989:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52016:14;;;;;;;;;;52048:4;52041:11;;;;;51016:1044:::0;;;:::o;812:98::-;865:7;892:10;885:17;;812:98;:::o;17628:380::-;17781:1;17764:19;;:5;:19;;;;17756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17862:1;17843:21;;:7;:21;;;;17835:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17946:6;17916:11;:18;17928:5;17916:18;;;;;;;;;;;;;;;:27;17935:7;17916:27;;;;;;;;;;;;;;;:36;;;;17984:7;17968:32;;17977:5;17968:32;;;17993:6;17968:32;;;;;;:::i;:::-;;;;;;;;17628:380;;;:::o;41728:5061::-;41861:9;:15;41871:4;41861:15;;;;;;;;;;;;;;;;;;;;;;;;;41860:16;41852:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41950:1;41934:18;;:4;:18;;;;41926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42027:1;42013:16;;:2;:16;;;;42005:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42096:1;42086:6;:11;42082:93;;;42114:28;42130:4;42136:2;42140:1;42114:15;:28::i;:::-;42157:7;;42082:93;42191:14;;;;;;;;;;;42187:2483;;;42252:7;:5;:7::i;:::-;42244:15;;:4;:15;;;;:49;;;;;42286:7;:5;:7::i;:::-;42280:13;;:2;:13;;;;42244:49;:86;;;;;42328:1;42314:16;;:2;:16;;;;42244:86;:128;;;;;42365:6;42351:21;;:2;:21;;;;42244:128;:158;;;;;42394:8;;;;;;;;;;;42393:9;42244:158;42222:2437;;;42442:13;;;;;;;;;;;42437:223;;42514:19;:25;42534:4;42514:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42543:19;:23;42563:2;42543:23;;;;;;;;;;;;;;;;;;;;;;;;;42514:52;42480:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42437:223;42816:20;;;;;;;;;;;42812:637;;;42897:7;:5;:7::i;:::-;42891:13;;:2;:13;;;;:72;;;;;42947:15;42933:30;;:2;:30;;;;42891:72;:129;;;;;43006:13;42992:28;;:2;:28;;;;42891:129;42861:569;;;43180:12;43109:28;:39;43138:9;43109:39;;;;;;;;;;;;;;;;:83;43071:254;;;;;;;;;;;;:::i;:::-;;;;;;;;;43394:12;43352:28;:39;43381:9;43352:39;;;;;;;;;;;;;;;:54;;;;42861:569;42812:637;43523:25;:31;43549:4;43523:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43580:31;:35;43612:2;43580:35;;;;;;;;;;;;;;;;;;;;;;;;;43579:36;43523:92;43497:1147;;;43702:20;;43692:6;:30;;43658:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43910:9;;43893:13;43903:2;43893:9;:13::i;:::-;43884:6;:22;;;;:::i;:::-;:35;;43850:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43497:1147;;;44088:25;:29;44114:2;44088:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44143:31;:37;44175:4;44143:37;;;;;;;;;;;;;;;;;;;;;;;;;44142:38;44088:92;44062:582;;;44267:20;;44257:6;:30;;44223:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44062:582;;;44424:31;:35;44456:2;44424:35;;;;;;;;;;;;;;;;;;;;;;;;;44419:225;;44544:9;;44527:13;44537:2;44527:9;:13::i;:::-;44518:6;:22;;;;:::i;:::-;:35;;44484:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44419:225;44062:582;43497:1147;42222:2437;42187:2483;44682:28;44713:24;44731:4;44713:9;:24::i;:::-;44682:55;;44750:12;44789:18;;44765:20;:42;;44750:57;;44838:7;:35;;;;;44862:11;;;;;;;;;;;44838:35;:61;;;;;44891:8;;;;;;;;;;;44890:9;44838:61;:110;;;;;44917:25;:31;44943:4;44917:31;;;;;;;;;;;;;;;;;;;;;;;;;44916:32;44838:110;:153;;;;;44966:19;:25;44986:4;44966:25;;;;;;;;;;;;;;;;;;;;;;;;;44965:26;44838:153;:194;;;;;45009:19;:23;45029:2;45009:23;;;;;;;;;;;;;;;;;;;;;;;;;45008:24;44838:194;44820:326;;;45070:4;45059:8;;:15;;;;;;;;;;;;;;;;;;45091:10;:8;:10::i;:::-;45129:5;45118:8;;:16;;;;;;;;;;;;;;;;;;44820:326;45177:8;;;;;;;;;;;45176:9;:51;;;;;45198:25;:29;45224:2;45198:29;;;;;;;;;;;;;;;;;;;;;;;;;45176:51;:77;;;;;45240:13;;;;;;;;;;;45176:77;:141;;;;;45302:15;;45285:14;;:32;;;;:::i;:::-;45266:15;:51;;45176:141;:180;;;;;45331:19;:25;45351:4;45331:25;;;;;;;;;;;;;;;;;;;;;;;;;45330:26;45176:180;45158:266;;;45383:29;:27;:29::i;:::-;;45158:266;45436:12;45452:8;;;;;;;;;;;45451:9;45436:24;;45562:19;:25;45582:4;45562:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45591:19;:23;45611:2;45591:23;;;;;;;;;;;;;;;;;;;;;;;;;45562:52;45558:100;;;45641:5;45631:15;;45558:100;45670:12;45775:7;45771:965;;;45827:25;:29;45853:2;45827:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45876:1;45860:13;;:17;45827:50;45823:764;;;45905:34;45935:3;45905:25;45916:13;;45905:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45898:41;;46008:13;;45988:16;;45981:4;:23;;;;:::i;:::-;45980:41;;;;:::i;:::-;45958:18;;:63;;;;;;;:::i;:::-;;;;;;;;46078:13;;46064:10;;46057:4;:17;;;;:::i;:::-;46056:35;;;;:::i;:::-;46040:12;;:51;;;;;;;:::i;:::-;;;;;;;;46158:13;;46139:15;;46132:4;:22;;;;:::i;:::-;46131:40;;;;:::i;:::-;46110:17;;:61;;;;;;;:::i;:::-;;;;;;;;45823:764;;;46233:25;:31;46259:4;46233:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46283:1;46268:12;;:16;46233:51;46229:358;;;46312:33;46341:3;46312:24;46323:12;;46312:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46305:40;;46413:12;;46394:15;;46387:4;:22;;;;:::i;:::-;46386:39;;;;:::i;:::-;46364:18;;:61;;;;;;;:::i;:::-;;;;;;;;46481:12;;46468:9;;46461:4;:16;;;;:::i;:::-;46460:33;;;;:::i;:::-;46444:12;;:49;;;;;;;:::i;:::-;;;;;;;;46559:12;;46541:14;;46534:4;:21;;;;:::i;:::-;46533:38;;;;:::i;:::-;46512:17;;:59;;;;;;;:::i;:::-;;;;;;;;46229:358;45823:764;46614:1;46607:4;:8;46603:91;;;46636:42;46652:4;46666;46673;46636:15;:42::i;:::-;46603:91;46720:4;46710:14;;;;;:::i;:::-;;;45771:965;46748:33;46764:4;46770:2;46774:6;46748:15;:33::i;:::-;41841:4948;;;;41728:5061;;;;:::o;3409:191::-;3483:16;3502:6;;;;;;;;;;;3483:25;;3528:8;3519:6;;:17;;;;;;;;;;;;;;;;;;3583:8;3552:40;;3573:8;3552:40;;;;;;;;;;;;3472:128;3409:191;:::o;40959:188::-;41076:5;41042:25;:31;41068:4;41042:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41133:5;41099:40;;41127:4;41099:40;;;;;;;;;;;;40959:188;;:::o;22977:98::-;23035:7;23066:1;23062;:5;;;;:::i;:::-;23055:12;;22977:98;;;;:::o;23376:::-;23434:7;23465:1;23461;:5;;;;:::i;:::-;23454:12;;23376:98;;;;:::o;14871:721::-;15029:1;15011:20;;:6;:20;;;;15003:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15113:1;15092:23;;:9;:23;;;;15084:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15168:47;15189:6;15197:9;15208:6;15168:20;:47::i;:::-;15228:21;15252:9;:17;15262:6;15252:17;;;;;;;;;;;;;;;;15228:41;;15305:6;15288:13;:23;;15280:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15418:6;15402:13;:22;15382:9;:17;15392:6;15382:17;;;;;;;;;;;;;;;:42;;;;15466:6;15442:9;:20;15452:9;15442:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15507:9;15490:35;;15499:6;15490:35;;;15518:6;15490:35;;;;;;:::i;:::-;;;;;;;;15538:46;15558:6;15566:9;15577:6;15538:19;:46::i;:::-;14992:600;14871:721;;;:::o;47919:1730::-;47958:23;47984:24;48002:4;47984:9;:24::i;:::-;47958:50;;48019:25;48106:12;;48077:17;;48047:18;;:47;;;;:::i;:::-;:71;;;;:::i;:::-;48019:99;;48129:12;48177:1;48158:15;:20;:46;;;;48203:1;48182:17;:22;48158:46;48154:85;;;48221:7;;;;;48154:85;48294:2;48273:18;;:23;;;;:::i;:::-;48255:15;:41;48251:115;;;48352:2;48331:18;;:23;;;;:::i;:::-;48313:41;;48251:115;48427:23;48532:1;48503:17;48472:18;;48454:15;:36;;;;:::i;:::-;48453:67;;;;:::i;:::-;:80;;;;:::i;:::-;48427:106;;48544:26;48573:36;48593:15;48573;:19;;:36;;;;:::i;:::-;48544:65;;48622:25;48650:21;48622:49;;48684:36;48701:18;48684:16;:36::i;:::-;48733:18;48754:44;48780:17;48754:21;:25;;:44;;;;:::i;:::-;48733:65;;48811:22;48836:80;48888:17;48836:33;48851:17;;48836:10;:14;;:33;;;;:::i;:::-;:37;;:80;;;;:::i;:::-;48811:105;;48927:17;48947:51;48980:17;48947:28;48962:12;;48947:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48927:71;;49011:23;49067:9;49050:14;49037:10;:27;;;;:::i;:::-;:39;;;;:::i;:::-;49011:65;;49110:1;49089:18;:22;;;;49142:1;49122:17;:21;;;;49169:1;49154:12;:16;;;;49205:9;;;;;;;;;;;49197:23;;49228:9;49197:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49183:59;;;;;49277:1;49259:15;:19;:42;;;;;49300:1;49282:15;:19;49259:42;49255:278;;;49318:46;49331:15;49348;49318:12;:46::i;:::-;49384:137;49417:18;49454:15;49488:18;;49384:137;;;;;;;;:::i;:::-;;;;;;;;49255:278;49567:14;;;;;;;;;;;49559:28;;49605:21;49559:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49545:96;;;;;47947:1702;;;;;;;;;;47919:1730;:::o;50220:788::-;50277:4;50311:15;50294:14;:32;;;;50381:28;50412:4;:14;;;50427:13;50412:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50381:60;;50491:20;50514:77;50575:5;50514:42;50539:16;;50514:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50491:100;;50711:1;50696:12;:16;50692:110;;;50729:61;50745:13;50768:6;50777:12;50729:15;:61::i;:::-;50692:110;50877:19;50914:13;50877:51;;50939:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50966:12;;;;;;;;;;50996:4;50989:11;;;;;50220:788;:::o;18608:125::-;;;;:::o;19337:124::-;;;;:::o;22620:98::-;22678:7;22709:1;22705;:5;;;;:::i;:::-;22698:12;;22620:98;;;;:::o;46797:589::-;46923:21;46961:1;46947:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46923:40;;46992:4;46974;46979:1;46974:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47018:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47008:4;47013:1;47008:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47053:62;47070:4;47085:15;47103:11;47053:8;:62::i;:::-;47154:15;:66;;;47235:11;47261:1;47305:4;47332;47352:15;47154:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46852:534;46797:589;:::o;47394:517::-;47542:62;47559:4;47574:15;47592:11;47542:8;:62::i;:::-;47647:15;:31;;;47686:9;47719:4;47739:11;47765:1;47808;32635:6;47877:15;47647:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47394:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:179::-;16700:31;16696:1;16688:6;16684:14;16677:55;16560:179;:::o;16745:366::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:419::-;17283:4;17321:2;17310:9;17306:18;17298:26;;17370:9;17364:4;17360:20;17356:1;17345:9;17341:17;17334:47;17398:131;17524:4;17398:131;:::i;:::-;17390:139;;17117:419;;;:::o;17542:244::-;17682:34;17678:1;17670:6;17666:14;17659:58;17751:27;17746:2;17738:6;17734:15;17727:52;17542:244;:::o;17792:366::-;17934:3;17955:67;18019:2;18014:3;17955:67;:::i;:::-;17948:74;;18031:93;18120:3;18031:93;:::i;:::-;18149:2;18144:3;18140:12;18133:19;;17792:366;;;:::o;18164:419::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:224::-;18729:34;18725:1;18717:6;18713:14;18706:58;18798:7;18793:2;18785:6;18781:15;18774:32;18589:224;:::o;18819:366::-;18961:3;18982:67;19046:2;19041:3;18982:67;:::i;:::-;18975:74;;19058:93;19147:3;19058:93;:::i;:::-;19176:2;19171:3;19167:12;19160:19;;18819:366;;;:::o;19191:419::-;19357:4;19395:2;19384:9;19380:18;19372:26;;19444:9;19438:4;19434:20;19430:1;19419:9;19415:17;19408:47;19472:131;19598:4;19472:131;:::i;:::-;19464:139;;19191:419;;;:::o;19616:179::-;19756:31;19752:1;19744:6;19740:14;19733:55;19616:179;:::o;19801:366::-;19943:3;19964:67;20028:2;20023:3;19964:67;:::i;:::-;19957:74;;20040:93;20129:3;20040:93;:::i;:::-;20158:2;20153:3;20149:12;20142:19;;19801:366;;;:::o;20173:419::-;20339:4;20377:2;20366:9;20362:18;20354:26;;20426:9;20420:4;20416:20;20412:1;20401:9;20397:17;20390:47;20454:131;20580:4;20454:131;:::i;:::-;20446:139;;20173:419;;;:::o;20598:223::-;20738:34;20734:1;20726:6;20722:14;20715:58;20807:6;20802:2;20794:6;20790:15;20783:31;20598:223;:::o;20827:366::-;20969:3;20990:67;21054:2;21049:3;20990:67;:::i;:::-;20983:74;;21066:93;21155:3;21066:93;:::i;:::-;21184:2;21179:3;21175:12;21168:19;;20827:366;;;:::o;21199:419::-;21365:4;21403:2;21392:9;21388:18;21380:26;;21452:9;21446:4;21442:20;21438:1;21427:9;21423:17;21416:47;21480:131;21606:4;21480:131;:::i;:::-;21472:139;;21199:419;;;:::o;21624:240::-;21764:34;21760:1;21752:6;21748:14;21741:58;21833:23;21828:2;21820:6;21816:15;21809:48;21624:240;:::o;21870:366::-;22012:3;22033:67;22097:2;22092:3;22033:67;:::i;:::-;22026:74;;22109:93;22198:3;22109:93;:::i;:::-;22227:2;22222:3;22218:12;22211:19;;21870:366;;;:::o;22242:419::-;22408:4;22446:2;22435:9;22431:18;22423:26;;22495:9;22489:4;22485:20;22481:1;22470:9;22466:17;22459:47;22523:131;22649:4;22523:131;:::i;:::-;22515:139;;22242:419;;;:::o;22667:239::-;22807:34;22803:1;22795:6;22791:14;22784:58;22876:22;22871:2;22863:6;22859:15;22852:47;22667:239;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:225::-;23849:34;23845:1;23837:6;23833:14;23826:58;23918:8;23913:2;23905:6;23901:15;23894:33;23709:225;:::o;23940:366::-;24082:3;24103:67;24167:2;24162:3;24103:67;:::i;:::-;24096:74;;24179:93;24268:3;24179:93;:::i;:::-;24297:2;24292:3;24288:12;24281:19;;23940:366;;;:::o;24312:419::-;24478:4;24516:2;24505:9;24501:18;24493:26;;24565:9;24559:4;24555:20;24551:1;24540:9;24536:17;24529:47;24593:131;24719:4;24593:131;:::i;:::-;24585:139;;24312:419;;;:::o;24737:182::-;24877:34;24873:1;24865:6;24861:14;24854:58;24737:182;:::o;24925:366::-;25067:3;25088:67;25152:2;25147:3;25088:67;:::i;:::-;25081:74;;25164:93;25253:3;25164:93;:::i;:::-;25282:2;25277:3;25273:12;25266:19;;24925:366;;;:::o;25297:419::-;25463:4;25501:2;25490:9;25486:18;25478:26;;25550:9;25544:4;25540:20;25536:1;25525:9;25521:17;25514:47;25578:131;25704:4;25578:131;:::i;:::-;25570:139;;25297:419;;;:::o;25722:229::-;25862:34;25858:1;25850:6;25846:14;25839:58;25931:12;25926:2;25918:6;25914:15;25907:37;25722:229;:::o;25957:366::-;26099:3;26120:67;26184:2;26179:3;26120:67;:::i;:::-;26113:74;;26196:93;26285:3;26196:93;:::i;:::-;26314:2;26309:3;26305:12;26298:19;;25957:366;;;:::o;26329:419::-;26495:4;26533:2;26522:9;26518:18;26510:26;;26582:9;26576:4;26572:20;26568:1;26557:9;26553:17;26546:47;26610:131;26736:4;26610:131;:::i;:::-;26602:139;;26329:419;;;:::o;26754:143::-;26811:5;26842:6;26836:13;26827:22;;26858:33;26885:5;26858:33;:::i;:::-;26754:143;;;;:::o;26903:351::-;26973:6;27022:2;27010:9;27001:7;26997:23;26993:32;26990:119;;;27028:79;;:::i;:::-;26990:119;27148:1;27173:64;27229:7;27220:6;27209:9;27205:22;27173:64;:::i;:::-;27163:74;;27119:128;26903:351;;;;:::o;27260:223::-;27400:34;27396:1;27388:6;27384:14;27377:58;27469:6;27464:2;27456:6;27452:15;27445:31;27260:223;:::o;27489:366::-;27631:3;27652:67;27716:2;27711:3;27652:67;:::i;:::-;27645:74;;27728:93;27817:3;27728:93;:::i;:::-;27846:2;27841:3;27837:12;27830:19;;27489:366;;;:::o;27861:419::-;28027:4;28065:2;28054:9;28050:18;28042:26;;28114:9;28108:4;28104:20;28100:1;28089:9;28085:17;28078:47;28142:131;28268:4;28142:131;:::i;:::-;28134:139;;27861:419;;;:::o;28286:221::-;28426:34;28422:1;28414:6;28410:14;28403:58;28495:4;28490:2;28482:6;28478:15;28471:29;28286:221;:::o;28513:366::-;28655:3;28676:67;28740:2;28735:3;28676:67;:::i;:::-;28669:74;;28752:93;28841:3;28752:93;:::i;:::-;28870:2;28865:3;28861:12;28854:19;;28513:366;;;:::o;28885:419::-;29051:4;29089:2;29078:9;29074:18;29066:26;;29138:9;29132:4;29128:20;29124:1;29113:9;29109:17;29102:47;29166:131;29292:4;29166:131;:::i;:::-;29158:139;;28885:419;;;:::o;29310:221::-;29450:34;29446:1;29438:6;29434:14;29427:58;29519:4;29514:2;29506:6;29502:15;29495:29;29310:221;:::o;29537:366::-;29679:3;29700:67;29764:2;29759:3;29700:67;:::i;:::-;29693:74;;29776:93;29865:3;29776:93;:::i;:::-;29894:2;29889:3;29885:12;29878:19;;29537:366;;;:::o;29909:419::-;30075:4;30113:2;30102:9;30098:18;30090:26;;30162:9;30156:4;30152:20;30148:1;30137:9;30133:17;30126:47;30190:131;30316:4;30190:131;:::i;:::-;30182:139;;29909:419;;;:::o;30334:224::-;30474:34;30470:1;30462:6;30458:14;30451:58;30543:7;30538:2;30530:6;30526:15;30519:32;30334:224;:::o;30564:366::-;30706:3;30727:67;30791:2;30786:3;30727:67;:::i;:::-;30720:74;;30803:93;30892:3;30803:93;:::i;:::-;30921:2;30916:3;30912:12;30905:19;;30564:366;;;:::o;30936:419::-;31102:4;31140:2;31129:9;31125:18;31117:26;;31189:9;31183:4;31179:20;31175:1;31164:9;31160:17;31153:47;31217:131;31343:4;31217:131;:::i;:::-;31209:139;;30936:419;;;:::o;31361:222::-;31501:34;31497:1;31489:6;31485:14;31478:58;31570:5;31565:2;31557:6;31553:15;31546:30;31361:222;:::o;31589:366::-;31731:3;31752:67;31816:2;31811:3;31752:67;:::i;:::-;31745:74;;31828:93;31917:3;31828:93;:::i;:::-;31946:2;31941:3;31937:12;31930:19;;31589:366;;;:::o;31961:419::-;32127:4;32165:2;32154:9;32150:18;32142:26;;32214:9;32208:4;32204:20;32200:1;32189:9;32185:17;32178:47;32242:131;32368:4;32242:131;:::i;:::-;32234:139;;31961:419;;;:::o;32386:172::-;32526:24;32522:1;32514:6;32510:14;32503:48;32386:172;:::o;32564:366::-;32706:3;32727:67;32791:2;32786:3;32727:67;:::i;:::-;32720:74;;32803:93;32892:3;32803:93;:::i;:::-;32921:2;32916:3;32912:12;32905:19;;32564:366;;;:::o;32936:419::-;33102:4;33140:2;33129:9;33125:18;33117:26;;33189:9;33183:4;33179:20;33175:1;33164:9;33160:17;33153:47;33217:131;33343:4;33217:131;:::i;:::-;33209:139;;32936:419;;;:::o;33361:297::-;33501:34;33497:1;33489:6;33485:14;33478:58;33570:34;33565:2;33557:6;33553:15;33546:59;33639:11;33634:2;33626:6;33622:15;33615:36;33361:297;:::o;33664:366::-;33806:3;33827:67;33891:2;33886:3;33827:67;:::i;:::-;33820:74;;33903:93;33992:3;33903:93;:::i;:::-;34021:2;34016:3;34012:12;34005:19;;33664:366;;;:::o;34036:419::-;34202:4;34240:2;34229:9;34225:18;34217:26;;34289:9;34283:4;34279:20;34275:1;34264:9;34260:17;34253:47;34317:131;34443:4;34317:131;:::i;:::-;34309:139;;34036:419;;;:::o;34461:240::-;34601:34;34597:1;34589:6;34585:14;34578:58;34670:23;34665:2;34657:6;34653:15;34646:48;34461:240;:::o;34707:366::-;34849:3;34870:67;34934:2;34929:3;34870:67;:::i;:::-;34863:74;;34946:93;35035:3;34946:93;:::i;:::-;35064:2;35059:3;35055:12;35048:19;;34707:366;;;:::o;35079:419::-;35245:4;35283:2;35272:9;35268:18;35260:26;;35332:9;35326:4;35322:20;35318:1;35307:9;35303:17;35296:47;35360:131;35486:4;35360:131;:::i;:::-;35352:139;;35079:419;;;:::o;35504:169::-;35644:21;35640:1;35632:6;35628:14;35621:45;35504:169;:::o;35679:366::-;35821:3;35842:67;35906:2;35901:3;35842:67;:::i;:::-;35835:74;;35918:93;36007:3;35918:93;:::i;:::-;36036:2;36031:3;36027:12;36020:19;;35679:366;;;:::o;36051:419::-;36217:4;36255:2;36244:9;36240:18;36232:26;;36304:9;36298:4;36294:20;36290:1;36279:9;36275:17;36268:47;36332:131;36458:4;36332:131;:::i;:::-;36324:139;;36051:419;;;:::o;36476:241::-;36616:34;36612:1;36604:6;36600:14;36593:58;36685:24;36680:2;36672:6;36668:15;36661:49;36476:241;:::o;36723:366::-;36865:3;36886:67;36950:2;36945:3;36886:67;:::i;:::-;36879:74;;36962:93;37051:3;36962:93;:::i;:::-;37080:2;37075:3;37071:12;37064:19;;36723:366;;;:::o;37095:419::-;37261:4;37299:2;37288:9;37284:18;37276:26;;37348:9;37342:4;37338:20;37334:1;37323:9;37319:17;37312:47;37376:131;37502:4;37376:131;:::i;:::-;37368:139;;37095:419;;;:::o;37520:191::-;37560:4;37580:20;37598:1;37580:20;:::i;:::-;37575:25;;37614:20;37632:1;37614:20;:::i;:::-;37609:25;;37653:1;37650;37647:8;37644:34;;;37658:18;;:::i;:::-;37644:34;37703:1;37700;37696:9;37688:17;;37520:191;;;;:::o;37717:225::-;37857:34;37853:1;37845:6;37841:14;37834:58;37926:8;37921:2;37913:6;37909:15;37902:33;37717:225;:::o;37948:366::-;38090:3;38111:67;38175:2;38170:3;38111:67;:::i;:::-;38104:74;;38187:93;38276:3;38187:93;:::i;:::-;38305:2;38300:3;38296:12;38289:19;;37948:366;;;:::o;38320:419::-;38486:4;38524:2;38513:9;38509:18;38501:26;;38573:9;38567:4;38563:20;38559:1;38548:9;38544:17;38537:47;38601:131;38727:4;38601:131;:::i;:::-;38593:139;;38320:419;;;:::o;38745:147::-;38846:11;38883:3;38868:18;;38745:147;;;;:::o;38898:114::-;;:::o;39018:398::-;39177:3;39198:83;39279:1;39274:3;39198:83;:::i;:::-;39191:90;;39290:93;39379:3;39290:93;:::i;:::-;39408:1;39403:3;39399:11;39392:18;;39018:398;;;:::o;39422:379::-;39606:3;39628:147;39771:3;39628:147;:::i;:::-;39621:154;;39792:3;39785:10;;39422:379;;;:::o;39807:442::-;39956:4;39994:2;39983:9;39979:18;39971:26;;40007:71;40075:1;40064:9;40060:17;40051:6;40007:71;:::i;:::-;40088:72;40156:2;40145:9;40141:18;40132:6;40088:72;:::i;:::-;40170;40238:2;40227:9;40223:18;40214:6;40170:72;:::i;:::-;39807:442;;;;;;:::o;40255:180::-;40303:77;40300:1;40293:88;40400:4;40397:1;40390:15;40424:4;40421:1;40414:15;40441:180;40489:77;40486:1;40479:88;40586:4;40583:1;40576:15;40610:4;40607:1;40600:15;40627:143;40684:5;40715:6;40709:13;40700:22;;40731:33;40758:5;40731:33;:::i;:::-;40627:143;;;;:::o;40776:351::-;40846:6;40895:2;40883:9;40874:7;40870:23;40866:32;40863:119;;;40901:79;;:::i;:::-;40863:119;41021:1;41046:64;41102:7;41093:6;41082:9;41078:22;41046:64;:::i;:::-;41036:74;;40992:128;40776:351;;;;:::o;41133:85::-;41178:7;41207:5;41196:16;;41133:85;;;:::o;41224:158::-;41282:9;41315:61;41333:42;41342:32;41368:5;41342:32;:::i;:::-;41333:42;:::i;:::-;41315:61;:::i;:::-;41302:74;;41224:158;;;:::o;41388:147::-;41483:45;41522:5;41483:45;:::i;:::-;41478:3;41471:58;41388:147;;:::o;41541:114::-;41608:6;41642:5;41636:12;41626:22;;41541:114;;;:::o;41661:184::-;41760:11;41794:6;41789:3;41782:19;41834:4;41829:3;41825:14;41810:29;;41661:184;;;;:::o;41851:132::-;41918:4;41941:3;41933:11;;41971:4;41966:3;41962:14;41954:22;;41851:132;;;:::o;41989:108::-;42066:24;42084:5;42066:24;:::i;:::-;42061:3;42054:37;41989:108;;:::o;42103:179::-;42172:10;42193:46;42235:3;42227:6;42193:46;:::i;:::-;42271:4;42266:3;42262:14;42248:28;;42103:179;;;;:::o;42288:113::-;42358:4;42390;42385:3;42381:14;42373:22;;42288:113;;;:::o;42437:732::-;42556:3;42585:54;42633:5;42585:54;:::i;:::-;42655:86;42734:6;42729:3;42655:86;:::i;:::-;42648:93;;42765:56;42815:5;42765:56;:::i;:::-;42844:7;42875:1;42860:284;42885:6;42882:1;42879:13;42860:284;;;42961:6;42955:13;42988:63;43047:3;43032:13;42988:63;:::i;:::-;42981:70;;43074:60;43127:6;43074:60;:::i;:::-;43064:70;;42920:224;42907:1;42904;42900:9;42895:14;;42860:284;;;42864:14;43160:3;43153:10;;42561:608;;;42437:732;;;;:::o;43175:831::-;43438:4;43476:3;43465:9;43461:19;43453:27;;43490:71;43558:1;43547:9;43543:17;43534:6;43490:71;:::i;:::-;43571:80;43647:2;43636:9;43632:18;43623:6;43571:80;:::i;:::-;43698:9;43692:4;43688:20;43683:2;43672:9;43668:18;43661:48;43726:108;43829:4;43820:6;43726:108;:::i;:::-;43718:116;;43844:72;43912:2;43901:9;43897:18;43888:6;43844:72;:::i;:::-;43926:73;43994:3;43983:9;43979:19;43970:6;43926:73;:::i;:::-;43175:831;;;;;;;;:::o;44012:807::-;44261:4;44299:3;44288:9;44284:19;44276:27;;44313:71;44381:1;44370:9;44366:17;44357:6;44313:71;:::i;:::-;44394:72;44462:2;44451:9;44447:18;44438:6;44394:72;:::i;:::-;44476:80;44552:2;44541:9;44537:18;44528:6;44476:80;:::i;:::-;44566;44642:2;44631:9;44627:18;44618:6;44566:80;:::i;:::-;44656:73;44724:3;44713:9;44709:19;44700:6;44656:73;:::i;:::-;44739;44807:3;44796:9;44792:19;44783:6;44739:73;:::i;:::-;44012:807;;;;;;;;;:::o;44825:663::-;44913:6;44921;44929;44978:2;44966:9;44957:7;44953:23;44949:32;44946:119;;;44984:79;;:::i;:::-;44946:119;45104:1;45129:64;45185:7;45176:6;45165:9;45161:22;45129:64;:::i;:::-;45119:74;;45075:128;45242:2;45268:64;45324:7;45315:6;45304:9;45300:22;45268:64;:::i;:::-;45258:74;;45213:129;45381:2;45407:64;45463:7;45454:6;45443:9;45439:22;45407:64;:::i;:::-;45397:74;;45352:129;44825:663;;;;;:::o

Swarm Source

ipfs://91eb55f8ed29b50beae8d3b1d6d8fe0b3b90a77e5dd0e74cedee0785d23d8a88
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.