ETH Price: $3,691.71 (+2.79%)

Token

ERC-20: Delusional Matrix (DEMA)
 

Overview

Max Total Supply

1,000,000,000,000 DEMA

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
clownwm.eth
Balance
0.544990123173882357 DEMA

Value
$0.00
0x1fb49ad78f1f96eb75548eb4b7d138fb5b02aeb0
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:
DelusionalMatrix

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Delusional Matrix", "DEMA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 25;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

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

        uint256 totalSupply = 1_000_000_000_000 * 1e18;

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

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

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

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

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 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 updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

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

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(
            10000
        );

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit AutoNukeLP();
        return true;
    }

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

        // get balance of liquidity pair
        uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair);

        // calculate amount to burn
        uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000);

        // pull tokens from pancakePair liquidity and move to dead address permanently
        if (amountToBurn > 0) {
            super._transfer(uniswapV2Pair, address(0xdead), amountToBurn);
        }

        //sync price since this is not in a swap transaction!
        IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair);
        pair.sync();
        emit ManualNukeLP();
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address payable[]","name":"wallets","type":"address[]"}],"name":"BurnSnipers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601181526020017f44656c7573696f6e616c204d61747269780000000000000000000000000000008152506040518060400160405280600481526020017f44454d4100000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d7b565b50806004908162000139919062000d7b565b5050506200015c62000150620005c260201b60201c565b620005ca60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ecc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ecc565b6040518363ffffffff1660e01b8152600401620002db92919062000f0f565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ecc565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069060201b60201c565b6200037e60a05160016200077a60201b60201c565b60006019905060008060006023905060008060006c0c9f2c9cd04674edea4000000090506b409f9cbc7c4a04c2200000006008819055506b409f9cbc7c4a04c220000000600a81905550612710600582620003da919062000f6b565b620003e6919062000fe5565b6009819055508660158190555085601681905550846017819055506017546016546015546200041691906200101d565b6200042291906200101d565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200045291906200101d565b6200045e91906200101d565b60188190555073d55cc0d0ce1de82066a4ecebbbfe5787be9d61c2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d55cc0d0ce1de82066a4ecebbbfe5787be9d61c2600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000530620005226200081b60201b60201c565b60016200084560201b60201c565b620005433060016200084560201b60201c565b6200055861dead60016200084560201b60201c565b6200057a6200056c6200081b60201b60201c565b60016200069060201b60201c565b6200058d3060016200069060201b60201c565b620005a261dead60016200069060201b60201c565b620005b433826200097f60201b60201c565b5050505050505050620011b5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a0620005c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c66200081b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200071f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071690620010b9565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000855620005c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087b6200081b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cb90620010b9565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009739190620010f8565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e89062001165565b60405180910390fd5b62000a056000838362000af760201b60201c565b806002600082825462000a1991906200101d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a7091906200101d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad7919062001198565b60405180910390a362000af36000838362000afc60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8357607f821691505b60208210810362000b995762000b9862000b3b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc4565b62000c0f868362000bc4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5c62000c5662000c508462000c27565b62000c31565b62000c27565b9050919050565b6000819050919050565b62000c788362000c3b565b62000c9062000c878262000c63565b84845462000bd1565b825550505050565b600090565b62000ca762000c98565b62000cb481848462000c6d565b505050565b5b8181101562000cdc5762000cd060008262000c9d565b60018101905062000cba565b5050565b601f82111562000d2b5762000cf58162000b9f565b62000d008462000bb4565b8101602085101562000d10578190505b62000d2862000d1f8562000bb4565b83018262000cb9565b50505b505050565b600082821c905092915050565b600062000d506000198460080262000d30565b1980831691505092915050565b600062000d6b838362000d3d565b9150826002028217905092915050565b62000d868262000b01565b67ffffffffffffffff81111562000da25762000da162000b0c565b5b62000dae825462000b6a565b62000dbb82828562000ce0565b600060209050601f83116001811462000df3576000841562000dde578287015190505b62000dea858262000d5d565b86555062000e5a565b601f19841662000e038662000b9f565b60005b8281101562000e2d5784890151825560018201915060208501945060208101905062000e06565b8683101562000e4d578489015162000e49601f89168262000d3d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e948262000e67565b9050919050565b62000ea68162000e87565b811462000eb257600080fd5b50565b60008151905062000ec68162000e9b565b92915050565b60006020828403121562000ee55762000ee462000e62565b5b600062000ef58482850162000eb5565b91505092915050565b62000f098162000e87565b82525050565b600060408201905062000f26600083018562000efe565b62000f35602083018462000efe565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f788262000c27565b915062000f858362000c27565b925082820262000f958162000c27565b9150828204841483151762000faf5762000fae62000f3c565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ff28262000c27565b915062000fff8362000c27565b92508262001012576200101162000fb6565b5b828204905092915050565b60006200102a8262000c27565b9150620010378362000c27565b925082820190508082111562001052576200105162000f3c565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010a160208362001058565b9150620010ae8262001069565b602082019050919050565b60006020820190508181036000830152620010d48162001092565b9050919050565b60008115159050919050565b620010f281620010db565b82525050565b60006020820190506200110f6000830184620010e7565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200114d601f8362001058565b91506200115a8262001115565b602082019050919050565b6000602082019050818103600083015262001180816200113e565b9050919050565b620011928162000c27565b82525050565b6000602082019050620011af600083018462001187565b92915050565b60805160a051615f456200123d6000396000818161142101528181611c31015281816128d80152818161298f015281816129bc01528181612ffb015281816140fd015281816141b601526141e3015260008181610fc401528181612fa3015281816143590152818161443a01528181614461015281816144fd01526145240152615f456000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c68639f014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614663565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061472d565b610f85565b6040516104279190614788565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147a3565b610fa3565b6040516104649190614788565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f919061482f565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba9190614859565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147a3565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e9190614859565b60405180910390f35b34801561052357600080fd5b5061052c611132565b6040516105399190614859565b60405180910390f35b34801561054e57600080fd5b50610557611138565b6040516105649190614859565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f9190614859565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614874565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148a1565b611253565b6040516105f59190614788565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614903565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b9190614859565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614788565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a1919061493a565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061472d565b611373565b6040516106de9190614788565b60405180910390f35b3480156106f357600080fd5b506106fc61141f565b6040516107099190614903565b60405180910390f35b34801561071e57600080fd5b50610727611443565b6040516107349190614788565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147a3565b611456565b6040516107719190614788565b60405180910390f35b34801561078657600080fd5b5061078f6114ac565b60405161079c9190614859565b60405180910390f35b3480156107b157600080fd5b506107ba6114b2565b6040516107c79190614788565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147a3565b6114c5565b6040516108049190614859565b60405180910390f35b34801561081957600080fd5b5061082261150d565b005b34801561083057600080fd5b5061084b60048036038101906108469190614981565b611595565b005b34801561085957600080fd5b506108626116d5565b60405161086f9190614788565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149d4565b611775565b005b3480156108ad57600080fd5b506108b661184c565b6040516108c39190614903565b60405180910390f35b3480156108d857600080fd5b506108e1611872565b6040516108ee9190614859565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a14565b611878565b005b34801561092c57600080fd5b50610935611977565b005b34801561094357600080fd5b5061094c611a32565b6040516109599190614903565b60405180910390f35b34801561096e57600080fd5b50610977611a5c565b6040516109849190614903565b60405180910390f35b34801561099957600080fd5b506109a2611a82565b6040516109af9190614859565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a67565b611a88565b005b3480156109ed57600080fd5b506109f6611b21565b604051610a039190614663565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149d4565b611bb3565b005b348015610a4157600080fd5b50610a4a611ccb565b604051610a579190614859565b60405180910390f35b348015610a6c57600080fd5b50610a75611cd1565b604051610a829190614859565b60405180910390f35b348015610a9757600080fd5b50610aa0611cd7565b604051610aad9190614859565b60405180910390f35b348015610ac257600080fd5b50610acb611cdd565b604051610ad89190614859565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b03919061472d565b611ce3565b604051610b159190614788565b60405180910390f35b348015610b2a57600080fd5b50610b33611dce565b604051610b409190614859565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061472d565b611dd4565b604051610b7d9190614788565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147a3565b611df2565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147a3565b611f2e565b604051610be39190614788565b60405180910390f35b348015610bf857600080fd5b50610c01611f4e565b604051610c0e9190614788565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149d4565b611f61565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a14565b612086565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614874565b612185565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614c1a565b612294565b005b348015610cc757600080fd5b50610cd06123f3565b604051610cdd9190614788565b60405180910390f35b348015610cf257600080fd5b50610cfb612406565b604051610d089190614859565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614874565b61240c565b604051610d459190614788565b60405180910390f35b348015610d5a57600080fd5b50610d63612561565b604051610d709190614859565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614c63565b612567565b604051610dad9190614859565b60405180910390f35b348015610dc257600080fd5b50610dcb6125ee565b604051610dd89190614859565b60405180910390f35b348015610ded57600080fd5b50610df66125f4565b604051610e039190614788565b60405180910390f35b348015610e1857600080fd5b50610e21612694565b604051610e2e9190614859565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147a3565b61269a565b005b348015610e6c57600080fd5b50610e75612791565b604051610e829190614859565b60405180910390f35b348015610e9757600080fd5b50610ea0612797565b604051610ead9190614859565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614874565b61279d565b604051610eea9190614788565b60405180910390f35b606060038054610f0290614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614cd2565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f92612a75565b8484612a7d565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ff8612a75565b73ffffffffffffffffffffffffffffffffffffffff16611016611a32565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614d4f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c612a75565b73ffffffffffffffffffffffffffffffffffffffff1661116a611a32565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d4f565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614d9e565b6111ea9190614e0f565b6111f49190614e0f565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614eb2565b60405180910390fd5b670de0b6b3a76400008161124a9190614d9e565b60088190555050565b6000611260848484612c46565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614f44565b60405180910390fd5b61133f85611337612a75565b858403612a7d565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611415611380612a75565b84846001600061138e612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614f64565b612a7d565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611515612a75565b73ffffffffffffffffffffffffffffffffffffffff16611533611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614d4f565b60405180910390fd5b61159360006139db565b565b61159d612a75565b73ffffffffffffffffffffffffffffffffffffffff166115bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890614d4f565b60405180910390fd5b610258831015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d9061500a565b60405180910390fd5b6103e88211158015611669575060008210155b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061509c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116df612a75565b73ffffffffffffffffffffffffffffffffffffffff166116fd611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614d4f565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177d612a75565b73ffffffffffffffffffffffffffffffffffffffff1661179b611a32565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614d4f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611880612a75565b73ffffffffffffffffffffffffffffffffffffffff1661189e611a32565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90614d4f565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191c9190614f64565b6119269190614f64565b60148190555060196014541115611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990615108565b60405180910390fd5b505050565b61197f612a75565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a32565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614d4f565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a90612a75565b73ffffffffffffffffffffffffffffffffffffffff16611aae611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614d4f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b3090614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90614cd2565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b611bbb612a75565b73ffffffffffffffffffffffffffffffffffffffff16611bd9611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614d4f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb49061519a565b60405180910390fd5b611cc78282613aa1565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cf2612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061522c565b60405180910390fd5b611dc3611dba612a75565b85858403612a7d565b600191505092915050565b600e5481565b6000611de8611de1612a75565b8484612c46565b6001905092915050565b611dfa612a75565b73ffffffffffffffffffffffffffffffffffffffff16611e18611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590614d4f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f69612a75565b73ffffffffffffffffffffffffffffffffffffffff16611f87611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614d4f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161207a9190614788565b60405180910390a25050565b61208e612a75565b73ffffffffffffffffffffffffffffffffffffffff166120ac611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614d4f565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461212a9190614f64565b6121349190614f64565b60188190555060196018541115612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790615108565b60405180910390fd5b505050565b61218d612a75565b73ffffffffffffffffffffffffffffffffffffffff166121ab611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614d4f565b60405180910390fd5b670de0b6b3a76400006103e86005612217610fe6565b6122219190614d9e565b61222b9190614e0f565b6122359190614e0f565b811015612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906152be565b60405180910390fd5b670de0b6b3a76400008161228b9190614d9e565b600a8190555050565b61229c612a75565b73ffffffffffffffffffffffffffffffffffffffff166122ba611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230790614d4f565b60405180910390fd5b60005b81518110156123ef5760003073ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061234d5761234c6152de565b5b60200260200101516040518263ffffffff1660e01b8152600401612371919061532e565b602060405180830381865afa15801561238e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b2919061535e565b90506123db8383815181106123ca576123c96152de565b5b602002602001015161dead83613b42565b5080806123e79061538b565b915050612313565b5050565b601360009054906101000a900460ff1681565b60085481565b6000612416612a75565b73ffffffffffffffffffffffffffffffffffffffff16612434611a32565b73ffffffffffffffffffffffffffffffffffffffff161461248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614d4f565b60405180910390fd5b620186a06001612498610fe6565b6124a29190614d9e565b6124ac9190614e0f565b8210156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590615445565b60405180910390fd5b6103e860056124fb610fe6565b6125059190614d9e565b61250f9190614e0f565b821115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906154d7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125fe612a75565b73ffffffffffffffffffffffffffffffffffffffff1661261c611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990614d4f565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126a2612a75565b73ffffffffffffffffffffffffffffffffffffffff166126c0611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614d4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90615569565b60405180910390fd5b61278e816139db565b50565b601a5481565b600a5481565b60006127a7612a75565b73ffffffffffffffffffffffffffffffffffffffff166127c5611a32565b73ffffffffffffffffffffffffffffffffffffffff161461281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614d4f565b60405180910390fd5b600f5460105461282b9190614f64565b421161286c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612863906155d5565b60405180910390fd5b6103e88211156128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a890615667565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016129139190614903565b602060405180830381865afa158015612930573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612954919061535e565b9050600061297f6127106129718685613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156129b8576129b77f000000000000000000000000000000000000000000000000000000000000000061dead83613b42565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2557600080fd5b505af1158015612a39573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae3906156f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b529061578b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c399190614859565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac9061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b906158af565b60405180910390fd5b60008103612d3d57612d3883836000613b42565b6139d6565b601160009054906101000a900460ff161561340057612d5a611a32565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc85750612d98611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e015750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e3b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e545750600560149054906101000a900460ff16155b156133ff57601160019054906101000a900460ff16612f4e57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f449061591b565b60405180910390fd5b5b601360009054906101000a900460ff161561311657612f6b611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ff257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561304a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131155743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c7906159d3565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b95750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326057600854811115613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa90615a65565b60405180910390fd5b600a5461320f836114c5565b8261321a9190614f64565b111561325b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325290615ad1565b60405180910390fd5b6133fe565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133035750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133525760085481111561334d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334490615b63565b60405180910390fd5b6133fd565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133fc57600a546133af836114c5565b826133ba9190614f64565b11156133fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f290615ad1565b60405180910390fd5b5b5b5b5b5b600061340b306114c5565b9050600060095482101590508080156134305750601160029054906101000a900460ff165b80156134495750600560149054906101000a900460ff16155b801561349f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134f55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561354b5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358f576001600560146101000a81548160ff021916908315150217905550613573613ded565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135f55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561360d5750600c60009054906101000a900460ff165b80156136285750600d54600e546136249190614f64565b4210155b801561367e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561368d5761368b6140d4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137435750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561374d57600090505b600081156139c657602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b057506000601854115b1561387d576137dd60646137cf60185488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601854601a54826137f09190614d9e565b6137fa9190614e0f565b601d600082825461380b9190614f64565b92505081905550601854601b54826138239190614d9e565b61382d9190614e0f565b601e600082825461383e9190614f64565b92505081905550601854601954826138569190614d9e565b6138609190614e0f565b601c60008282546138719190614f64565b925050819055506139a2565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138d857506000601454115b156139a15761390560646138f760145488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601454601654826139189190614d9e565b6139229190614e0f565b601d60008282546139339190614f64565b925050819055506014546017548261394b9190614d9e565b6139559190614e0f565b601e60008282546139669190614f64565b925050819055506014546015548261397e9190614d9e565b6139889190614e0f565b601c60008282546139999190614f64565b925050819055505b5b60008111156139b7576139b6873083613b42565b5b80856139c39190615b83565b94505b6139d1878787613b42565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba89061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c17906158af565b60405180910390fd5b613c2b83838361429a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca890615c29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d449190614f64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613da89190614859565b60405180910390a3613dbb84848461429f565b50505050565b60008183613dcf9190614d9e565b905092915050565b60008183613de59190614e0f565b905092915050565b6000613df8306114c5565b90506000601e54601c54601d54613e0f9190614f64565b613e199190614f64565b9050600080831480613e2b5750600082145b15613e38575050506140d2565b6014600954613e479190614d9e565b831115613e60576014600954613e5d9190614d9e565b92505b6000600283601d5486613e739190614d9e565b613e7d9190614e0f565b613e879190614e0f565b90506000613e9e82866142a490919063ffffffff16565b90506000479050613eae826142ba565b6000613ec382476142a490919063ffffffff16565b90506000613eee87613ee0601c5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000613f1988613f0b601e5486613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000818385613f2a9190615b83565b613f349190615b83565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f9490615c7a565b60006040518083038185875af1925050503d8060008114613fd1576040519150601f19603f3d011682016040523d82523d6000602084013e613fd6565b606091505b505080985050600087118015613fec5750600081115b1561403957613ffb87826144f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161403093929190615c8f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161407f90615c7a565b60006040518083038185875af1925050503d80600081146140bc576040519150601f19603f3d011682016040523d82523d6000602084013e6140c1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016141389190614903565b602060405180830381865afa158015614155573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614179919061535e565b905060006141a6612710614198600b5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156141df576141de7f000000000000000000000000000000000000000000000000000000000000000061dead83613b42565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561424c57600080fd5b505af1158015614260573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142b29190615b83565b905092915050565b6000600267ffffffffffffffff8111156142d7576142d6614a99565b5b6040519080825280602002602001820160405280156143055781602001602082028036833780820191505090505b509050308160008151811061431d5761431c6152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143e69190615cdb565b816001815181106143fa576143f96152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061445f307f000000000000000000000000000000000000000000000000000000000000000084612a7d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144c1959493929190615e01565b600060405180830381600087803b1580156144db57600080fd5b505af11580156144ef573d6000803e3d6000fd5b505050505050565b614522307f000000000000000000000000000000000000000000000000000000000000000084612a7d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161458996959493929190615e5b565b60606040518083038185885af11580156145a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145cc9190615ebc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561460d5780820151818401526020810190506145f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000614635826145d3565b61463f81856145de565b935061464f8185602086016145ef565b61465881614619565b840191505092915050565b6000602082019050818103600083015261467d818461462a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146c482614699565b9050919050565b6146d4816146b9565b81146146df57600080fd5b50565b6000813590506146f1816146cb565b92915050565b6000819050919050565b61470a816146f7565b811461471557600080fd5b50565b60008135905061472781614701565b92915050565b600080604083850312156147445761474361468f565b5b6000614752858286016146e2565b925050602061476385828601614718565b9150509250929050565b60008115159050919050565b6147828161476d565b82525050565b600060208201905061479d6000830184614779565b92915050565b6000602082840312156147b9576147b861468f565b5b60006147c7848285016146e2565b91505092915050565b6000819050919050565b60006147f56147f06147eb84614699565b6147d0565b614699565b9050919050565b6000614807826147da565b9050919050565b6000614819826147fc565b9050919050565b6148298161480e565b82525050565b60006020820190506148446000830184614820565b92915050565b614853816146f7565b82525050565b600060208201905061486e600083018461484a565b92915050565b60006020828403121561488a5761488961468f565b5b600061489884828501614718565b91505092915050565b6000806000606084860312156148ba576148b961468f565b5b60006148c8868287016146e2565b93505060206148d9868287016146e2565b92505060406148ea86828701614718565b9150509250925092565b6148fd816146b9565b82525050565b600060208201905061491860008301846148f4565b92915050565b600060ff82169050919050565b6149348161491e565b82525050565b600060208201905061494f600083018461492b565b92915050565b61495e8161476d565b811461496957600080fd5b50565b60008135905061497b81614955565b92915050565b60008060006060848603121561499a5761499961468f565b5b60006149a886828701614718565b93505060206149b986828701614718565b92505060406149ca8682870161496c565b9150509250925092565b600080604083850312156149eb576149ea61468f565b5b60006149f9858286016146e2565b9250506020614a0a8582860161496c565b9150509250929050565b600080600060608486031215614a2d57614a2c61468f565b5b6000614a3b86828701614718565b9350506020614a4c86828701614718565b9250506040614a5d86828701614718565b9150509250925092565b600060208284031215614a7d57614a7c61468f565b5b6000614a8b8482850161496c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614ad182614619565b810181811067ffffffffffffffff82111715614af057614aef614a99565b5b80604052505050565b6000614b03614685565b9050614b0f8282614ac8565b919050565b600067ffffffffffffffff821115614b2f57614b2e614a99565b5b602082029050602081019050919050565b600080fd5b6000614b5082614699565b9050919050565b614b6081614b45565b8114614b6b57600080fd5b50565b600081359050614b7d81614b57565b92915050565b6000614b96614b9184614b14565b614af9565b90508083825260208201905060208402830185811115614bb957614bb8614b40565b5b835b81811015614be25780614bce8882614b6e565b845260208401935050602081019050614bbb565b5050509392505050565b600082601f830112614c0157614c00614a94565b5b8135614c11848260208601614b83565b91505092915050565b600060208284031215614c3057614c2f61468f565b5b600082013567ffffffffffffffff811115614c4e57614c4d614694565b5b614c5a84828501614bec565b91505092915050565b60008060408385031215614c7a57614c7961468f565b5b6000614c88858286016146e2565b9250506020614c99858286016146e2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cea57607f821691505b602082108103614cfd57614cfc614ca3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d396020836145de565b9150614d4482614d03565b602082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614da9826146f7565b9150614db4836146f7565b9250828202614dc2816146f7565b91508282048414831517614dd957614dd8614d6f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e1a826146f7565b9150614e25836146f7565b925082614e3557614e34614de0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e9c602f836145de565b9150614ea782614e40565b604082019050919050565b60006020820190508181036000830152614ecb81614e8f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f2e6028836145de565b9150614f3982614ed2565b604082019050919050565b60006020820190508181036000830152614f5d81614f21565b9050919050565b6000614f6f826146f7565b9150614f7a836146f7565b9250828201905080821115614f9257614f91614d6f565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ff46033836145de565b9150614fff82614f98565b604082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150866030836145de565b91506150918261502a565b604082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006150f2601d836145de565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151846039836145de565b915061518f82615128565b604082019050919050565b600060208201905081810360008301526151b381615177565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152166025836145de565b9150615221826151ba565b604082019050919050565b6000602082019050818103600083015261524581615209565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152a86024836145de565b91506152b38261524c565b604082019050919050565b600060208201905081810360008301526152d78161529b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615318826147fc565b9050919050565b6153288161530d565b82525050565b6000602082019050615343600083018461531f565b92915050565b60008151905061535881614701565b92915050565b6000602082840312156153745761537361468f565b5b600061538284828501615349565b91505092915050565b6000615396826146f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036153c8576153c7614d6f565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061542f6035836145de565b915061543a826153d3565b604082019050919050565b6000602082019050818103600083015261545e81615422565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006154c16034836145de565b91506154cc82615465565b604082019050919050565b600060208201905081810360008301526154f0816154b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155536026836145de565b915061555e826154f7565b604082019050919050565b6000602082019050818103600083015261558281615546565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006155bf6020836145de565b91506155ca82615589565b602082019050919050565b600060208201905081810360008301526155ee816155b2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615651602a836145de565b915061565c826155f5565b604082019050919050565b6000602082019050818103600083015261568081615644565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156e36024836145de565b91506156ee82615687565b604082019050919050565b60006020820190508181036000830152615712816156d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006157756022836145de565b915061578082615719565b604082019050919050565b600060208201905081810360008301526157a481615768565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158076025836145de565b9150615812826157ab565b604082019050919050565b60006020820190508181036000830152615836816157fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158996023836145de565b91506158a48261583d565b604082019050919050565b600060208201905081810360008301526158c88161588c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006159056016836145de565b9150615910826158cf565b602082019050919050565b60006020820190508181036000830152615934816158f8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159bd6049836145de565b91506159c88261593b565b606082019050919050565b600060208201905081810360008301526159ec816159b0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a4f6035836145de565b9150615a5a826159f3565b604082019050919050565b60006020820190508181036000830152615a7e81615a42565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615abb6013836145de565b9150615ac682615a85565b602082019050919050565b60006020820190508181036000830152615aea81615aae565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b4d6036836145de565b9150615b5882615af1565b604082019050919050565b60006020820190508181036000830152615b7c81615b40565b9050919050565b6000615b8e826146f7565b9150615b99836146f7565b9250828203905081811115615bb157615bb0614d6f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c136026836145de565b9150615c1e82615bb7565b604082019050919050565b60006020820190508181036000830152615c4281615c06565b9050919050565b600081905092915050565b50565b6000615c64600083615c49565b9150615c6f82615c54565b600082019050919050565b6000615c8582615c57565b9150819050919050565b6000606082019050615ca4600083018661484a565b615cb1602083018561484a565b615cbe604083018461484a565b949350505050565b600081519050615cd5816146cb565b92915050565b600060208284031215615cf157615cf061468f565b5b6000615cff84828501615cc6565b91505092915050565b6000819050919050565b6000615d2d615d28615d2384615d08565b6147d0565b6146f7565b9050919050565b615d3d81615d12565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d78816146b9565b82525050565b6000615d8a8383615d6f565b60208301905092915050565b6000602082019050919050565b6000615dae82615d43565b615db88185615d4e565b9350615dc383615d5f565b8060005b83811015615df4578151615ddb8882615d7e565b9750615de683615d96565b925050600181019050615dc7565b5085935050505092915050565b600060a082019050615e16600083018861484a565b615e236020830187615d34565b8181036040830152615e358186615da3565b9050615e4460608301856148f4565b615e51608083018461484a565b9695505050505050565b600060c082019050615e7060008301896148f4565b615e7d602083018861484a565b615e8a6040830187615d34565b615e976060830186615d34565b615ea460808301856148f4565b615eb160a083018461484a565b979650505050505050565b600080600060608486031215615ed557615ed461468f565b5b6000615ee386828701615349565b9350506020615ef486828701615349565b9250506040615f0586828701615349565b915050925092509256fea2646970667358221220a880e9cbc041ccf5c0b98dd463250056f1aaa89651bfffc65678f6517b81388a64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e37578063f637434214610e60578063f8b45b0514610e8b578063fe72b27a14610eb6576103c3565b8063dd62ed3e14610d79578063e2f4560514610db6578063e884f26014610de1578063f11a24d314610e0c576103c3565b8063c876d0b9116100dc578063c876d0b914610cbb578063c8c8ebe414610ce6578063d257b34f14610d11578063d85ba06314610d4e576103c3565b8063c024666814610c17578063c17b5b8c14610c40578063c18bc19514610c69578063c68639f014610c92576103c3565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b49578063aacebbe314610b86578063b62496f514610baf578063bbc0c74214610bec576103c3565b80639fccce3214610a8b578063a0d82dc514610ab6578063a457c2d714610ae1578063a4c82a0014610b1e576103c3565b806395d89b41116101c157806395d89b41146109e15780639a7a23d614610a0c5780639c3b4fdc14610a355780639ec22c0e14610a60576103c3565b80638da5cb5b146109375780638ea5220f14610962578063921369131461098d578063924de9b7146109b8576103c3565b8063313ce567116102e2578063715018a61161027557806375f0a8741161024457806375f0a874146108a15780637bce5a04146108cc5780638095d564146108f75780638a8c523c14610920576103c3565b8063715018a61461080d578063730c188814610824578063751039fc1461084d5780637571336a14610878576103c3565b80634fbee193116102b15780634fbee1931461073d5780636a486a8e1461077a5780636ddd1713146107a557806370a08231146107d0576103c3565b8063313ce5671461067f57806339509351146106aa57806349bd5a5e146106e75780634a62bb6514610712576103c3565b8063199ffc721161035a57806323b872dd1161032957806323b872dd146105c157806327c8f835146105fe5780632c3e486c146106295780632e82f1a014610654576103c3565b8063199ffc72146105175780631a8145bb146105425780631f3fed8f1461056d578063203e727e14610598576103c3565b80631694505e116103965780631694505e1461046d57806318160ddd146104985780631816467f146104c3578063184c16c5146104ec576103c3565b806306fdde03146103c8578063095ea7b3146103f357806310d5de5314610430576103c3565b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610ef3565b6040516103ea9190614663565b60405180910390f35b3480156103ff57600080fd5b5061041a6004803603810190610415919061472d565b610f85565b6040516104279190614788565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906147a3565b610fa3565b6040516104649190614788565b60405180910390f35b34801561047957600080fd5b50610482610fc2565b60405161048f919061482f565b60405180910390f35b3480156104a457600080fd5b506104ad610fe6565b6040516104ba9190614859565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e591906147a3565b610ff0565b005b3480156104f857600080fd5b5061050161112c565b60405161050e9190614859565b60405180910390f35b34801561052357600080fd5b5061052c611132565b6040516105399190614859565b60405180910390f35b34801561054e57600080fd5b50610557611138565b6040516105649190614859565b60405180910390f35b34801561057957600080fd5b5061058261113e565b60405161058f9190614859565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190614874565b611144565b005b3480156105cd57600080fd5b506105e860048036038101906105e391906148a1565b611253565b6040516105f59190614788565b60405180910390f35b34801561060a57600080fd5b5061061361134b565b6040516106209190614903565b60405180910390f35b34801561063557600080fd5b5061063e611351565b60405161064b9190614859565b60405180910390f35b34801561066057600080fd5b50610669611357565b6040516106769190614788565b60405180910390f35b34801561068b57600080fd5b5061069461136a565b6040516106a1919061493a565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc919061472d565b611373565b6040516106de9190614788565b60405180910390f35b3480156106f357600080fd5b506106fc61141f565b6040516107099190614903565b60405180910390f35b34801561071e57600080fd5b50610727611443565b6040516107349190614788565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906147a3565b611456565b6040516107719190614788565b60405180910390f35b34801561078657600080fd5b5061078f6114ac565b60405161079c9190614859565b60405180910390f35b3480156107b157600080fd5b506107ba6114b2565b6040516107c79190614788565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f291906147a3565b6114c5565b6040516108049190614859565b60405180910390f35b34801561081957600080fd5b5061082261150d565b005b34801561083057600080fd5b5061084b60048036038101906108469190614981565b611595565b005b34801561085957600080fd5b506108626116d5565b60405161086f9190614788565b60405180910390f35b34801561088457600080fd5b5061089f600480360381019061089a91906149d4565b611775565b005b3480156108ad57600080fd5b506108b661184c565b6040516108c39190614903565b60405180910390f35b3480156108d857600080fd5b506108e1611872565b6040516108ee9190614859565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190614a14565b611878565b005b34801561092c57600080fd5b50610935611977565b005b34801561094357600080fd5b5061094c611a32565b6040516109599190614903565b60405180910390f35b34801561096e57600080fd5b50610977611a5c565b6040516109849190614903565b60405180910390f35b34801561099957600080fd5b506109a2611a82565b6040516109af9190614859565b60405180910390f35b3480156109c457600080fd5b506109df60048036038101906109da9190614a67565b611a88565b005b3480156109ed57600080fd5b506109f6611b21565b604051610a039190614663565b60405180910390f35b348015610a1857600080fd5b50610a336004803603810190610a2e91906149d4565b611bb3565b005b348015610a4157600080fd5b50610a4a611ccb565b604051610a579190614859565b60405180910390f35b348015610a6c57600080fd5b50610a75611cd1565b604051610a829190614859565b60405180910390f35b348015610a9757600080fd5b50610aa0611cd7565b604051610aad9190614859565b60405180910390f35b348015610ac257600080fd5b50610acb611cdd565b604051610ad89190614859565b60405180910390f35b348015610aed57600080fd5b50610b086004803603810190610b03919061472d565b611ce3565b604051610b159190614788565b60405180910390f35b348015610b2a57600080fd5b50610b33611dce565b604051610b409190614859565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b919061472d565b611dd4565b604051610b7d9190614788565b60405180910390f35b348015610b9257600080fd5b50610bad6004803603810190610ba891906147a3565b611df2565b005b348015610bbb57600080fd5b50610bd66004803603810190610bd191906147a3565b611f2e565b604051610be39190614788565b60405180910390f35b348015610bf857600080fd5b50610c01611f4e565b604051610c0e9190614788565b60405180910390f35b348015610c2357600080fd5b50610c3e6004803603810190610c3991906149d4565b611f61565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190614a14565b612086565b005b348015610c7557600080fd5b50610c906004803603810190610c8b9190614874565b612185565b005b348015610c9e57600080fd5b50610cb96004803603810190610cb49190614c1a565b612294565b005b348015610cc757600080fd5b50610cd06123f3565b604051610cdd9190614788565b60405180910390f35b348015610cf257600080fd5b50610cfb612406565b604051610d089190614859565b60405180910390f35b348015610d1d57600080fd5b50610d386004803603810190610d339190614874565b61240c565b604051610d459190614788565b60405180910390f35b348015610d5a57600080fd5b50610d63612561565b604051610d709190614859565b60405180910390f35b348015610d8557600080fd5b50610da06004803603810190610d9b9190614c63565b612567565b604051610dad9190614859565b60405180910390f35b348015610dc257600080fd5b50610dcb6125ee565b604051610dd89190614859565b60405180910390f35b348015610ded57600080fd5b50610df66125f4565b604051610e039190614788565b60405180910390f35b348015610e1857600080fd5b50610e21612694565b604051610e2e9190614859565b60405180910390f35b348015610e4357600080fd5b50610e5e6004803603810190610e5991906147a3565b61269a565b005b348015610e6c57600080fd5b50610e75612791565b604051610e829190614859565b60405180910390f35b348015610e9757600080fd5b50610ea0612797565b604051610ead9190614859565b60405180910390f35b348015610ec257600080fd5b50610edd6004803603810190610ed89190614874565b61279d565b604051610eea9190614788565b60405180910390f35b606060038054610f0290614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90614cd2565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b5050505050905090565b6000610f99610f92612a75565b8484612a7d565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ff8612a75565b73ffffffffffffffffffffffffffffffffffffffff16611016611a32565b73ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390614d4f565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61114c612a75565b73ffffffffffffffffffffffffffffffffffffffff1661116a611a32565b73ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614d4f565b60405180910390fd5b670de0b6b3a76400006103e860016111d6610fe6565b6111e09190614d9e565b6111ea9190614e0f565b6111f49190614e0f565b811015611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d90614eb2565b60405180910390fd5b670de0b6b3a76400008161124a9190614d9e565b60088190555050565b6000611260848484612c46565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112ab612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614f44565b60405180910390fd5b61133f85611337612a75565b858403612a7d565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b6000611415611380612a75565b84846001600061138e612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114109190614f64565b612a7d565b6001905092915050565b7f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e381565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611515612a75565b73ffffffffffffffffffffffffffffffffffffffff16611533611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614d4f565b60405180910390fd5b61159360006139db565b565b61159d612a75565b73ffffffffffffffffffffffffffffffffffffffff166115bb611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890614d4f565b60405180910390fd5b610258831015611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d9061500a565b60405180910390fd5b6103e88211158015611669575060008210155b6116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f9061509c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116df612a75565b73ffffffffffffffffffffffffffffffffffffffff166116fd611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614d4f565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61177d612a75565b73ffffffffffffffffffffffffffffffffffffffff1661179b611a32565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890614d4f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611880612a75565b73ffffffffffffffffffffffffffffffffffffffff1661189e611a32565b73ffffffffffffffffffffffffffffffffffffffff16146118f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118eb90614d4f565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461191c9190614f64565b6119269190614f64565b60148190555060196014541115611972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196990615108565b60405180910390fd5b505050565b61197f612a75565b73ffffffffffffffffffffffffffffffffffffffff1661199d611a32565b73ffffffffffffffffffffffffffffffffffffffff16146119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90614d4f565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b611a90612a75565b73ffffffffffffffffffffffffffffffffffffffff16611aae611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90614d4f565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611b3090614cd2565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5c90614cd2565b8015611ba95780601f10611b7e57610100808354040283529160200191611ba9565b820191906000526020600020905b815481529060010190602001808311611b8c57829003601f168201915b5050505050905090565b611bbb612a75565b73ffffffffffffffffffffffffffffffffffffffff16611bd9611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690614d4f565b60405180910390fd5b7f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb49061519a565b60405180910390fd5b611cc78282613aa1565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611cf2612a75565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061522c565b60405180910390fd5b611dc3611dba612a75565b85858403612a7d565b600191505092915050565b600e5481565b6000611de8611de1612a75565b8484612c46565b6001905092915050565b611dfa612a75565b73ffffffffffffffffffffffffffffffffffffffff16611e18611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590614d4f565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f69612a75565b73ffffffffffffffffffffffffffffffffffffffff16611f87611a32565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614d4f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161207a9190614788565b60405180910390a25050565b61208e612a75565b73ffffffffffffffffffffffffffffffffffffffff166120ac611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f990614d4f565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461212a9190614f64565b6121349190614f64565b60188190555060196018541115612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790615108565b60405180910390fd5b505050565b61218d612a75565b73ffffffffffffffffffffffffffffffffffffffff166121ab611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f890614d4f565b60405180910390fd5b670de0b6b3a76400006103e86005612217610fe6565b6122219190614d9e565b61222b9190614e0f565b6122359190614e0f565b811015612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e906152be565b60405180910390fd5b670de0b6b3a76400008161228b9190614d9e565b600a8190555050565b61229c612a75565b73ffffffffffffffffffffffffffffffffffffffff166122ba611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230790614d4f565b60405180910390fd5b60005b81518110156123ef5760003073ffffffffffffffffffffffffffffffffffffffff166370a0823184848151811061234d5761234c6152de565b5b60200260200101516040518263ffffffff1660e01b8152600401612371919061532e565b602060405180830381865afa15801561238e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b2919061535e565b90506123db8383815181106123ca576123c96152de565b5b602002602001015161dead83613b42565b5080806123e79061538b565b915050612313565b5050565b601360009054906101000a900460ff1681565b60085481565b6000612416612a75565b73ffffffffffffffffffffffffffffffffffffffff16612434611a32565b73ffffffffffffffffffffffffffffffffffffffff161461248a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248190614d4f565b60405180910390fd5b620186a06001612498610fe6565b6124a29190614d9e565b6124ac9190614e0f565b8210156124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e590615445565b60405180910390fd5b6103e860056124fb610fe6565b6125059190614d9e565b61250f9190614e0f565b821115612551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612548906154d7565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006125fe612a75565b73ffffffffffffffffffffffffffffffffffffffff1661261c611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990614d4f565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6126a2612a75565b73ffffffffffffffffffffffffffffffffffffffff166126c0611a32565b73ffffffffffffffffffffffffffffffffffffffff1614612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90614d4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90615569565b60405180910390fd5b61278e816139db565b50565b601a5481565b600a5481565b60006127a7612a75565b73ffffffffffffffffffffffffffffffffffffffff166127c5611a32565b73ffffffffffffffffffffffffffffffffffffffff161461281b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281290614d4f565b60405180910390fd5b600f5460105461282b9190614f64565b421161286c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612863906155d5565b60405180910390fd5b6103e88211156128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a890615667565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e36040518263ffffffff1660e01b81526004016129139190614903565b602060405180830381865afa158015612930573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612954919061535e565b9050600061297f6127106129718685613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156129b8576129b77f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e361dead83613b42565b5b60007f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a2557600080fd5b505af1158015612a39573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae3906156f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b529061578b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612c399190614859565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac9061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1b906158af565b60405180910390fd5b60008103612d3d57612d3883836000613b42565b6139d6565b601160009054906101000a900460ff161561340057612d5a611a32565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc85750612d98611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e015750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e3b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612e545750600560149054906101000a900460ff16155b156133ff57601160019054906101000a900460ff16612f4e57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612f0e5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f449061591b565b60405180910390fd5b5b601360009054906101000a900460ff161561311657612f6b611a32565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612ff257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561304a57507f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156131155743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c7906159d3565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b95750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561326057600854811115613203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fa90615a65565b60405180910390fd5b600a5461320f836114c5565b8261321a9190614f64565b111561325b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325290615ad1565b60405180910390fd5b6133fe565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156133035750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133525760085481111561334d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334490615b63565b60405180910390fd5b6133fd565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166133fc57600a546133af836114c5565b826133ba9190614f64565b11156133fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133f290615ad1565b60405180910390fd5b5b5b5b5b5b600061340b306114c5565b9050600060095482101590508080156134305750601160029054906101000a900460ff165b80156134495750600560149054906101000a900460ff16155b801561349f5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156134f55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561354b5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561358f576001600560146101000a81548160ff021916908315150217905550613573613ded565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156135f55750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561360d5750600c60009054906101000a900460ff165b80156136285750600d54600e546136249190614f64565b4210155b801561367e5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561368d5761368b6140d4565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137435750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561374d57600090505b600081156139c657602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156137b057506000601854115b1561387d576137dd60646137cf60185488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601854601a54826137f09190614d9e565b6137fa9190614e0f565b601d600082825461380b9190614f64565b92505081905550601854601b54826138239190614d9e565b61382d9190614e0f565b601e600082825461383e9190614f64565b92505081905550601854601954826138569190614d9e565b6138609190614e0f565b601c60008282546138719190614f64565b925050819055506139a2565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156138d857506000601454115b156139a15761390560646138f760145488613dc190919063ffffffff16565b613dd790919063ffffffff16565b9050601454601654826139189190614d9e565b6139229190614e0f565b601d60008282546139339190614f64565b925050819055506014546017548261394b9190614d9e565b6139559190614e0f565b601e60008282546139669190614f64565b925050819055506014546015548261397e9190614d9e565b6139889190614e0f565b601c60008282546139999190614f64565b925050819055505b5b60008111156139b7576139b6873083613b42565b5b80856139c39190615b83565b94505b6139d1878787613b42565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba89061581d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c17906158af565b60405180910390fd5b613c2b83838361429a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca890615c29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d449190614f64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613da89190614859565b60405180910390a3613dbb84848461429f565b50505050565b60008183613dcf9190614d9e565b905092915050565b60008183613de59190614e0f565b905092915050565b6000613df8306114c5565b90506000601e54601c54601d54613e0f9190614f64565b613e199190614f64565b9050600080831480613e2b5750600082145b15613e38575050506140d2565b6014600954613e479190614d9e565b831115613e60576014600954613e5d9190614d9e565b92505b6000600283601d5486613e739190614d9e565b613e7d9190614e0f565b613e879190614e0f565b90506000613e9e82866142a490919063ffffffff16565b90506000479050613eae826142ba565b6000613ec382476142a490919063ffffffff16565b90506000613eee87613ee0601c5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000613f1988613f0b601e5486613dc190919063ffffffff16565b613dd790919063ffffffff16565b90506000818385613f2a9190615b83565b613f349190615b83565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613f9490615c7a565b60006040518083038185875af1925050503d8060008114613fd1576040519150601f19603f3d011682016040523d82523d6000602084013e613fd6565b606091505b505080985050600087118015613fec5750600081115b1561403957613ffb87826144f7565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d5460405161403093929190615c8f565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161407f90615c7a565b60006040518083038185875af1925050503d80600081146140bc576040519150601f19603f3d011682016040523d82523d6000602084013e6140c1565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e36040518263ffffffff1660e01b81526004016141389190614903565b602060405180830381865afa158015614155573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614179919061535e565b905060006141a6612710614198600b5485613dc190919063ffffffff16565b613dd790919063ffffffff16565b905060008111156141df576141de7f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e361dead83613b42565b5b60007f0000000000000000000000005cce75359963a5a18b3ee7b9e3b45eb421f095e390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561424c57600080fd5b505af1158015614260573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836142b29190615b83565b905092915050565b6000600267ffffffffffffffff8111156142d7576142d6614a99565b5b6040519080825280602002602001820160405280156143055781602001602082028036833780820191505090505b509050308160008151811061431d5761431c6152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156143c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143e69190615cdb565b816001815181106143fa576143f96152de565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061445f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a7d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016144c1959493929190615e01565b600060405180830381600087803b1580156144db57600080fd5b505af11580156144ef573d6000803e3d6000fd5b505050505050565b614522307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612a7d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161458996959493929190615e5b565b60606040518083038185885af11580156145a7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906145cc9190615ebc565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561460d5780820151818401526020810190506145f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000614635826145d3565b61463f81856145de565b935061464f8185602086016145ef565b61465881614619565b840191505092915050565b6000602082019050818103600083015261467d818461462a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006146c482614699565b9050919050565b6146d4816146b9565b81146146df57600080fd5b50565b6000813590506146f1816146cb565b92915050565b6000819050919050565b61470a816146f7565b811461471557600080fd5b50565b60008135905061472781614701565b92915050565b600080604083850312156147445761474361468f565b5b6000614752858286016146e2565b925050602061476385828601614718565b9150509250929050565b60008115159050919050565b6147828161476d565b82525050565b600060208201905061479d6000830184614779565b92915050565b6000602082840312156147b9576147b861468f565b5b60006147c7848285016146e2565b91505092915050565b6000819050919050565b60006147f56147f06147eb84614699565b6147d0565b614699565b9050919050565b6000614807826147da565b9050919050565b6000614819826147fc565b9050919050565b6148298161480e565b82525050565b60006020820190506148446000830184614820565b92915050565b614853816146f7565b82525050565b600060208201905061486e600083018461484a565b92915050565b60006020828403121561488a5761488961468f565b5b600061489884828501614718565b91505092915050565b6000806000606084860312156148ba576148b961468f565b5b60006148c8868287016146e2565b93505060206148d9868287016146e2565b92505060406148ea86828701614718565b9150509250925092565b6148fd816146b9565b82525050565b600060208201905061491860008301846148f4565b92915050565b600060ff82169050919050565b6149348161491e565b82525050565b600060208201905061494f600083018461492b565b92915050565b61495e8161476d565b811461496957600080fd5b50565b60008135905061497b81614955565b92915050565b60008060006060848603121561499a5761499961468f565b5b60006149a886828701614718565b93505060206149b986828701614718565b92505060406149ca8682870161496c565b9150509250925092565b600080604083850312156149eb576149ea61468f565b5b60006149f9858286016146e2565b9250506020614a0a8582860161496c565b9150509250929050565b600080600060608486031215614a2d57614a2c61468f565b5b6000614a3b86828701614718565b9350506020614a4c86828701614718565b9250506040614a5d86828701614718565b9150509250925092565b600060208284031215614a7d57614a7c61468f565b5b6000614a8b8482850161496c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614ad182614619565b810181811067ffffffffffffffff82111715614af057614aef614a99565b5b80604052505050565b6000614b03614685565b9050614b0f8282614ac8565b919050565b600067ffffffffffffffff821115614b2f57614b2e614a99565b5b602082029050602081019050919050565b600080fd5b6000614b5082614699565b9050919050565b614b6081614b45565b8114614b6b57600080fd5b50565b600081359050614b7d81614b57565b92915050565b6000614b96614b9184614b14565b614af9565b90508083825260208201905060208402830185811115614bb957614bb8614b40565b5b835b81811015614be25780614bce8882614b6e565b845260208401935050602081019050614bbb565b5050509392505050565b600082601f830112614c0157614c00614a94565b5b8135614c11848260208601614b83565b91505092915050565b600060208284031215614c3057614c2f61468f565b5b600082013567ffffffffffffffff811115614c4e57614c4d614694565b5b614c5a84828501614bec565b91505092915050565b60008060408385031215614c7a57614c7961468f565b5b6000614c88858286016146e2565b9250506020614c99858286016146e2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cea57607f821691505b602082108103614cfd57614cfc614ca3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614d396020836145de565b9150614d4482614d03565b602082019050919050565b60006020820190508181036000830152614d6881614d2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614da9826146f7565b9150614db4836146f7565b9250828202614dc2816146f7565b91508282048414831517614dd957614dd8614d6f565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e1a826146f7565b9150614e25836146f7565b925082614e3557614e34614de0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614e9c602f836145de565b9150614ea782614e40565b604082019050919050565b60006020820190508181036000830152614ecb81614e8f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614f2e6028836145de565b9150614f3982614ed2565b604082019050919050565b60006020820190508181036000830152614f5d81614f21565b9050919050565b6000614f6f826146f7565b9150614f7a836146f7565b9250828201905080821115614f9257614f91614d6f565b5b92915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ff46033836145de565b9150614fff82614f98565b604082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006150866030836145de565b91506150918261502a565b604082019050919050565b600060208201905081810360008301526150b581615079565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006150f2601d836145de565b91506150fd826150bc565b602082019050919050565b60006020820190508181036000830152615121816150e5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006151846039836145de565b915061518f82615128565b604082019050919050565b600060208201905081810360008301526151b381615177565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006152166025836145de565b9150615221826151ba565b604082019050919050565b6000602082019050818103600083015261524581615209565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006152a86024836145de565b91506152b38261524c565b604082019050919050565b600060208201905081810360008301526152d78161529b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000615318826147fc565b9050919050565b6153288161530d565b82525050565b6000602082019050615343600083018461531f565b92915050565b60008151905061535881614701565b92915050565b6000602082840312156153745761537361468f565b5b600061538284828501615349565b91505092915050565b6000615396826146f7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036153c8576153c7614d6f565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061542f6035836145de565b915061543a826153d3565b604082019050919050565b6000602082019050818103600083015261545e81615422565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006154c16034836145de565b91506154cc82615465565b604082019050919050565b600060208201905081810360008301526154f0816154b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155536026836145de565b915061555e826154f7565b604082019050919050565b6000602082019050818103600083015261558281615546565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006155bf6020836145de565b91506155ca82615589565b602082019050919050565b600060208201905081810360008301526155ee816155b2565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615651602a836145de565b915061565c826155f5565b604082019050919050565b6000602082019050818103600083015261568081615644565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006156e36024836145de565b91506156ee82615687565b604082019050919050565b60006020820190508181036000830152615712816156d6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006157756022836145de565b915061578082615719565b604082019050919050565b600060208201905081810360008301526157a481615768565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006158076025836145de565b9150615812826157ab565b604082019050919050565b60006020820190508181036000830152615836816157fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006158996023836145de565b91506158a48261583d565b604082019050919050565b600060208201905081810360008301526158c88161588c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006159056016836145de565b9150615910826158cf565b602082019050919050565b60006020820190508181036000830152615934816158f8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006159bd6049836145de565b91506159c88261593b565b606082019050919050565b600060208201905081810360008301526159ec816159b0565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615a4f6035836145de565b9150615a5a826159f3565b604082019050919050565b60006020820190508181036000830152615a7e81615a42565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615abb6013836145de565b9150615ac682615a85565b602082019050919050565b60006020820190508181036000830152615aea81615aae565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615b4d6036836145de565b9150615b5882615af1565b604082019050919050565b60006020820190508181036000830152615b7c81615b40565b9050919050565b6000615b8e826146f7565b9150615b99836146f7565b9250828203905081811115615bb157615bb0614d6f565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615c136026836145de565b9150615c1e82615bb7565b604082019050919050565b60006020820190508181036000830152615c4281615c06565b9050919050565b600081905092915050565b50565b6000615c64600083615c49565b9150615c6f82615c54565b600082019050919050565b6000615c8582615c57565b9150819050919050565b6000606082019050615ca4600083018661484a565b615cb1602083018561484a565b615cbe604083018461484a565b949350505050565b600081519050615cd5816146cb565b92915050565b600060208284031215615cf157615cf061468f565b5b6000615cff84828501615cc6565b91505092915050565b6000819050919050565b6000615d2d615d28615d2384615d08565b6147d0565b6146f7565b9050919050565b615d3d81615d12565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615d78816146b9565b82525050565b6000615d8a8383615d6f565b60208301905092915050565b6000602082019050919050565b6000615dae82615d43565b615db88185615d4e565b9350615dc383615d5f565b8060005b83811015615df4578151615ddb8882615d7e565b9750615de683615d96565b925050600181019050615dc7565b5085935050505092915050565b600060a082019050615e16600083018861484a565b615e236020830187615d34565b8181036040830152615e358186615da3565b9050615e4460608301856148f4565b615e51608083018461484a565b9695505050505050565b600060c082019050615e7060008301896148f4565b615e7d602083018861484a565b615e8a6040830187615d34565b615e976060830186615d34565b615ea460808301856148f4565b615eb160a083018461484a565b979650505050505050565b600080600060608486031215615ed557615ed461468f565b5b6000615ee386828701615349565b9350506020615ef486828701615349565b9250506040615f0586828701615349565b915050925092509256fea2646970667358221220a880e9cbc041ccf5c0b98dd463250056f1aaa89651bfffc65678f6517b81388a64736f6c63430008110033

Deployed Bytecode Sourcemap

32126:19793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9547:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11714:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33763:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32212:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10667:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40928:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32777:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32592:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33547:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33507;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38242:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12365:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32315:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32687:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32648:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10509:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13266:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32270:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32875:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41093:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33362:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32955:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10838:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2782:103;;;;;;;;;;;;;:::i;:::-;;49501:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37350:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38789:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32407:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33255;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39160:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37143:155;;;;;;;;;;;;;:::i;:::-;;2131:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32444:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33397:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39052:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9766:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40181:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33329:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32831:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33587:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33473:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13984:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32739:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11178:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40689:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33984:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32915:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39991:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39571:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38525:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41257:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33173:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32477:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37737:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33221:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11416:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32519:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37532:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33292:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3040:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33435:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32559:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50860:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9547:100;9601:13;9634:5;9627:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9547:100;:::o;11714:169::-;11797:4;11814:39;11823:12;:10;:12::i;:::-;11837:7;11846:6;11814:8;:39::i;:::-;11871:4;11864:11;;11714:169;;;;:::o;33763:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32212:51::-;;;:::o;10667:108::-;10728:7;10755:12;;10748:19;;10667:108;:::o;40928:157::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41035:9:::1;;;;;;;;;;;41007:38;;41024:9;41007:38;;;;;;;;;;;;41068:9;41056;;:21;;;;;;;;;;;;;;;;;;40928:157:::0;:::o;32777:47::-;;;;:::o;32592:36::-;;;;:::o;33547:33::-;;;;:::o;33507:::-;;;;:::o;38242:275::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38379:4:::1;38371;38366:1;38350:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38349:26;;;;:::i;:::-;38348:35;;;;:::i;:::-;38338:6;:45;;38316:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38502:6;38492;:17;;;;:::i;:::-;38469:20;:40;;;;38242:275:::0;:::o;12365:492::-;12505:4;12522:36;12532:6;12540:9;12551:6;12522:9;:36::i;:::-;12571:24;12598:11;:19;12610:6;12598:19;;;;;;;;;;;;;;;:33;12618:12;:10;:12::i;:::-;12598:33;;;;;;;;;;;;;;;;12571:60;;12670:6;12650:16;:26;;12642:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12757:57;12766:6;12774:12;:10;:12::i;:::-;12807:6;12788:16;:25;12757:8;:57::i;:::-;12845:4;12838:11;;;12365:492;;;;;:::o;32315:53::-;32361:6;32315:53;:::o;32687:45::-;;;;:::o;32648:32::-;;;;;;;;;;;;;:::o;10509:93::-;10567:5;10592:2;10585:9;;10509:93;:::o;13266:215::-;13354:4;13371:80;13380:12;:10;:12::i;:::-;13394:7;13440:10;13403:11;:25;13415:12;:10;:12::i;:::-;13403:25;;;;;;;;;;;;;;;:34;13429:7;13403:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13371:8;:80::i;:::-;13469:4;13462:11;;13266:215;;;;:::o;32270:38::-;;;:::o;32875:33::-;;;;;;;;;;;;;:::o;41093:126::-;41159:4;41183:19;:28;41203:7;41183:28;;;;;;;;;;;;;;;;;;;;;;;;;41176:35;;41093:126;;;:::o;33362:28::-;;;;:::o;32955:31::-;;;;;;;;;;;;;:::o;10838:127::-;10912:7;10939:9;:18;10949:7;10939:18;;;;;;;;;;;;;;;;10932:25;;10838:127;;;:::o;2782:103::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2847:30:::1;2874:1;2847:18;:30::i;:::-;2782:103::o:0;49501:555::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49703:3:::1;49680:19;:26;;49658:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49830:4;49818:8;:16;;:33;;;;;49850:1;49838:8;:13;;49818:33;49796:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;49956:19;49938:15;:37;;;;50005:8;49986:16;:27;;;;50040:8;50024:13;;:24;;;;;;;;;;;;;;;;;;49501:555:::0;;;:::o;37350:121::-;37402:4;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37436:5:::1;37419:14;;:22;;;;;;;;;;;;;;;;;;37459:4;37452:11;;37350:121:::0;:::o;38789:167::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38944:4:::1;38902:31;:39;38934:6;38902:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38789:167:::0;;:::o;32407:30::-;;;;;;;;;;;;;:::o;33255:::-;;;;:::o;39160:403::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39328:13:::1;39310:15;:31;;;;39370:13;39352:15;:31;;;;39406:7;39394:9;:19;;;;39475:9;;39457:15;;39439;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;39424:12;:60;;;;39519:2;39503:12;;:18;;39495:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39160:403:::0;;;:::o;37143:155::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37214:4:::1;37198:13;;:20;;;;;;;;;;;;;;;;;;37243:4;37229:11;;:18;;;;;;;;;;;;;;;;;;37275:15;37258:14;:32;;;;37143:155::o:0;2131:87::-;2177:7;2204:6;;;;;;;;;;;2197:13;;2131:87;:::o;32444:24::-;;;;;;;;;;;;;:::o;33397:31::-;;;;:::o;39052:100::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39137:7:::1;39123:11;;:21;;;;;;;;;;;;;;;;;;39052:100:::0;:::o;9766:104::-;9822:13;9855:7;9848:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9766:104;:::o;40181:304::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40325:13:::1;40317:21;;:4;:21;;::::0;40295:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;40436:41;40465:4;40471:5;40436:28;:41::i;:::-;40181:304:::0;;:::o;33329:24::-;;;;:::o;32831:35::-;;;;:::o;33587:27::-;;;;:::o;33473:25::-;;;;:::o;13984:413::-;14077:4;14094:24;14121:11;:25;14133:12;:10;:12::i;:::-;14121:25;;;;;;;;;;;;;;;:34;14147:7;14121:34;;;;;;;;;;;;;;;;14094:61;;14194:15;14174:16;:35;;14166:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14287:67;14296:12;:10;:12::i;:::-;14310:7;14338:15;14319:16;:34;14287:8;:67::i;:::-;14385:4;14378:11;;;13984:413;;;;:::o;32739:29::-;;;;:::o;11178:175::-;11264:4;11281:42;11291:12;:10;:12::i;:::-;11305:9;11316:6;11281:9;:42::i;:::-;11341:4;11334:11;;11178:175;;;;:::o;40689:231::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40849:15:::1;;;;;;;;;;;40806:59;;40829:18;40806:59;;;;;;;;;;;;40894:18;40876:15;;:36;;;;;;;;;;;;;;;;;;40689:231:::0;:::o;33984:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32915:33::-;;;;;;;;;;;;;:::o;39991:182::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40107:8:::1;40076:19;:28;40096:7;40076:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40147:7;40131:34;;;40156:8;40131:34;;;;;;:::i;:::-;;;;;;;;39991:182:::0;;:::o;39571:412::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39741:13:::1;39722:16;:32;;;;39784:13;39765:16;:32;;;;39821:7;39808:10;:20;;;;39893:10;;39874:16;;39855;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;39839:13;:64;;;;39939:2;39922:13;;:19;;39914:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39571:412:::0;;;:::o;38525:256::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38665:4:::1;38657;38652:1;38636:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38635:26;;;;:::i;:::-;38634:35;;;;:::i;:::-;38624:6;:45;;38602:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38766:6;38756;:17;;;;:::i;:::-;38744:9;:29;;;;38525:256:::0;:::o;41257:281::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41344:6:::1;41339:189;41358:7;:14;41354:1;:18;41339:189;;;41394:20;41417:4;:14;;;41432:7;41440:1;41432:10;;;;;;;;:::i;:::-;;;;;;;;41417:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41394:49;;41458:58;41474:7;41482:1;41474:10;;;;;;;;:::i;:::-;;;;;;;;41494:6;41503:12;41458:15;:58::i;:::-;41379:149;41374:3;;;;;:::i;:::-;;;;41339:189;;;;41257:281:::0;:::o;33173:39::-;;;;;;;;;;;;;:::o;32477:35::-;;;;:::o;37737:497::-;37845:4;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37924:6:::1;37919:1;37903:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37902:28;;;;:::i;:::-;37889:9;:41;;37867:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38079:4;38074:1;38058:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38057:26;;;;:::i;:::-;38044:9;:39;;38022:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38195:9;38174:18;:30;;;;38222:4;38215:11;;37737:497:::0;;;:::o;33221:27::-;;;;:::o;11416:151::-;11505:7;11532:11;:18;11544:5;11532:18;;;;;;;;;;;;;;;:27;11551:7;11532:27;;;;;;;;;;;;;;;;11525:34;;11416:151;;;;:::o;32519:33::-;;;;:::o;37532:135::-;37592:4;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37632:5:::1;37609:20;;:28;;;;;;;;;;;;;;;;;;37655:4;37648:11;;37532:135:::0;:::o;33292:30::-;;;;:::o;3040:201::-;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3149:1:::1;3129:22;;:8;:22;;::::0;3121:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3205:28;3224:8;3205:18;:28::i;:::-;3040:201:::0;:::o;33435:31::-;;;;:::o;32559:24::-;;;;:::o;50860:1056::-;50971:4;2362:12;:10;:12::i;:::-;2351:23;;:7;:5;:7::i;:::-;:23;;;2343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51056:19:::1;;51033:20;;:42;;;;:::i;:::-;51015:15;:60;50993:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51165:4;51154:7;:15;;51146:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51250:15;51227:20;:38;;;;51320:28;51351:4;:14;;;51366:13;51351:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51320:60;;51430:20;51453:44;51491:5;51453:33;51478:7;51453:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51430:67;;51617:1;51602:12;:16;51598:110;;;51635:61;51651:13;51674:6;51683:12;51635:15;:61::i;:::-;51598:110;51783:19;51820:13;51783:51;;51845:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51872:14;;;;;;;;;;51904:4;51897:11;;;;;50860:1056:::0;;;:::o;804:98::-;857:7;884:10;877:17;;804:98;:::o;17668:380::-;17821:1;17804:19;;:5;:19;;;17796:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17902:1;17883:21;;:7;:21;;;17875:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17986:6;17956:11;:18;17968:5;17956:18;;;;;;;;;;;;;;;:27;17975:7;17956:27;;;;;;;;;;;;;;;:36;;;;18024:7;18008:32;;18017:5;18008:32;;;18033:6;18008:32;;;;;;:::i;:::-;;;;;;;;17668:380;;;:::o;41596:5011::-;41744:1;41728:18;;:4;:18;;;41720:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41821:1;41807:16;;:2;:16;;;41799:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41890:1;41880:6;:11;41876:93;;41908:28;41924:4;41930:2;41934:1;41908:15;:28::i;:::-;41951:7;;41876:93;41985:14;;;;;;;;;;;41981:2487;;;42046:7;:5;:7::i;:::-;42038:15;;:4;:15;;;;:49;;;;;42080:7;:5;:7::i;:::-;42074:13;;:2;:13;;;;42038:49;:86;;;;;42122:1;42108:16;;:2;:16;;;;42038:86;:128;;;;;42159:6;42145:21;;:2;:21;;;;42038:128;:158;;;;;42188:8;;;;;;;;;;;42187:9;42038:158;42016:2441;;;42236:13;;;;;;;;;;;42231:223;;42308:19;:25;42328:4;42308:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42337:19;:23;42357:2;42337:23;;;;;;;;;;;;;;;;;;;;;;;;;42308:52;42274:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42231:223;42610:20;;;;;;;;;;;42606:641;;;42691:7;:5;:7::i;:::-;42685:13;;:2;:13;;;;:72;;;;;42741:15;42727:30;;:2;:30;;;;42685:72;:129;;;;;42800:13;42786:28;;:2;:28;;;;42685:129;42655:573;;;42978:12;42903:28;:39;42932:9;42903:39;;;;;;;;;;;;;;;;:87;42865:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43192:12;43150:28;:39;43179:9;43150:39;;;;;;;;;;;;;;;:54;;;;42655:573;42606:641;43321:25;:31;43347:4;43321:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43378:31;:35;43410:2;43378:35;;;;;;;;;;;;;;;;;;;;;;;;;43377:36;43321:92;43295:1147;;;43500:20;;43490:6;:30;;43456:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43708:9;;43691:13;43701:2;43691:9;:13::i;:::-;43682:6;:22;;;;:::i;:::-;:35;;43648:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43295:1147;;;43886:25;:29;43912:2;43886:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43941:31;:37;43973:4;43941:37;;;;;;;;;;;;;;;;;;;;;;;;;43940:38;43886:92;43860:582;;;44065:20;;44055:6;:30;;44021:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43860:582;;;44222:31;:35;44254:2;44222:35;;;;;;;;;;;;;;;;;;;;;;;;;44217:225;;44342:9;;44325:13;44335:2;44325:9;:13::i;:::-;44316:6;:22;;;;:::i;:::-;:35;;44282:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44217:225;43860:582;43295:1147;42016:2441;41981:2487;44480:28;44511:24;44529:4;44511:9;:24::i;:::-;44480:55;;44548:12;44587:18;;44563:20;:42;;44548:57;;44636:7;:35;;;;;44660:11;;;;;;;;;;;44636:35;:61;;;;;44689:8;;;;;;;;;;;44688:9;44636:61;:110;;;;;44715:25;:31;44741:4;44715:31;;;;;;;;;;;;;;;;;;;;;;;;;44714:32;44636:110;:153;;;;;44764:19;:25;44784:4;44764:25;;;;;;;;;;;;;;;;;;;;;;;;;44763:26;44636:153;:194;;;;;44807:19;:23;44827:2;44807:23;;;;;;;;;;;;;;;;;;;;;;;;;44806:24;44636:194;44618:326;;;44868:4;44857:8;;:15;;;;;;;;;;;;;;;;;;44889:10;:8;:10::i;:::-;44927:5;44916:8;;:16;;;;;;;;;;;;;;;;;;44618:326;44975:8;;;;;;;;;;;44974:9;:55;;;;;45000:25;:29;45026:2;45000:29;;;;;;;;;;;;;;;;;;;;;;;;;44974:55;:85;;;;;45046:13;;;;;;;;;;;44974:85;:153;;;;;45112:15;;45095:14;;:32;;;;:::i;:::-;45076:15;:51;;44974:153;:196;;;;;45145:19;:25;45165:4;45145:25;;;;;;;;;;;;;;;;;;;;;;;;;45144:26;44974:196;44956:282;;;45197:29;:27;:29::i;:::-;;44956:282;45250:12;45266:8;;;;;;;;;;;45265:9;45250:24;;45376:19;:25;45396:4;45376:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45405:19;:23;45425:2;45405:23;;;;;;;;;;;;;;;;;;;;;;;;;45376:52;45372:100;;;45455:5;45445:15;;45372:100;45484:12;45589:7;45585:969;;;45641:25;:29;45667:2;45641:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45690:1;45674:13;;:17;45641:50;45637:768;;;45719:34;45749:3;45719:25;45730:13;;45719:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45712:41;;45822:13;;45802:16;;45795:4;:23;;;;:::i;:::-;45794:41;;;;:::i;:::-;45772:18;;:63;;;;;;;:::i;:::-;;;;;;;;45892:13;;45878:10;;45871:4;:17;;;;:::i;:::-;45870:35;;;;:::i;:::-;45854:12;;:51;;;;;;;:::i;:::-;;;;;;;;45974:13;;45954:16;;45947:4;:23;;;;:::i;:::-;45946:41;;;;:::i;:::-;45924:18;;:63;;;;;;;:::i;:::-;;;;;;;;45637:768;;;46049:25;:31;46075:4;46049:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46099:1;46084:12;;:16;46049:51;46045:360;;;46128:33;46157:3;46128:24;46139:12;;46128:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46121:40;;46229:12;;46210:15;;46203:4;:22;;;;:::i;:::-;46202:39;;;;:::i;:::-;46180:18;;:61;;;;;;;:::i;:::-;;;;;;;;46297:12;;46284:9;;46277:4;:16;;;;:::i;:::-;46276:33;;;;:::i;:::-;46260:12;;:49;;;;;;;:::i;:::-;;;;;;;;46377:12;;46358:15;;46351:4;:22;;;;:::i;:::-;46350:39;;;;:::i;:::-;46328:18;;:61;;;;;;;:::i;:::-;;;;;;;;46045:360;45637:768;46432:1;46425:4;:8;46421:91;;;46454:42;46470:4;46484;46491;46454:15;:42::i;:::-;46421:91;46538:4;46528:14;;;;;:::i;:::-;;;45585:969;46566:33;46582:4;46588:2;46592:6;46566:15;:33::i;:::-;41709:4898;;;;41596:5011;;;;:::o;3401:191::-;3475:16;3494:6;;;;;;;;;;;3475:25;;3520:8;3511:6;;:17;;;;;;;;;;;;;;;;;;3575:8;3544:40;;3565:8;3544:40;;;;;;;;;;;;3464:128;3401:191;:::o;40493:188::-;40610:5;40576:25;:31;40602:4;40576:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40667:5;40633:40;;40661:4;40633:40;;;;;;;;;;;;40493:188;;:::o;14887:733::-;15045:1;15027:20;;:6;:20;;;15019:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15129:1;15108:23;;:9;:23;;;15100:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15184:47;15205:6;15213:9;15224:6;15184:20;:47::i;:::-;15244:21;15268:9;:17;15278:6;15268:17;;;;;;;;;;;;;;;;15244:41;;15321:6;15304:13;:23;;15296:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15442:6;15426:13;:22;15406:9;:17;15416:6;15406:17;;;;;;;;;;;;;;;:42;;;;15494:6;15470:9;:20;15480:9;15470:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15535:9;15518:35;;15527:6;15518:35;;;15546:6;15518:35;;;;;;:::i;:::-;;;;;;;;15566:46;15586:6;15594:9;15605:6;15566:19;:46::i;:::-;15008:612;14887:733;;;:::o;23121:98::-;23179:7;23210:1;23206;:5;;;;:::i;:::-;23199:12;;23121:98;;;;:::o;23520:::-;23578:7;23609:1;23605;:5;;;;:::i;:::-;23598:12;;23520:98;;;;:::o;47737:1756::-;47776:23;47802:24;47820:4;47802:9;:24::i;:::-;47776:50;;47837:25;47933:12;;47899:18;;47865;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47837:108;;47956:12;48004:1;47985:15;:20;:46;;;;48030:1;48009:17;:22;47985:46;47981:85;;;48048:7;;;;;47981:85;48121:2;48100:18;;:23;;;;:::i;:::-;48082:15;:41;48078:115;;;48179:2;48158:18;;:23;;;;:::i;:::-;48140:41;;48078:115;48254:23;48367:1;48334:17;48299:18;;48281:15;:36;;;;:::i;:::-;48280:71;;;;:::i;:::-;:88;;;;:::i;:::-;48254:114;;48379:26;48408:36;48428:15;48408;:19;;:36;;;;:::i;:::-;48379:65;;48457:25;48485:21;48457:49;;48519:36;48536:18;48519:16;:36::i;:::-;48568:18;48589:44;48615:17;48589:21;:25;;:44;;;;:::i;:::-;48568:65;;48646:23;48672:81;48725:17;48672:34;48687:18;;48672:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48646:107;;48764:17;48784:51;48817:17;48784:28;48799:12;;48784:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48764:71;;48848:23;48905:9;48887:15;48874:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;48848:66;;48948:1;48927:18;:22;;;;48981:1;48960:18;:22;;;;49008:1;48993:12;:16;;;;49044:9;;;;;;;;;;;49036:23;;49067:9;49036:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49022:59;;;;;49116:1;49098:15;:19;:42;;;;;49139:1;49121:15;:19;49098:42;49094:278;;;49157:46;49170:15;49187;49157:12;:46::i;:::-;49223:137;49256:18;49293:15;49327:18;;49223:137;;;;;;;;:::i;:::-;;;;;;;;49094:278;49406:15;;;;;;;;;;;49398:29;;49449:21;49398:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49384:101;;;;;47765:1728;;;;;;;;;;47737:1756;:::o;50064:788::-;50121:4;50155:15;50138:14;:32;;;;50225:28;50256:4;:14;;;50271:13;50256:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50225:60;;50335:20;50358:77;50419:5;50358:42;50383:16;;50358:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50335:100;;50555:1;50540:12;:16;50536:110;;;50573:61;50589:13;50612:6;50621:12;50573:15;:61::i;:::-;50536:110;50721:19;50758:13;50721:51;;50783:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50810:12;;;;;;;;;;50840:4;50833:11;;;;;50064:788;:::o;18648:125::-;;;;:::o;19377:124::-;;;;:::o;22764:98::-;22822:7;22853:1;22849;:5;;;;:::i;:::-;22842:12;;22764:98;;;;:::o;46615:589::-;46741:21;46779:1;46765:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46741:40;;46810:4;46792;46797:1;46792:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46836:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46826:4;46831:1;46826:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46871:62;46888:4;46903:15;46921:11;46871:8;:62::i;:::-;46972:15;:66;;;47053:11;47079:1;47123:4;47150;47170:15;46972:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46670:534;46615:589;:::o;47212:517::-;47360:62;47377:4;47392:15;47410:11;47360:8;:62::i;:::-;47465:15;:31;;;47504:9;47537:4;47557:11;47583:1;47626;32361:6;47695:15;47465:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47212:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:613::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:50;7702:7;7693:6;7682:9;7678:22;7660:50;:::i;:::-;7650:60;;7605:115;7114:613;;;;;:::o;7733:468::-;7798:6;7806;7855:2;7843:9;7834:7;7830:23;7826:32;7823:119;;;7861:79;;:::i;:::-;7823:119;7981:1;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7952:117;8108:2;8134:50;8176:7;8167:6;8156:9;8152:22;8134:50;:::i;:::-;8124:60;;8079:115;7733:468;;;;;:::o;8207:619::-;8284:6;8292;8300;8349:2;8337:9;8328:7;8324:23;8320:32;8317:119;;;8355:79;;:::i;:::-;8317:119;8475:1;8500:53;8545:7;8536:6;8525:9;8521:22;8500:53;:::i;:::-;8490:63;;8446:117;8602:2;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8573:118;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8207:619;;;;;:::o;8832:323::-;8888:6;8937:2;8925:9;8916:7;8912:23;8908:32;8905:119;;;8943:79;;:::i;:::-;8905:119;9063:1;9088:50;9130:7;9121:6;9110:9;9106:22;9088:50;:::i;:::-;9078:60;;9034:114;8832:323;;;;:::o;9161:117::-;9270:1;9267;9260:12;9284:180;9332:77;9329:1;9322:88;9429:4;9426:1;9419:15;9453:4;9450:1;9443:15;9470:281;9553:27;9575:4;9553:27;:::i;:::-;9545:6;9541:40;9683:6;9671:10;9668:22;9647:18;9635:10;9632:34;9629:62;9626:88;;;9694:18;;:::i;:::-;9626:88;9734:10;9730:2;9723:22;9513:238;9470:281;;:::o;9757:129::-;9791:6;9818:20;;:::i;:::-;9808:30;;9847:33;9875:4;9867:6;9847:33;:::i;:::-;9757:129;;;:::o;9892:319::-;9977:4;10067:18;10059:6;10056:30;10053:56;;;10089:18;;:::i;:::-;10053:56;10139:4;10131:6;10127:17;10119:25;;10199:4;10193;10189:15;10181:23;;9892:319;;;:::o;10217:117::-;10326:1;10323;10316:12;10340:104;10385:7;10414:24;10432:5;10414:24;:::i;:::-;10403:35;;10340:104;;;:::o;10450:138::-;10531:32;10557:5;10531:32;:::i;:::-;10524:5;10521:43;10511:71;;10578:1;10575;10568:12;10511:71;10450:138;:::o;10594:155::-;10648:5;10686:6;10673:20;10664:29;;10702:41;10737:5;10702:41;:::i;:::-;10594:155;;;;:::o;10780:734::-;10884:5;10909:89;10925:72;10990:6;10925:72;:::i;:::-;10909:89;:::i;:::-;10900:98;;11018:5;11047:6;11040:5;11033:21;11081:4;11074:5;11070:16;11063:23;;11134:4;11126:6;11122:17;11114:6;11110:30;11163:3;11155:6;11152:15;11149:122;;;11182:79;;:::i;:::-;11149:122;11297:6;11280:228;11314:6;11309:3;11306:15;11280:228;;;11389:3;11418:45;11459:3;11447:10;11418:45;:::i;:::-;11413:3;11406:58;11493:4;11488:3;11484:14;11477:21;;11356:152;11340:4;11335:3;11331:14;11324:21;;11280:228;;;11284:21;10890:624;;10780:734;;;;;:::o;11545:386::-;11624:5;11673:3;11666:4;11658:6;11654:17;11650:27;11640:122;;11681:79;;:::i;:::-;11640:122;11798:6;11785:20;11823:102;11921:3;11913:6;11906:4;11898:6;11894:17;11823:102;:::i;:::-;11814:111;;11630:301;11545:386;;;;:::o;11937:555::-;12029:6;12078:2;12066:9;12057:7;12053:23;12049:32;12046:119;;;12084:79;;:::i;:::-;12046:119;12232:1;12221:9;12217:17;12204:31;12262:18;12254:6;12251:30;12248:117;;;12284:79;;:::i;:::-;12248:117;12389:86;12467:7;12458:6;12447:9;12443:22;12389:86;:::i;:::-;12379:96;;12175:310;11937:555;;;;:::o;12498:474::-;12566:6;12574;12623:2;12611:9;12602:7;12598:23;12594:32;12591:119;;;12629:79;;:::i;:::-;12591:119;12749:1;12774:53;12819:7;12810:6;12799:9;12795:22;12774:53;:::i;:::-;12764:63;;12720:117;12876:2;12902:53;12947:7;12938:6;12927:9;12923:22;12902:53;:::i;:::-;12892:63;;12847:118;12498:474;;;;;:::o;12978:180::-;13026:77;13023:1;13016:88;13123:4;13120:1;13113:15;13147:4;13144:1;13137:15;13164:320;13208:6;13245:1;13239:4;13235:12;13225:22;;13292:1;13286:4;13282:12;13313:18;13303:81;;13369:4;13361:6;13357:17;13347:27;;13303:81;13431:2;13423:6;13420:14;13400:18;13397:38;13394:84;;13450:18;;:::i;:::-;13394:84;13215:269;13164:320;;;:::o;13490:182::-;13630:34;13626:1;13618:6;13614:14;13607:58;13490:182;:::o;13678:366::-;13820:3;13841:67;13905:2;13900:3;13841:67;:::i;:::-;13834:74;;13917:93;14006:3;13917:93;:::i;:::-;14035:2;14030:3;14026:12;14019:19;;13678:366;;;:::o;14050:419::-;14216:4;14254:2;14243:9;14239:18;14231:26;;14303:9;14297:4;14293:20;14289:1;14278:9;14274:17;14267:47;14331:131;14457:4;14331:131;:::i;:::-;14323:139;;14050:419;;;:::o;14475:180::-;14523:77;14520:1;14513:88;14620:4;14617:1;14610:15;14644:4;14641:1;14634:15;14661:410;14701:7;14724:20;14742:1;14724:20;:::i;:::-;14719:25;;14758:20;14776:1;14758:20;:::i;:::-;14753:25;;14813:1;14810;14806:9;14835:30;14853:11;14835:30;:::i;:::-;14824:41;;15014:1;15005:7;15001:15;14998:1;14995:22;14975:1;14968:9;14948:83;14925:139;;15044:18;;:::i;:::-;14925:139;14709:362;14661:410;;;;:::o;15077:180::-;15125:77;15122:1;15115:88;15222:4;15219:1;15212:15;15246:4;15243:1;15236:15;15263:185;15303:1;15320:20;15338:1;15320:20;:::i;:::-;15315:25;;15354:20;15372:1;15354:20;:::i;:::-;15349:25;;15393:1;15383:35;;15398:18;;:::i;:::-;15383:35;15440:1;15437;15433:9;15428:14;;15263:185;;;;:::o;15454:234::-;15594:34;15590:1;15582:6;15578:14;15571:58;15663:17;15658:2;15650:6;15646:15;15639:42;15454:234;:::o;15694:366::-;15836:3;15857:67;15921:2;15916:3;15857:67;:::i;:::-;15850:74;;15933:93;16022:3;15933:93;:::i;:::-;16051:2;16046:3;16042:12;16035:19;;15694:366;;;:::o;16066:419::-;16232:4;16270:2;16259:9;16255:18;16247:26;;16319:9;16313:4;16309:20;16305:1;16294:9;16290:17;16283:47;16347:131;16473:4;16347:131;:::i;:::-;16339:139;;16066:419;;;:::o;16491:227::-;16631:34;16627:1;16619:6;16615:14;16608:58;16700:10;16695:2;16687:6;16683:15;16676:35;16491:227;:::o;16724:366::-;16866:3;16887:67;16951:2;16946:3;16887:67;:::i;:::-;16880:74;;16963:93;17052:3;16963:93;:::i;:::-;17081:2;17076:3;17072:12;17065:19;;16724:366;;;:::o;17096:419::-;17262:4;17300:2;17289:9;17285:18;17277:26;;17349:9;17343:4;17339:20;17335:1;17324:9;17320:17;17313:47;17377:131;17503:4;17377:131;:::i;:::-;17369:139;;17096:419;;;:::o;17521:191::-;17561:3;17580:20;17598:1;17580:20;:::i;:::-;17575:25;;17614:20;17632:1;17614:20;:::i;:::-;17609:25;;17657:1;17654;17650:9;17643:16;;17678:3;17675:1;17672:10;17669:36;;;17685:18;;:::i;:::-;17669:36;17521:191;;;;:::o;17718:238::-;17858:34;17854:1;17846:6;17842:14;17835:58;17927:21;17922:2;17914:6;17910:15;17903:46;17718:238;:::o;17962:366::-;18104:3;18125:67;18189:2;18184:3;18125:67;:::i;:::-;18118:74;;18201:93;18290:3;18201:93;:::i;:::-;18319:2;18314:3;18310:12;18303:19;;17962:366;;;:::o;18334:419::-;18500:4;18538:2;18527:9;18523:18;18515:26;;18587:9;18581:4;18577:20;18573:1;18562:9;18558:17;18551:47;18615:131;18741:4;18615:131;:::i;:::-;18607:139;;18334:419;;;:::o;18759:235::-;18899:34;18895:1;18887:6;18883:14;18876:58;18968:18;18963:2;18955:6;18951:15;18944:43;18759:235;:::o;19000:366::-;19142:3;19163:67;19227:2;19222:3;19163:67;:::i;:::-;19156:74;;19239:93;19328:3;19239:93;:::i;:::-;19357:2;19352:3;19348:12;19341:19;;19000:366;;;:::o;19372:419::-;19538:4;19576:2;19565:9;19561:18;19553:26;;19625:9;19619:4;19615:20;19611:1;19600:9;19596:17;19589:47;19653:131;19779:4;19653:131;:::i;:::-;19645:139;;19372:419;;;:::o;19797:179::-;19937:31;19933:1;19925:6;19921:14;19914:55;19797:179;:::o;19982:366::-;20124:3;20145:67;20209:2;20204:3;20145:67;:::i;:::-;20138:74;;20221:93;20310:3;20221:93;:::i;:::-;20339:2;20334:3;20330:12;20323:19;;19982:366;;;:::o;20354:419::-;20520:4;20558:2;20547:9;20543:18;20535:26;;20607:9;20601:4;20597:20;20593:1;20582:9;20578:17;20571:47;20635:131;20761:4;20635:131;:::i;:::-;20627:139;;20354:419;;;:::o;20779:244::-;20919:34;20915:1;20907:6;20903:14;20896:58;20988:27;20983:2;20975:6;20971:15;20964:52;20779:244;:::o;21029:366::-;21171:3;21192:67;21256:2;21251:3;21192:67;:::i;:::-;21185:74;;21268:93;21357:3;21268:93;:::i;:::-;21386:2;21381:3;21377:12;21370:19;;21029:366;;;:::o;21401:419::-;21567:4;21605:2;21594:9;21590:18;21582:26;;21654:9;21648:4;21644:20;21640:1;21629:9;21625:17;21618:47;21682:131;21808:4;21682:131;:::i;:::-;21674:139;;21401:419;;;:::o;21826:224::-;21966:34;21962:1;21954:6;21950:14;21943:58;22035:7;22030:2;22022:6;22018:15;22011:32;21826:224;:::o;22056:366::-;22198:3;22219:67;22283:2;22278:3;22219:67;:::i;:::-;22212:74;;22295:93;22384:3;22295:93;:::i;:::-;22413:2;22408:3;22404:12;22397:19;;22056:366;;;:::o;22428:419::-;22594:4;22632:2;22621:9;22617:18;22609:26;;22681:9;22675:4;22671:20;22667:1;22656:9;22652:17;22645:47;22709:131;22835:4;22709:131;:::i;:::-;22701:139;;22428:419;;;:::o;22853:223::-;22993:34;22989:1;22981:6;22977:14;22970:58;23062:6;23057:2;23049:6;23045:15;23038:31;22853:223;:::o;23082:366::-;23224:3;23245:67;23309:2;23304:3;23245:67;:::i;:::-;23238:74;;23321:93;23410:3;23321:93;:::i;:::-;23439:2;23434:3;23430:12;23423:19;;23082:366;;;:::o;23454:419::-;23620:4;23658:2;23647:9;23643:18;23635:26;;23707:9;23701:4;23697:20;23693:1;23682:9;23678:17;23671:47;23735:131;23861:4;23735:131;:::i;:::-;23727:139;;23454:419;;;:::o;23879:180::-;23927:77;23924:1;23917:88;24024:4;24021:1;24014:15;24048:4;24045:1;24038:15;24065:134;24123:9;24156:37;24187:5;24156:37;:::i;:::-;24143:50;;24065:134;;;:::o;24205:147::-;24300:45;24339:5;24300:45;:::i;:::-;24295:3;24288:58;24205:147;;:::o;24358:238::-;24459:4;24497:2;24486:9;24482:18;24474:26;;24510:79;24586:1;24575:9;24571:17;24562:6;24510:79;:::i;:::-;24358:238;;;;:::o;24602:143::-;24659:5;24690:6;24684:13;24675:22;;24706:33;24733:5;24706:33;:::i;:::-;24602:143;;;;:::o;24751:351::-;24821:6;24870:2;24858:9;24849:7;24845:23;24841:32;24838:119;;;24876:79;;:::i;:::-;24838:119;24996:1;25021:64;25077:7;25068:6;25057:9;25053:22;25021:64;:::i;:::-;25011:74;;24967:128;24751:351;;;;:::o;25108:233::-;25147:3;25170:24;25188:5;25170:24;:::i;:::-;25161:33;;25216:66;25209:5;25206:77;25203:103;;25286:18;;:::i;:::-;25203:103;25333:1;25326:5;25322:13;25315:20;;25108:233;;;:::o;25347:240::-;25487:34;25483:1;25475:6;25471:14;25464:58;25556:23;25551:2;25543:6;25539:15;25532:48;25347:240;:::o;25593:366::-;25735:3;25756:67;25820:2;25815:3;25756:67;:::i;:::-;25749:74;;25832:93;25921:3;25832:93;:::i;:::-;25950:2;25945:3;25941:12;25934:19;;25593:366;;;:::o;25965:419::-;26131:4;26169:2;26158:9;26154:18;26146:26;;26218:9;26212:4;26208:20;26204:1;26193:9;26189:17;26182:47;26246:131;26372:4;26246:131;:::i;:::-;26238:139;;25965:419;;;:::o;26390:239::-;26530:34;26526:1;26518:6;26514:14;26507:58;26599:22;26594:2;26586:6;26582:15;26575:47;26390:239;:::o;26635:366::-;26777:3;26798:67;26862:2;26857:3;26798:67;:::i;:::-;26791:74;;26874:93;26963:3;26874:93;:::i;:::-;26992:2;26987:3;26983:12;26976:19;;26635:366;;;:::o;27007:419::-;27173:4;27211:2;27200:9;27196:18;27188:26;;27260:9;27254:4;27250:20;27246:1;27235:9;27231:17;27224:47;27288:131;27414:4;27288:131;:::i;:::-;27280:139;;27007:419;;;:::o;27432:225::-;27572:34;27568:1;27560:6;27556:14;27549:58;27641:8;27636:2;27628:6;27624:15;27617:33;27432:225;:::o;27663:366::-;27805:3;27826:67;27890:2;27885:3;27826:67;:::i;:::-;27819:74;;27902:93;27991:3;27902:93;:::i;:::-;28020:2;28015:3;28011:12;28004:19;;27663:366;;;:::o;28035:419::-;28201:4;28239:2;28228:9;28224:18;28216:26;;28288:9;28282:4;28278:20;28274:1;28263:9;28259:17;28252:47;28316:131;28442:4;28316:131;:::i;:::-;28308:139;;28035:419;;;:::o;28460:182::-;28600:34;28596:1;28588:6;28584:14;28577:58;28460:182;:::o;28648:366::-;28790:3;28811:67;28875:2;28870:3;28811:67;:::i;:::-;28804:74;;28887:93;28976:3;28887:93;:::i;:::-;29005:2;29000:3;28996:12;28989:19;;28648:366;;;:::o;29020:419::-;29186:4;29224:2;29213:9;29209:18;29201:26;;29273:9;29267:4;29263:20;29259:1;29248:9;29244:17;29237:47;29301:131;29427:4;29301:131;:::i;:::-;29293:139;;29020:419;;;:::o;29445:229::-;29585:34;29581:1;29573:6;29569:14;29562:58;29654:12;29649:2;29641:6;29637:15;29630:37;29445:229;:::o;29680:366::-;29822:3;29843:67;29907:2;29902:3;29843:67;:::i;:::-;29836:74;;29919:93;30008:3;29919:93;:::i;:::-;30037:2;30032:3;30028:12;30021:19;;29680:366;;;:::o;30052:419::-;30218:4;30256:2;30245:9;30241:18;30233:26;;30305:9;30299:4;30295:20;30291:1;30280:9;30276:17;30269:47;30333:131;30459:4;30333:131;:::i;:::-;30325:139;;30052:419;;;:::o;30477:223::-;30617:34;30613:1;30605:6;30601:14;30594:58;30686:6;30681:2;30673:6;30669:15;30662:31;30477:223;:::o;30706:366::-;30848:3;30869:67;30933:2;30928:3;30869:67;:::i;:::-;30862:74;;30945:93;31034:3;30945:93;:::i;:::-;31063:2;31058:3;31054:12;31047:19;;30706:366;;;:::o;31078:419::-;31244:4;31282:2;31271:9;31267:18;31259:26;;31331:9;31325:4;31321:20;31317:1;31306:9;31302:17;31295:47;31359:131;31485:4;31359:131;:::i;:::-;31351:139;;31078:419;;;:::o;31503:221::-;31643:34;31639:1;31631:6;31627:14;31620:58;31712:4;31707:2;31699:6;31695:15;31688:29;31503:221;:::o;31730:366::-;31872:3;31893:67;31957:2;31952:3;31893:67;:::i;:::-;31886:74;;31969:93;32058:3;31969:93;:::i;:::-;32087:2;32082:3;32078:12;32071:19;;31730:366;;;:::o;32102:419::-;32268:4;32306:2;32295:9;32291:18;32283:26;;32355:9;32349:4;32345:20;32341:1;32330:9;32326:17;32319:47;32383:131;32509:4;32383:131;:::i;:::-;32375:139;;32102:419;;;:::o;32527:224::-;32667:34;32663:1;32655:6;32651:14;32644:58;32736:7;32731:2;32723:6;32719:15;32712:32;32527:224;:::o;32757:366::-;32899:3;32920:67;32984:2;32979:3;32920:67;:::i;:::-;32913:74;;32996:93;33085:3;32996:93;:::i;:::-;33114:2;33109:3;33105:12;33098:19;;32757:366;;;:::o;33129:419::-;33295:4;33333:2;33322:9;33318:18;33310:26;;33382:9;33376:4;33372:20;33368:1;33357:9;33353:17;33346:47;33410:131;33536:4;33410:131;:::i;:::-;33402:139;;33129:419;;;:::o;33554:222::-;33694:34;33690:1;33682:6;33678:14;33671:58;33763:5;33758:2;33750:6;33746:15;33739:30;33554:222;:::o;33782:366::-;33924:3;33945:67;34009:2;34004:3;33945:67;:::i;:::-;33938:74;;34021:93;34110:3;34021:93;:::i;:::-;34139:2;34134:3;34130:12;34123:19;;33782:366;;;:::o;34154:419::-;34320:4;34358:2;34347:9;34343:18;34335:26;;34407:9;34401:4;34397:20;34393:1;34382:9;34378:17;34371:47;34435:131;34561:4;34435:131;:::i;:::-;34427:139;;34154:419;;;:::o;34579:172::-;34719:24;34715:1;34707:6;34703:14;34696:48;34579:172;:::o;34757:366::-;34899:3;34920:67;34984:2;34979:3;34920:67;:::i;:::-;34913:74;;34996:93;35085:3;34996:93;:::i;:::-;35114:2;35109:3;35105:12;35098:19;;34757:366;;;:::o;35129:419::-;35295:4;35333:2;35322:9;35318:18;35310:26;;35382:9;35376:4;35372:20;35368:1;35357:9;35353:17;35346:47;35410:131;35536:4;35410:131;:::i;:::-;35402:139;;35129:419;;;:::o;35554:297::-;35694:34;35690:1;35682:6;35678:14;35671:58;35763:34;35758:2;35750:6;35746:15;35739:59;35832:11;35827:2;35819:6;35815:15;35808:36;35554:297;:::o;35857:366::-;35999:3;36020:67;36084:2;36079:3;36020:67;:::i;:::-;36013:74;;36096:93;36185:3;36096:93;:::i;:::-;36214:2;36209:3;36205:12;36198:19;;35857:366;;;:::o;36229:419::-;36395:4;36433:2;36422:9;36418:18;36410:26;;36482:9;36476:4;36472:20;36468:1;36457:9;36453:17;36446:47;36510:131;36636:4;36510:131;:::i;:::-;36502:139;;36229:419;;;:::o;36654:240::-;36794:34;36790:1;36782:6;36778:14;36771:58;36863:23;36858:2;36850:6;36846:15;36839:48;36654:240;:::o;36900:366::-;37042:3;37063:67;37127:2;37122:3;37063:67;:::i;:::-;37056:74;;37139:93;37228:3;37139:93;:::i;:::-;37257:2;37252:3;37248:12;37241:19;;36900:366;;;:::o;37272:419::-;37438:4;37476:2;37465:9;37461:18;37453:26;;37525:9;37519:4;37515:20;37511:1;37500:9;37496:17;37489:47;37553:131;37679:4;37553:131;:::i;:::-;37545:139;;37272:419;;;:::o;37697:169::-;37837:21;37833:1;37825:6;37821:14;37814:45;37697:169;:::o;37872:366::-;38014:3;38035:67;38099:2;38094:3;38035:67;:::i;:::-;38028:74;;38111:93;38200:3;38111:93;:::i;:::-;38229:2;38224:3;38220:12;38213:19;;37872:366;;;:::o;38244:419::-;38410:4;38448:2;38437:9;38433:18;38425:26;;38497:9;38491:4;38487:20;38483:1;38472:9;38468:17;38461:47;38525:131;38651:4;38525:131;:::i;:::-;38517:139;;38244:419;;;:::o;38669:241::-;38809:34;38805:1;38797:6;38793:14;38786:58;38878:24;38873:2;38865:6;38861:15;38854:49;38669:241;:::o;38916:366::-;39058:3;39079:67;39143:2;39138:3;39079:67;:::i;:::-;39072:74;;39155:93;39244:3;39155:93;:::i;:::-;39273:2;39268:3;39264:12;39257:19;;38916:366;;;:::o;39288:419::-;39454:4;39492:2;39481:9;39477:18;39469:26;;39541:9;39535:4;39531:20;39527:1;39516:9;39512:17;39505:47;39569:131;39695:4;39569:131;:::i;:::-;39561:139;;39288:419;;;:::o;39713:194::-;39753:4;39773:20;39791:1;39773:20;:::i;:::-;39768:25;;39807:20;39825:1;39807:20;:::i;:::-;39802:25;;39851:1;39848;39844:9;39836:17;;39875:1;39869:4;39866:11;39863:37;;;39880:18;;:::i;:::-;39863:37;39713:194;;;;:::o;39913:225::-;40053:34;40049:1;40041:6;40037:14;40030:58;40122:8;40117:2;40109:6;40105:15;40098:33;39913:225;:::o;40144:366::-;40286:3;40307:67;40371:2;40366:3;40307:67;:::i;:::-;40300:74;;40383:93;40472:3;40383:93;:::i;:::-;40501:2;40496:3;40492:12;40485:19;;40144:366;;;:::o;40516:419::-;40682:4;40720:2;40709:9;40705:18;40697:26;;40769:9;40763:4;40759:20;40755:1;40744:9;40740:17;40733:47;40797:131;40923:4;40797:131;:::i;:::-;40789:139;;40516:419;;;:::o;40941:147::-;41042:11;41079:3;41064:18;;40941:147;;;;:::o;41094:114::-;;:::o;41214:398::-;41373:3;41394:83;41475:1;41470:3;41394:83;:::i;:::-;41387:90;;41486:93;41575:3;41486:93;:::i;:::-;41604:1;41599:3;41595:11;41588:18;;41214:398;;;:::o;41618:379::-;41802:3;41824:147;41967:3;41824:147;:::i;:::-;41817:154;;41988:3;41981:10;;41618:379;;;:::o;42003:442::-;42152:4;42190:2;42179:9;42175:18;42167:26;;42203:71;42271:1;42260:9;42256:17;42247:6;42203:71;:::i;:::-;42284:72;42352:2;42341:9;42337:18;42328:6;42284:72;:::i;:::-;42366;42434:2;42423:9;42419:18;42410:6;42366:72;:::i;:::-;42003:442;;;;;;:::o;42451:143::-;42508:5;42539:6;42533:13;42524:22;;42555:33;42582:5;42555:33;:::i;:::-;42451:143;;;;:::o;42600:351::-;42670:6;42719:2;42707:9;42698:7;42694:23;42690:32;42687:119;;;42725:79;;:::i;:::-;42687:119;42845:1;42870:64;42926:7;42917:6;42906:9;42902:22;42870:64;:::i;:::-;42860:74;;42816:128;42600:351;;;;:::o;42957:85::-;43002:7;43031:5;43020:16;;42957:85;;;:::o;43048:158::-;43106:9;43139:61;43157:42;43166:32;43192:5;43166:32;:::i;:::-;43157:42;:::i;:::-;43139:61;:::i;:::-;43126:74;;43048:158;;;:::o;43212:147::-;43307:45;43346:5;43307:45;:::i;:::-;43302:3;43295:58;43212:147;;:::o;43365:114::-;43432:6;43466:5;43460:12;43450:22;;43365:114;;;:::o;43485:184::-;43584:11;43618:6;43613:3;43606:19;43658:4;43653:3;43649:14;43634:29;;43485:184;;;;:::o;43675:132::-;43742:4;43765:3;43757:11;;43795:4;43790:3;43786:14;43778:22;;43675:132;;;:::o;43813:108::-;43890:24;43908:5;43890:24;:::i;:::-;43885:3;43878:37;43813:108;;:::o;43927:179::-;43996:10;44017:46;44059:3;44051:6;44017:46;:::i;:::-;44095:4;44090:3;44086:14;44072:28;;43927:179;;;;:::o;44112:113::-;44182:4;44214;44209:3;44205:14;44197:22;;44112:113;;;:::o;44261:732::-;44380:3;44409:54;44457:5;44409:54;:::i;:::-;44479:86;44558:6;44553:3;44479:86;:::i;:::-;44472:93;;44589:56;44639:5;44589:56;:::i;:::-;44668:7;44699:1;44684:284;44709:6;44706:1;44703:13;44684:284;;;44785:6;44779:13;44812:63;44871:3;44856:13;44812:63;:::i;:::-;44805:70;;44898:60;44951:6;44898:60;:::i;:::-;44888:70;;44744:224;44731:1;44728;44724:9;44719:14;;44684:284;;;44688:14;44984:3;44977:10;;44385:608;;;44261:732;;;;:::o;44999:831::-;45262:4;45300:3;45289:9;45285:19;45277:27;;45314:71;45382:1;45371:9;45367:17;45358:6;45314:71;:::i;:::-;45395:80;45471:2;45460:9;45456:18;45447:6;45395:80;:::i;:::-;45522:9;45516:4;45512:20;45507:2;45496:9;45492:18;45485:48;45550:108;45653:4;45644:6;45550:108;:::i;:::-;45542:116;;45668:72;45736:2;45725:9;45721:18;45712:6;45668:72;:::i;:::-;45750:73;45818:3;45807:9;45803:19;45794:6;45750:73;:::i;:::-;44999:831;;;;;;;;:::o;45836:807::-;46085:4;46123:3;46112:9;46108:19;46100:27;;46137:71;46205:1;46194:9;46190:17;46181:6;46137:71;:::i;:::-;46218:72;46286:2;46275:9;46271:18;46262:6;46218:72;:::i;:::-;46300:80;46376:2;46365:9;46361:18;46352:6;46300:80;:::i;:::-;46390;46466:2;46455:9;46451:18;46442:6;46390:80;:::i;:::-;46480:73;46548:3;46537:9;46533:19;46524:6;46480:73;:::i;:::-;46563;46631:3;46620:9;46616:19;46607:6;46563:73;:::i;:::-;45836:807;;;;;;;;;:::o;46649:663::-;46737:6;46745;46753;46802:2;46790:9;46781:7;46777:23;46773:32;46770:119;;;46808:79;;:::i;:::-;46770:119;46928:1;46953:64;47009:7;47000:6;46989:9;46985:22;46953:64;:::i;:::-;46943:74;;46899:128;47066:2;47092:64;47148:7;47139:6;47128:9;47124:22;47092:64;:::i;:::-;47082:74;;47037:129;47205:2;47231:64;47287:7;47278:6;47267:9;47263:22;47231:64;:::i;:::-;47221:74;;47176:129;46649:663;;;;;:::o

Swarm Source

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