ETH Price: $3,110.65 (+0.42%)
Gas: 4 Gwei

Token

Rubix AI (RUBIX)
 

Overview

Max Total Supply

1,000,000,000 RUBIX

Holders

65

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,698,299.316956196307385678 RUBIX

Value
$0.00
0x75b71ba36d90cda0906b5634c0d3a6e65b062003
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
RUBIX

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: RUBIX.sol



/**

Rubix AI | $RUBIX

Rubix AI is a comprehensive and innovative suite of tools 
designed to simplify the creation of cryptocurrency projects.  

Website:     https://www.rubixai.tech/
Telegram:    https://t.me/RubixAI
Twitter:     https://twitter.com/rubix_ai

*/

pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract RUBIX 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 operationsWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 0;
    bool public lpBurnEnabled = false;
    uint256 public lpBurnFrequency = 1200 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 20 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 buyOperationsFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellOperationsFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForOperations;
    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 operationsWalletUpdated(
        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("Rubix AI", "RUBIX") {
        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 _buyOperationsFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;

        uint256 _sellOperationsFee = 48;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 48;

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        buyOperationsFee = _buyOperationsFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee;

        sellOperationsFee = _sellOperationsFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee;

        operationsWallet = address(0x6FbF9560bE339850B39Ec7541E928Db200499143); // set as operations wallet
        devWallet = address(0xd953c7177e6C8Fc8171a7e55d8bd2bbAb32bA337); // 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 _operationsFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyOperationsFee = _operationsFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyOperationsFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 9, "Must keep fees at 9% or less");
    }

    function updateSellFees(
        uint256 _operationsFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 99, "Must keep fees at 99% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateOperationsWallet(address newOperationsWallet)
        external
        onlyOwner
    {
        emit operationsWalletUpdated(newOperationsWallet, operationsWallet);
        operationsWallet = newOperationsWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

        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;
                tokensForOperations += (fees * sellOperationsFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForOperations += (fees * buyOperationsFee) / 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 +
            tokensForOperations +
            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 ethForOperations = ethBalance.mul(tokensForOperations).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForOperations - ethForDev;

        tokensForLiquidity = 0;
        tokensForOperations = 0;
        tokensForDev = 0;

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

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

        (success, ) = address(operationsWallet).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":"operationsWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"buyOperationsFee","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":"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":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellOperationsFee","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":"tokensForOperations","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":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperationsWallet","type":"address"}],"name":"updateOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","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"}]

60c06040526000600b556000600c60006101000a81548160ff0219169083151502179055506104b0600d556104b0600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f52756269782041490000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f525542495800000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b15565b5080600490805190602001906200014792919062000b15565b5050506200016a6200015e620005d560201b60201c565b620005dd60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c2f565b6040518363ffffffff1660e01b8152600401620002e992919062000c72565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a360201b60201c565b6200038c60a05160016200078d60201b60201c565b600060039050600080600390506000603090506000806030905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003ed919062000cd8565b620003f9919062000d68565b60098190555086601581905550856016819055508460178190555060175460165460155462000429919062000da0565b62000435919062000da0565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000465919062000da0565b62000471919062000da0565b601881905550736fbf9560be339850b39ec7541e928db200499143600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d953c7177e6c8fc8171a7e55d8bd2bbab32ba337600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000543620005356200082e60201b60201c565b60016200085860201b60201c565b620005563060016200085860201b60201c565b6200056b61dead60016200085860201b60201c565b6200058d6200057f6200082e60201b60201c565b6001620006a360201b60201c565b620005a0306001620006a360201b60201c565b620005b561dead6001620006a360201b60201c565b620005c733826200099260201b60201c565b505050505050505062000fbf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b3620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d96200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000e5e565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000868620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088e6200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de9062000e5e565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000986919062000e9d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fc9062000f0a565b60405180910390fd5b62000a196000838362000b0b60201b60201c565b806002600082825462000a2d919062000da0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a84919062000da0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aeb919062000f3d565b60405180910390a362000b076000838362000b1060201b60201c565b5050565b505050565b505050565b82805462000b239062000f89565b90600052602060002090601f01602090048101928262000b47576000855562000b93565b82601f1062000b6257805160ff191683800117855562000b93565b8280016001018555821562000b93579182015b8281111562000b9257825182559160200191906001019062000b75565b5b50905062000ba2919062000ba6565b5090565b5b8082111562000bc157600081600090555060010162000ba7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf78262000bca565b9050919050565b62000c098162000bea565b811462000c1557600080fd5b50565b60008151905062000c298162000bfe565b92915050565b60006020828403121562000c485762000c4762000bc5565b5b600062000c588482850162000c18565b91505092915050565b62000c6c8162000bea565b82525050565b600060408201905062000c89600083018562000c61565b62000c98602083018462000c61565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce58262000c9f565b915062000cf28362000c9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2e5762000d2d62000ca9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d758262000c9f565b915062000d828362000c9f565b92508262000d955762000d9462000d39565b5b828204905092915050565b600062000dad8262000c9f565b915062000dba8362000c9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df25762000df162000ca9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4660208362000dfd565b915062000e538262000e0e565b602082019050919050565b6000602082019050818103600083015262000e798162000e37565b9050919050565b60008115159050919050565b62000e978162000e80565b82525050565b600060208201905062000eb4600083018462000e8c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef2601f8362000dfd565b915062000eff8262000eba565b602082019050919050565b6000602082019050818103600083015262000f258162000ee3565b9050919050565b62000f378162000c9f565b82525050565b600060208201905062000f54600083018462000f2c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa257607f821691505b6020821081141562000fb95762000fb862000f5a565b5b50919050565b60805160a051615c38620010476000396000818161152301528181611d0d01528181612747015281816127fe0152818161282b01528181612e6f01528181613f730152818161402c0152614059015260008181610f9001528181612e17015281816141cf015281816142b0015281816142d701528181614373015261439a0152615c386000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e01578063fb002c9714610e2c578063fd72e22a14610e57578063fe72b27a14610e82576103b8565b8063e884f26014610d57578063f11a24d314610d82578063f2fde38b14610dad578063f637434214610dd6576103b8565b8063d257b34f116100dc578063d257b34f14610c87578063d85ba06314610cc4578063dd62ed3e14610cef578063e2f4560514610d2c576103b8565b8063c17b5b8c14610bdf578063c18bc19514610c08578063c876d0b914610c31578063c8c8ebe414610c5c576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b11578063b62496f514610b4e578063bbc0c74214610b8b578063c024666814610bb6576103b8565b80639fccce3214610a53578063a0d82dc514610a7e578063a457c2d714610aa9578063a4c82a0014610ae6576103b8565b806395d89b41116101c157806395d89b41146109a95780639a7a23d6146109d45780639c3b4fdc146109fd5780639ec22c0e14610a28576103b8565b80638da5cb5b1461092a5780638ea5220f14610955578063924de9b714610980576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108965780637571336a146108c15780638095d564146108ea5780638a8c523c14610913576103b8565b80636ddd1713146107ee57806370a0823114610819578063715018a614610856578063730c18881461086d576103b8565b80634f77f6c0116102a65780634f77f6c0146107305780634fbee1931461075b5780635a139dd4146107985780636a486a8e146107c3576103b8565b8063313ce56714610672578063395093511461069d57806349bd5a5e146106da5780634a62bb6514610705576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105c85780632c3e486c146105f35780632e82f1a01461061e57806330d5d18d14610649576103b8565b8063199ffc721461050c5780631a8145bb14610537578063203e727e1461056257806323b872dd1461058b576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459d565b610f51565b60405161041c91906145f8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614613565b610f6f565b60405161045991906145f8565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469f565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614613565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c9565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c9565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c9565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906146e4565b61110a565b005b34801561059757600080fd5b506105b260048036038101906105ad9190614711565b611219565b6040516105bf91906145f8565b60405180910390f35b3480156105d457600080fd5b506105dd611311565b6040516105ea9190614773565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b60405161061591906146c9565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906145f8565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190614613565b611330565b005b34801561067e57600080fd5b5061068761146c565b60405161069491906147aa565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf919061459d565b611475565b6040516106d191906145f8565b60405180910390f35b3480156106e657600080fd5b506106ef611521565b6040516106fc9190614773565b60405180910390f35b34801561071157600080fd5b5061071a611545565b60405161072791906145f8565b60405180910390f35b34801561073c57600080fd5b50610745611558565b60405161075291906146c9565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190614613565b61155e565b60405161078f91906145f8565b60405180910390f35b3480156107a457600080fd5b506107ad6115b4565b6040516107ba91906146c9565b60405180910390f35b3480156107cf57600080fd5b506107d86115ba565b6040516107e591906146c9565b60405180910390f35b3480156107fa57600080fd5b506108036115c0565b60405161081091906145f8565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190614613565b6115d3565b60405161084d91906146c9565b60405180910390f35b34801561086257600080fd5b5061086b61161b565b005b34801561087957600080fd5b50610894600480360381019061088f91906147f1565b6116a3565b005b3480156108a257600080fd5b506108ab6117e3565b6040516108b891906145f8565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190614844565b611883565b005b3480156108f657600080fd5b50610911600480360381019061090c9190614884565b61195a565b005b34801561091f57600080fd5b50610928611a59565b005b34801561093657600080fd5b5061093f611b14565b60405161094c9190614773565b60405180910390f35b34801561096157600080fd5b5061096a611b3e565b6040516109779190614773565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a291906148d7565b611b64565b005b3480156109b557600080fd5b506109be611bfd565b6040516109cb91906144e2565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f69190614844565b611c8f565b005b348015610a0957600080fd5b50610a12611da8565b604051610a1f91906146c9565b60405180910390f35b348015610a3457600080fd5b50610a3d611dae565b604051610a4a91906146c9565b60405180910390f35b348015610a5f57600080fd5b50610a68611db4565b604051610a7591906146c9565b60405180910390f35b348015610a8a57600080fd5b50610a93611dba565b604051610aa091906146c9565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb919061459d565b611dc0565b604051610add91906145f8565b60405180910390f35b348015610af257600080fd5b50610afb611eab565b604051610b0891906146c9565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b33919061459d565b611eb1565b604051610b4591906145f8565b60405180910390f35b348015610b5a57600080fd5b50610b756004803603810190610b709190614613565b611ecf565b604051610b8291906145f8565b60405180910390f35b348015610b9757600080fd5b50610ba0611eef565b604051610bad91906145f8565b60405180910390f35b348015610bc257600080fd5b50610bdd6004803603810190610bd89190614844565b611f02565b005b348015610beb57600080fd5b50610c066004803603810190610c019190614884565b612027565b005b348015610c1457600080fd5b50610c2f6004803603810190610c2a91906146e4565b612126565b005b348015610c3d57600080fd5b50610c46612235565b604051610c5391906145f8565b60405180910390f35b348015610c6857600080fd5b50610c71612248565b604051610c7e91906146c9565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca991906146e4565b61224e565b604051610cbb91906145f8565b60405180910390f35b348015610cd057600080fd5b50610cd96123a3565b604051610ce691906146c9565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614904565b6123a9565b604051610d2391906146c9565b60405180910390f35b348015610d3857600080fd5b50610d41612430565b604051610d4e91906146c9565b60405180910390f35b348015610d6357600080fd5b50610d6c612436565b604051610d7991906145f8565b60405180910390f35b348015610d8e57600080fd5b50610d976124d6565b604051610da491906146c9565b60405180910390f35b348015610db957600080fd5b50610dd46004803603810190610dcf9190614613565b6124dc565b005b348015610de257600080fd5b50610deb6125d4565b604051610df891906146c9565b60405180910390f35b348015610e0d57600080fd5b50610e166125da565b604051610e2391906146c9565b60405180910390f35b348015610e3857600080fd5b50610e416125e0565b604051610e4e91906146c9565b60405180910390f35b348015610e6357600080fd5b50610e6c6125e6565b604051610e799190614773565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e4565b61260c565b604051610eb691906145f8565b60405180910390f35b606060038054610ece90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614973565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e4565b84846128ec565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46128e4565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6111126128e4565b73ffffffffffffffffffffffffffffffffffffffff16611130611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906149f1565b60405180910390fd5b670de0b6b3a76400006103e8600161119c610fb2565b6111a69190614a40565b6111b09190614ac9565b6111ba9190614ac9565b8110156111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390614b6c565b60405180910390fd5b670de0b6b3a7640000816112109190614a40565b60088190555050565b6000611226848484612ab7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112716128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890614bfe565b60405180910390fd5b611305856112fd6128e4565b8584036128ec565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b6113386128e4565b73ffffffffffffffffffffffffffffffffffffffff16611356611b14565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a3906149f1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b60006115176114826128e4565b8484600160006114906128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115129190614c1e565b6128ec565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b60195481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116236128e4565b73ffffffffffffffffffffffffffffffffffffffff16611641611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906149f1565b60405180910390fd5b6116a1600061384f565b565b6116ab6128e4565b73ffffffffffffffffffffffffffffffffffffffff166116c9611b14565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149f1565b60405180910390fd5b610258831015611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614ce6565b60405180910390fd5b6103e88211158015611777575060008210155b6117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614d78565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117ed6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661180b611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906149f1565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61188b6128e4565b73ffffffffffffffffffffffffffffffffffffffff166118a9611b14565b73ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906149f1565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119626128e4565b73ffffffffffffffffffffffffffffffffffffffff16611980611b14565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd906149f1565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119fe9190614c1e565b611a089190614c1e565b60148190555060096014541115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614de4565b60405180910390fd5b505050565b611a616128e4565b73ffffffffffffffffffffffffffffffffffffffff16611a7f611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906149f1565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b6c6128e4565b73ffffffffffffffffffffffffffffffffffffffff16611b8a611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd7906149f1565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611c0c90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3890614973565b8015611c855780601f10611c5a57610100808354040283529160200191611c85565b820191906000526020600020905b815481529060010190602001808311611c6857829003601f168201915b5050505050905090565b611c976128e4565b73ffffffffffffffffffffffffffffffffffffffff16611cb5611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906149f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614e76565b60405180910390fd5b611da48282613915565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611dcf6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390614f08565b60405180910390fd5b611ea0611e976128e4565b858584036128ec565b600191505092915050565b600e5481565b6000611ec5611ebe6128e4565b8484612ab7565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f0a6128e4565b73ffffffffffffffffffffffffffffffffffffffff16611f28611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906149f1565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161201b91906145f8565b60405180910390a25050565b61202f6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661204d611b14565b73ffffffffffffffffffffffffffffffffffffffff16146120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a906149f1565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120cb9190614c1e565b6120d59190614c1e565b60188190555060636018541115612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890614f74565b60405180910390fd5b505050565b61212e6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661214c611b14565b73ffffffffffffffffffffffffffffffffffffffff16146121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612199906149f1565b60405180910390fd5b670de0b6b3a76400006103e860056121b8610fb2565b6121c29190614a40565b6121cc9190614ac9565b6121d69190614ac9565b811015612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90615006565b60405180910390fd5b670de0b6b3a76400008161222c9190614a40565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122586128e4565b73ffffffffffffffffffffffffffffffffffffffff16612276611b14565b73ffffffffffffffffffffffffffffffffffffffff16146122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c3906149f1565b60405180910390fd5b620186a060016122da610fb2565b6122e49190614a40565b6122ee9190614ac9565b821015612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232790615098565b60405180910390fd5b6103e8600561233d610fb2565b6123479190614a40565b6123519190614ac9565b821115612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a9061512a565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124406128e4565b73ffffffffffffffffffffffffffffffffffffffff1661245e611b14565b73ffffffffffffffffffffffffffffffffffffffff16146124b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ab906149f1565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124e46128e4565b73ffffffffffffffffffffffffffffffffffffffff16612502611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f906149f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf906151bc565b60405180910390fd5b6125d18161384f565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006126166128e4565b73ffffffffffffffffffffffffffffffffffffffff16612634611b14565b73ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612681906149f1565b60405180910390fd5b600f5460105461269a9190614c1e565b42116126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d290615228565b60405180910390fd5b6103e8821115612720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612717906152ba565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016127829190614773565b602060405180830381865afa15801561279f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c391906152ef565b905060006127ee6127106127e086856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115612827576128267f000000000000000000000000000000000000000000000000000000000000000061dead836139e2565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289457600080fd5b505af11580156128a8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129539061538e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390615420565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aaa91906146c9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e906154b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90615544565b60405180910390fd5b6000811415612bb157612bac838360006139e2565b61384a565b601160009054906101000a900460ff161561327457612bce611b14565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3c5750612c0c611b14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c755750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612caf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc85750600560149054906101000a900460ff16155b1561327357601160019054906101000a900460ff16612dc257601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db8906155b0565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8a57612ddf611b14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f895743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b90615668565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d457600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e906156fa565b60405180910390fd5b600a54613083836115d3565b8261308e9190614c1e565b11156130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c690615766565b60405180910390fd5b613272565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131775750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b8906157f8565b60405180910390fd5b613271565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327057600a54613223836115d3565b8261322e9190614c1e565b111561326f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326690615766565b60405180910390fd5b5b5b5b5b5b600061327f306115d3565b9050600060095482101590508080156132a45750601160029054906101000a900460ff165b80156132bd5750600560149054906101000a900460ff16155b80156133135750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133695750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bf5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613403576001600560146101000a81548160ff0219169083151502179055506133e7613c63565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134815750600c60009054906101000a900460ff165b801561349c5750600d54600e546134989190614c1e565b4210155b80156134f25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613501576134ff613f4a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c157600090505b6000811561383a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362457506000601854115b156136f1576136516064613643601854886139b690919063ffffffff16565b6139cc90919063ffffffff16565b9050601854601a54826136649190614a40565b61366e9190614ac9565b601d600082825461367f9190614c1e565b92505081905550601854601b54826136979190614a40565b6136a19190614ac9565b601e60008282546136b29190614c1e565b92505081905550601854601954826136ca9190614a40565b6136d49190614ac9565b601c60008282546136e59190614c1e565b92505081905550613816565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374c57506000601454115b1561381557613779606461376b601454886139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506014546016548261378c9190614a40565b6137969190614ac9565b601d60008282546137a79190614c1e565b92505081905550601454601754826137bf9190614a40565b6137c99190614ac9565b601e60008282546137da9190614c1e565b92505081905550601454601554826137f29190614a40565b6137fc9190614ac9565b601c600082825461380d9190614c1e565b925050819055505b5b600081111561382b5761382a8730836139e2565b5b80856138379190615818565b94505b6138458787876139e2565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c49190614a40565b905092915050565b600081836139da9190614ac9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a49906154b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab990615544565b60405180910390fd5b613acd838383614110565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a906158be565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be69190614c1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4a91906146c9565b60405180910390a3613c5d848484614115565b50505050565b6000613c6e306115d3565b90506000601e54601c54601d54613c859190614c1e565b613c8f9190614c1e565b9050600080831480613ca15750600082145b15613cae57505050613f48565b6014600954613cbd9190614a40565b831115613cd6576014600954613cd39190614a40565b92505b6000600283601d5486613ce99190614a40565b613cf39190614ac9565b613cfd9190614ac9565b90506000613d14828661411a90919063ffffffff16565b90506000479050613d2482614130565b6000613d39824761411a90919063ffffffff16565b90506000613d6487613d56601c54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000613d8f88613d81601e54866139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000818385613da09190615818565b613daa9190615818565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0a9061590f565b60006040518083038185875af1925050503d8060008114613e47576040519150601f19603f3d011682016040523d82523d6000602084013e613e4c565b606091505b505080985050600087118015613e625750600081115b15613eaf57613e71878261436d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea693929190615924565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef59061590f565b60006040518083038185875af1925050503d8060008114613f32576040519150601f19603f3d011682016040523d82523d6000602084013e613f37565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613fae9190614773565b602060405180830381865afa158015613fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fef91906152ef565b9050600061401c61271061400e600b54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115614055576140547f000000000000000000000000000000000000000000000000000000000000000061dead836139e2565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c257600080fd5b505af11580156140d6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836141289190615818565b905092915050565b6000600267ffffffffffffffff81111561414d5761414c61595b565b5b60405190808252806020026020018201604052801561417b5781602001602082028036833780820191505090505b50905030816000815181106141935761419261598a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425c91906159ce565b816001815181106142705761426f61598a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d5307f0000000000000000000000000000000000000000000000000000000000000000846128ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614337959493929190615af4565b600060405180830381600087803b15801561435157600080fd5b505af1158015614365573d6000803e3d6000fd5b505050505050565b614398307f0000000000000000000000000000000000000000000000000000000000000000846128ec565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143ff96959493929190615b4e565b60606040518083038185885af115801561441d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144429190615baf565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614483578082015181840152602081019050614468565b83811115614492576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b482614449565b6144be8185614454565b93506144ce818560208601614465565b6144d781614498565b840191505092915050565b600060208201905081810360008301526144fc81846144a9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453482614509565b9050919050565b61454481614529565b811461454f57600080fd5b50565b6000813590506145618161453b565b92915050565b6000819050919050565b61457a81614567565b811461458557600080fd5b50565b60008135905061459781614571565b92915050565b600080604083850312156145b4576145b3614504565b5b60006145c285828601614552565b92505060206145d385828601614588565b9150509250929050565b60008115159050919050565b6145f2816145dd565b82525050565b600060208201905061460d60008301846145e9565b92915050565b60006020828403121561462957614628614504565b5b600061463784828501614552565b91505092915050565b6000819050919050565b600061466561466061465b84614509565b614640565b614509565b9050919050565b60006146778261464a565b9050919050565b60006146898261466c565b9050919050565b6146998161467e565b82525050565b60006020820190506146b46000830184614690565b92915050565b6146c381614567565b82525050565b60006020820190506146de60008301846146ba565b92915050565b6000602082840312156146fa576146f9614504565b5b600061470884828501614588565b91505092915050565b60008060006060848603121561472a57614729614504565b5b600061473886828701614552565b935050602061474986828701614552565b925050604061475a86828701614588565b9150509250925092565b61476d81614529565b82525050565b60006020820190506147886000830184614764565b92915050565b600060ff82169050919050565b6147a48161478e565b82525050565b60006020820190506147bf600083018461479b565b92915050565b6147ce816145dd565b81146147d957600080fd5b50565b6000813590506147eb816147c5565b92915050565b60008060006060848603121561480a57614809614504565b5b600061481886828701614588565b935050602061482986828701614588565b925050604061483a868287016147dc565b9150509250925092565b6000806040838503121561485b5761485a614504565b5b600061486985828601614552565b925050602061487a858286016147dc565b9150509250929050565b60008060006060848603121561489d5761489c614504565b5b60006148ab86828701614588565b93505060206148bc86828701614588565b92505060406148cd86828701614588565b9150509250925092565b6000602082840312156148ed576148ec614504565b5b60006148fb848285016147dc565b91505092915050565b6000806040838503121561491b5761491a614504565b5b600061492985828601614552565b925050602061493a85828601614552565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498b57607f821691505b6020821081141561499f5761499e614944565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149db602083614454565b91506149e6826149a5565b602082019050919050565b60006020820190508181036000830152614a0a816149ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4b82614567565b9150614a5683614567565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8f57614a8e614a11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad482614567565b9150614adf83614567565b925082614aef57614aee614a9a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b56602f83614454565b9150614b6182614afa565b604082019050919050565b60006020820190508181036000830152614b8581614b49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be8602883614454565b9150614bf382614b8c565b604082019050919050565b60006020820190508181036000830152614c1781614bdb565b9050919050565b6000614c2982614567565b9150614c3483614567565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6957614c68614a11565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cd0603383614454565b9150614cdb82614c74565b604082019050919050565b60006020820190508181036000830152614cff81614cc3565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d62603083614454565b9150614d6d82614d06565b604082019050919050565b60006020820190508181036000830152614d9181614d55565b9050919050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614dce601c83614454565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e60603983614454565b9150614e6b82614e04565b604082019050919050565b60006020820190508181036000830152614e8f81614e53565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef2602583614454565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b6000614f5e601d83614454565b9150614f6982614f28565b602082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614ff0602483614454565b9150614ffb82614f94565b604082019050919050565b6000602082019050818103600083015261501f81614fe3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615082603583614454565b915061508d82615026565b604082019050919050565b600060208201905081810360008301526150b181615075565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615114603483614454565b915061511f826150b8565b604082019050919050565b6000602082019050818103600083015261514381615107565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151a6602683614454565b91506151b18261514a565b604082019050919050565b600060208201905081810360008301526151d581615199565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615212602083614454565b915061521d826151dc565b602082019050919050565b6000602082019050818103600083015261524181615205565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152a4602a83614454565b91506152af82615248565b604082019050919050565b600060208201905081810360008301526152d381615297565b9050919050565b6000815190506152e981614571565b92915050565b60006020828403121561530557615304614504565b5b6000615313848285016152da565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615378602483614454565b91506153838261531c565b604082019050919050565b600060208201905081810360008301526153a78161536b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061540a602283614454565b9150615415826153ae565b604082019050919050565b60006020820190508181036000830152615439816153fd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061549c602583614454565b91506154a782615440565b604082019050919050565b600060208201905081810360008301526154cb8161548f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061552e602383614454565b9150615539826154d2565b604082019050919050565b6000602082019050818103600083015261555d81615521565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061559a601683614454565b91506155a582615564565b602082019050919050565b600060208201905081810360008301526155c98161558d565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615652604983614454565b915061565d826155d0565b606082019050919050565b6000602082019050818103600083015261568181615645565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006156e4603583614454565b91506156ef82615688565b604082019050919050565b60006020820190508181036000830152615713816156d7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615750601383614454565b915061575b8261571a565b602082019050919050565b6000602082019050818103600083015261577f81615743565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006157e2603683614454565b91506157ed82615786565b604082019050919050565b60006020820190508181036000830152615811816157d5565b9050919050565b600061582382614567565b915061582e83614567565b92508282101561584157615840614a11565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006158a8602683614454565b91506158b38261584c565b604082019050919050565b600060208201905081810360008301526158d78161589b565b9050919050565b600081905092915050565b50565b60006158f96000836158de565b9150615904826158e9565b600082019050919050565b600061591a826158ec565b9150819050919050565b600060608201905061593960008301866146ba565b61594660208301856146ba565b61595360408301846146ba565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506159c88161453b565b92915050565b6000602082840312156159e4576159e3614504565b5b60006159f2848285016159b9565b91505092915050565b6000819050919050565b6000615a20615a1b615a16846159fb565b614640565b614567565b9050919050565b615a3081615a05565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615a6b81614529565b82525050565b6000615a7d8383615a62565b60208301905092915050565b6000602082019050919050565b6000615aa182615a36565b615aab8185615a41565b9350615ab683615a52565b8060005b83811015615ae7578151615ace8882615a71565b9750615ad983615a89565b925050600181019050615aba565b5085935050505092915050565b600060a082019050615b0960008301886146ba565b615b166020830187615a27565b8181036040830152615b288186615a96565b9050615b376060830185614764565b615b4460808301846146ba565b9695505050505050565b600060c082019050615b636000830189614764565b615b7060208301886146ba565b615b7d6040830187615a27565b615b8a6060830186615a27565b615b976080830185614764565b615ba460a08301846146ba565b979650505050505050565b600080600060608486031215615bc857615bc7614504565b5b6000615bd6868287016152da565b9350506020615be7868287016152da565b9250506040615bf8868287016152da565b915050925092509256fea264697066735822122099c1ec62e0f4ce97cf6a3e3d3e864c58f3fc963e0ef61405c2d7a1d62c18a67c64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e01578063fb002c9714610e2c578063fd72e22a14610e57578063fe72b27a14610e82576103b8565b8063e884f26014610d57578063f11a24d314610d82578063f2fde38b14610dad578063f637434214610dd6576103b8565b8063d257b34f116100dc578063d257b34f14610c87578063d85ba06314610cc4578063dd62ed3e14610cef578063e2f4560514610d2c576103b8565b8063c17b5b8c14610bdf578063c18bc19514610c08578063c876d0b914610c31578063c8c8ebe414610c5c576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b11578063b62496f514610b4e578063bbc0c74214610b8b578063c024666814610bb6576103b8565b80639fccce3214610a53578063a0d82dc514610a7e578063a457c2d714610aa9578063a4c82a0014610ae6576103b8565b806395d89b41116101c157806395d89b41146109a95780639a7a23d6146109d45780639c3b4fdc146109fd5780639ec22c0e14610a28576103b8565b80638da5cb5b1461092a5780638ea5220f14610955578063924de9b714610980576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108965780637571336a146108c15780638095d564146108ea5780638a8c523c14610913576103b8565b80636ddd1713146107ee57806370a0823114610819578063715018a614610856578063730c18881461086d576103b8565b80634f77f6c0116102a65780634f77f6c0146107305780634fbee1931461075b5780635a139dd4146107985780636a486a8e146107c3576103b8565b8063313ce56714610672578063395093511461069d57806349bd5a5e146106da5780634a62bb6514610705576103b8565b8063199ffc721161034f57806327c8f8351161031e57806327c8f835146105c85780632c3e486c146105f35780632e82f1a01461061e57806330d5d18d14610649576103b8565b8063199ffc721461050c5780631a8145bb14610537578063203e727e1461056257806323b872dd1461058b576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906144e2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061459d565b610f51565b60405161041c91906145f8565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614613565b610f6f565b60405161045991906145f8565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061469f565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906146c9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614613565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906146c9565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906146c9565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906146c9565b60405180910390f35b34801561056e57600080fd5b50610589600480360381019061058491906146e4565b61110a565b005b34801561059757600080fd5b506105b260048036038101906105ad9190614711565b611219565b6040516105bf91906145f8565b60405180910390f35b3480156105d457600080fd5b506105dd611311565b6040516105ea9190614773565b60405180910390f35b3480156105ff57600080fd5b50610608611317565b60405161061591906146c9565b60405180910390f35b34801561062a57600080fd5b5061063361131d565b60405161064091906145f8565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190614613565b611330565b005b34801561067e57600080fd5b5061068761146c565b60405161069491906147aa565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf919061459d565b611475565b6040516106d191906145f8565b60405180910390f35b3480156106e657600080fd5b506106ef611521565b6040516106fc9190614773565b60405180910390f35b34801561071157600080fd5b5061071a611545565b60405161072791906145f8565b60405180910390f35b34801561073c57600080fd5b50610745611558565b60405161075291906146c9565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d9190614613565b61155e565b60405161078f91906145f8565b60405180910390f35b3480156107a457600080fd5b506107ad6115b4565b6040516107ba91906146c9565b60405180910390f35b3480156107cf57600080fd5b506107d86115ba565b6040516107e591906146c9565b60405180910390f35b3480156107fa57600080fd5b506108036115c0565b60405161081091906145f8565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190614613565b6115d3565b60405161084d91906146c9565b60405180910390f35b34801561086257600080fd5b5061086b61161b565b005b34801561087957600080fd5b50610894600480360381019061088f91906147f1565b6116a3565b005b3480156108a257600080fd5b506108ab6117e3565b6040516108b891906145f8565b60405180910390f35b3480156108cd57600080fd5b506108e860048036038101906108e39190614844565b611883565b005b3480156108f657600080fd5b50610911600480360381019061090c9190614884565b61195a565b005b34801561091f57600080fd5b50610928611a59565b005b34801561093657600080fd5b5061093f611b14565b60405161094c9190614773565b60405180910390f35b34801561096157600080fd5b5061096a611b3e565b6040516109779190614773565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a291906148d7565b611b64565b005b3480156109b557600080fd5b506109be611bfd565b6040516109cb91906144e2565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f69190614844565b611c8f565b005b348015610a0957600080fd5b50610a12611da8565b604051610a1f91906146c9565b60405180910390f35b348015610a3457600080fd5b50610a3d611dae565b604051610a4a91906146c9565b60405180910390f35b348015610a5f57600080fd5b50610a68611db4565b604051610a7591906146c9565b60405180910390f35b348015610a8a57600080fd5b50610a93611dba565b604051610aa091906146c9565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb919061459d565b611dc0565b604051610add91906145f8565b60405180910390f35b348015610af257600080fd5b50610afb611eab565b604051610b0891906146c9565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b33919061459d565b611eb1565b604051610b4591906145f8565b60405180910390f35b348015610b5a57600080fd5b50610b756004803603810190610b709190614613565b611ecf565b604051610b8291906145f8565b60405180910390f35b348015610b9757600080fd5b50610ba0611eef565b604051610bad91906145f8565b60405180910390f35b348015610bc257600080fd5b50610bdd6004803603810190610bd89190614844565b611f02565b005b348015610beb57600080fd5b50610c066004803603810190610c019190614884565b612027565b005b348015610c1457600080fd5b50610c2f6004803603810190610c2a91906146e4565b612126565b005b348015610c3d57600080fd5b50610c46612235565b604051610c5391906145f8565b60405180910390f35b348015610c6857600080fd5b50610c71612248565b604051610c7e91906146c9565b60405180910390f35b348015610c9357600080fd5b50610cae6004803603810190610ca991906146e4565b61224e565b604051610cbb91906145f8565b60405180910390f35b348015610cd057600080fd5b50610cd96123a3565b604051610ce691906146c9565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614904565b6123a9565b604051610d2391906146c9565b60405180910390f35b348015610d3857600080fd5b50610d41612430565b604051610d4e91906146c9565b60405180910390f35b348015610d6357600080fd5b50610d6c612436565b604051610d7991906145f8565b60405180910390f35b348015610d8e57600080fd5b50610d976124d6565b604051610da491906146c9565b60405180910390f35b348015610db957600080fd5b50610dd46004803603810190610dcf9190614613565b6124dc565b005b348015610de257600080fd5b50610deb6125d4565b604051610df891906146c9565b60405180910390f35b348015610e0d57600080fd5b50610e166125da565b604051610e2391906146c9565b60405180910390f35b348015610e3857600080fd5b50610e416125e0565b604051610e4e91906146c9565b60405180910390f35b348015610e6357600080fd5b50610e6c6125e6565b604051610e799190614773565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906146e4565b61260c565b604051610eb691906145f8565b60405180910390f35b606060038054610ece90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614973565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6128e4565b84846128ec565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46128e4565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906149f1565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b6111126128e4565b73ffffffffffffffffffffffffffffffffffffffff16611130611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906149f1565b60405180910390fd5b670de0b6b3a76400006103e8600161119c610fb2565b6111a69190614a40565b6111b09190614ac9565b6111ba9190614ac9565b8110156111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f390614b6c565b60405180910390fd5b670de0b6b3a7640000816112109190614a40565b60088190555050565b6000611226848484612ab7565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112716128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890614bfe565b60405180910390fd5b611305856112fd6128e4565b8584036128ec565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b6113386128e4565b73ffffffffffffffffffffffffffffffffffffffff16611356611b14565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a3906149f1565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fe1bb4a3e2b2b99353f84d73df9e136cfe17627ed07083a649101dfa6bde8459c60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b60006115176114826128e4565b8484600160006114906128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115129190614c1e565b6128ec565b6001905092915050565b7f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da681565b601160009054906101000a900460ff1681565b60195481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116236128e4565b73ffffffffffffffffffffffffffffffffffffffff16611641611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168e906149f1565b60405180910390fd5b6116a1600061384f565b565b6116ab6128e4565b73ffffffffffffffffffffffffffffffffffffffff166116c9611b14565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611716906149f1565b60405180910390fd5b610258831015611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614ce6565b60405180910390fd5b6103e88211158015611777575060008210155b6117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90614d78565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006117ed6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661180b611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906149f1565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61188b6128e4565b73ffffffffffffffffffffffffffffffffffffffff166118a9611b14565b73ffffffffffffffffffffffffffffffffffffffff16146118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f6906149f1565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6119626128e4565b73ffffffffffffffffffffffffffffffffffffffff16611980611b14565b73ffffffffffffffffffffffffffffffffffffffff16146119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd906149f1565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546119fe9190614c1e565b611a089190614c1e565b60148190555060096014541115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614de4565b60405180910390fd5b505050565b611a616128e4565b73ffffffffffffffffffffffffffffffffffffffff16611a7f611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc906149f1565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b6c6128e4565b73ffffffffffffffffffffffffffffffffffffffff16611b8a611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd7906149f1565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611c0c90614973565b80601f0160208091040260200160405190810160405280929190818152602001828054611c3890614973565b8015611c855780601f10611c5a57610100808354040283529160200191611c85565b820191906000526020600020905b815481529060010190602001808311611c6857829003601f168201915b5050505050905090565b611c976128e4565b73ffffffffffffffffffffffffffffffffffffffff16611cb5611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906149f1565b60405180910390fd5b7f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9190614e76565b60405180910390fd5b611da48282613915565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611dcf6128e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390614f08565b60405180910390fd5b611ea0611e976128e4565b858584036128ec565b600191505092915050565b600e5481565b6000611ec5611ebe6128e4565b8484612ab7565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611f0a6128e4565b73ffffffffffffffffffffffffffffffffffffffff16611f28611b14565b73ffffffffffffffffffffffffffffffffffffffff1614611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f75906149f1565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161201b91906145f8565b60405180910390a25050565b61202f6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661204d611b14565b73ffffffffffffffffffffffffffffffffffffffff16146120a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209a906149f1565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120cb9190614c1e565b6120d59190614c1e565b60188190555060636018541115612121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211890614f74565b60405180910390fd5b505050565b61212e6128e4565b73ffffffffffffffffffffffffffffffffffffffff1661214c611b14565b73ffffffffffffffffffffffffffffffffffffffff16146121a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612199906149f1565b60405180910390fd5b670de0b6b3a76400006103e860056121b8610fb2565b6121c29190614a40565b6121cc9190614ac9565b6121d69190614ac9565b811015612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90615006565b60405180910390fd5b670de0b6b3a76400008161222c9190614a40565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006122586128e4565b73ffffffffffffffffffffffffffffffffffffffff16612276611b14565b73ffffffffffffffffffffffffffffffffffffffff16146122cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c3906149f1565b60405180910390fd5b620186a060016122da610fb2565b6122e49190614a40565b6122ee9190614ac9565b821015612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232790615098565b60405180910390fd5b6103e8600561233d610fb2565b6123479190614a40565b6123519190614ac9565b821115612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a9061512a565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006124406128e4565b73ffffffffffffffffffffffffffffffffffffffff1661245e611b14565b73ffffffffffffffffffffffffffffffffffffffff16146124b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ab906149f1565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124e46128e4565b73ffffffffffffffffffffffffffffffffffffffff16612502611b14565b73ffffffffffffffffffffffffffffffffffffffff1614612558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254f906149f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bf906151bc565b60405180910390fd5b6125d18161384f565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006126166128e4565b73ffffffffffffffffffffffffffffffffffffffff16612634611b14565b73ffffffffffffffffffffffffffffffffffffffff161461268a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612681906149f1565b60405180910390fd5b600f5460105461269a9190614c1e565b42116126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d290615228565b60405180910390fd5b6103e8821115612720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612717906152ba565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da66040518263ffffffff1660e01b81526004016127829190614773565b602060405180830381865afa15801561279f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c391906152ef565b905060006127ee6127106127e086856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115612827576128267f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da661dead836139e2565b5b60007f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561289457600080fd5b505af11580156128a8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561295c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129539061538e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c390615420565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612aaa91906146c9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1e906154b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90615544565b60405180910390fd5b6000811415612bb157612bac838360006139e2565b61384a565b601160009054906101000a900460ff161561327457612bce611b14565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612c3c5750612c0c611b14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c755750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612caf575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612cc85750600560149054906101000a900460ff16155b1561327357601160019054906101000a900460ff16612dc257601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d825750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db8906155b0565b60405180910390fd5b5b601360009054906101000a900460ff1615612f8a57612ddf611b14565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612e6657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612ebe57507f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612f895743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3b90615668565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130d457600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e906156fa565b60405180910390fd5b600a54613083836115d3565b8261308e9190614c1e565b11156130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c690615766565b60405180910390fd5b613272565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131775750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131c6576008548111156131c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b8906157f8565b60405180910390fd5b613271565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661327057600a54613223836115d3565b8261322e9190614c1e565b111561326f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326690615766565b60405180910390fd5b5b5b5b5b5b600061327f306115d3565b9050600060095482101590508080156132a45750601160029054906101000a900460ff165b80156132bd5750600560149054906101000a900460ff16155b80156133135750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133695750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133bf5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613403576001600560146101000a81548160ff0219169083151502179055506133e7613c63565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156134695750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156134815750600c60009054906101000a900460ff165b801561349c5750600d54600e546134989190614c1e565b4210155b80156134f25750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613501576134ff613f4a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806135b75750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156135c157600090505b6000811561383a57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561362457506000601854115b156136f1576136516064613643601854886139b690919063ffffffff16565b6139cc90919063ffffffff16565b9050601854601a54826136649190614a40565b61366e9190614ac9565b601d600082825461367f9190614c1e565b92505081905550601854601b54826136979190614a40565b6136a19190614ac9565b601e60008282546136b29190614c1e565b92505081905550601854601954826136ca9190614a40565b6136d49190614ac9565b601c60008282546136e59190614c1e565b92505081905550613816565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561374c57506000601454115b1561381557613779606461376b601454886139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506014546016548261378c9190614a40565b6137969190614ac9565b601d60008282546137a79190614c1e565b92505081905550601454601754826137bf9190614a40565b6137c99190614ac9565b601e60008282546137da9190614c1e565b92505081905550601454601554826137f29190614a40565b6137fc9190614ac9565b601c600082825461380d9190614c1e565b925050819055505b5b600081111561382b5761382a8730836139e2565b5b80856138379190615818565b94505b6138458787876139e2565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836139c49190614a40565b905092915050565b600081836139da9190614ac9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a49906154b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ab990615544565b60405180910390fd5b613acd838383614110565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4a906158be565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613be69190614c1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613c4a91906146c9565b60405180910390a3613c5d848484614115565b50505050565b6000613c6e306115d3565b90506000601e54601c54601d54613c859190614c1e565b613c8f9190614c1e565b9050600080831480613ca15750600082145b15613cae57505050613f48565b6014600954613cbd9190614a40565b831115613cd6576014600954613cd39190614a40565b92505b6000600283601d5486613ce99190614a40565b613cf39190614ac9565b613cfd9190614ac9565b90506000613d14828661411a90919063ffffffff16565b90506000479050613d2482614130565b6000613d39824761411a90919063ffffffff16565b90506000613d6487613d56601c54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000613d8f88613d81601e54866139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000818385613da09190615818565b613daa9190615818565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613e0a9061590f565b60006040518083038185875af1925050503d8060008114613e47576040519150601f19603f3d011682016040523d82523d6000602084013e613e4c565b606091505b505080985050600087118015613e625750600081115b15613eaf57613e71878261436d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613ea693929190615924565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613ef59061590f565b60006040518083038185875af1925050503d8060008114613f32576040519150601f19603f3d011682016040523d82523d6000602084013e613f37565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da66040518263ffffffff1660e01b8152600401613fae9190614773565b602060405180830381865afa158015613fcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fef91906152ef565b9050600061401c61271061400e600b54856139b690919063ffffffff16565b6139cc90919063ffffffff16565b90506000811115614055576140547f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da661dead836139e2565b5b60007f000000000000000000000000091d160cb2a8c50659139f83a40aacfef5a28da690508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156140c257600080fd5b505af11580156140d6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b600081836141289190615818565b905092915050565b6000600267ffffffffffffffff81111561414d5761414c61595b565b5b60405190808252806020026020018201604052801561417b5781602001602082028036833780820191505090505b50905030816000815181106141935761419261598a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061425c91906159ce565b816001815181106142705761426f61598a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506142d5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614337959493929190615af4565b600060405180830381600087803b15801561435157600080fd5b505af1158015614365573d6000803e3d6000fd5b505050505050565b614398307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846128ec565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016143ff96959493929190615b4e565b60606040518083038185885af115801561441d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906144429190615baf565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614483578082015181840152602081019050614468565b83811115614492576000848401525b50505050565b6000601f19601f8301169050919050565b60006144b482614449565b6144be8185614454565b93506144ce818560208601614465565b6144d781614498565b840191505092915050565b600060208201905081810360008301526144fc81846144a9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061453482614509565b9050919050565b61454481614529565b811461454f57600080fd5b50565b6000813590506145618161453b565b92915050565b6000819050919050565b61457a81614567565b811461458557600080fd5b50565b60008135905061459781614571565b92915050565b600080604083850312156145b4576145b3614504565b5b60006145c285828601614552565b92505060206145d385828601614588565b9150509250929050565b60008115159050919050565b6145f2816145dd565b82525050565b600060208201905061460d60008301846145e9565b92915050565b60006020828403121561462957614628614504565b5b600061463784828501614552565b91505092915050565b6000819050919050565b600061466561466061465b84614509565b614640565b614509565b9050919050565b60006146778261464a565b9050919050565b60006146898261466c565b9050919050565b6146998161467e565b82525050565b60006020820190506146b46000830184614690565b92915050565b6146c381614567565b82525050565b60006020820190506146de60008301846146ba565b92915050565b6000602082840312156146fa576146f9614504565b5b600061470884828501614588565b91505092915050565b60008060006060848603121561472a57614729614504565b5b600061473886828701614552565b935050602061474986828701614552565b925050604061475a86828701614588565b9150509250925092565b61476d81614529565b82525050565b60006020820190506147886000830184614764565b92915050565b600060ff82169050919050565b6147a48161478e565b82525050565b60006020820190506147bf600083018461479b565b92915050565b6147ce816145dd565b81146147d957600080fd5b50565b6000813590506147eb816147c5565b92915050565b60008060006060848603121561480a57614809614504565b5b600061481886828701614588565b935050602061482986828701614588565b925050604061483a868287016147dc565b9150509250925092565b6000806040838503121561485b5761485a614504565b5b600061486985828601614552565b925050602061487a858286016147dc565b9150509250929050565b60008060006060848603121561489d5761489c614504565b5b60006148ab86828701614588565b93505060206148bc86828701614588565b92505060406148cd86828701614588565b9150509250925092565b6000602082840312156148ed576148ec614504565b5b60006148fb848285016147dc565b91505092915050565b6000806040838503121561491b5761491a614504565b5b600061492985828601614552565b925050602061493a85828601614552565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498b57607f821691505b6020821081141561499f5761499e614944565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149db602083614454565b91506149e6826149a5565b602082019050919050565b60006020820190508181036000830152614a0a816149ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a4b82614567565b9150614a5683614567565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a8f57614a8e614a11565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614ad482614567565b9150614adf83614567565b925082614aef57614aee614a9a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614b56602f83614454565b9150614b6182614afa565b604082019050919050565b60006020820190508181036000830152614b8581614b49565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614be8602883614454565b9150614bf382614b8c565b604082019050919050565b60006020820190508181036000830152614c1781614bdb565b9050919050565b6000614c2982614567565b9150614c3483614567565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c6957614c68614a11565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614cd0603383614454565b9150614cdb82614c74565b604082019050919050565b60006020820190508181036000830152614cff81614cc3565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614d62603083614454565b9150614d6d82614d06565b604082019050919050565b60006020820190508181036000830152614d9181614d55565b9050919050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614dce601c83614454565b9150614dd982614d98565b602082019050919050565b60006020820190508181036000830152614dfd81614dc1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e60603983614454565b9150614e6b82614e04565b604082019050919050565b60006020820190508181036000830152614e8f81614e53565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ef2602583614454565b9150614efd82614e96565b604082019050919050565b60006020820190508181036000830152614f2181614ee5565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b6000614f5e601d83614454565b9150614f6982614f28565b602082019050919050565b60006020820190508181036000830152614f8d81614f51565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614ff0602483614454565b9150614ffb82614f94565b604082019050919050565b6000602082019050818103600083015261501f81614fe3565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000615082603583614454565b915061508d82615026565b604082019050919050565b600060208201905081810360008301526150b181615075565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615114603483614454565b915061511f826150b8565b604082019050919050565b6000602082019050818103600083015261514381615107565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151a6602683614454565b91506151b18261514a565b604082019050919050565b600060208201905081810360008301526151d581615199565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000615212602083614454565b915061521d826151dc565b602082019050919050565b6000602082019050818103600083015261524181615205565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006152a4602a83614454565b91506152af82615248565b604082019050919050565b600060208201905081810360008301526152d381615297565b9050919050565b6000815190506152e981614571565b92915050565b60006020828403121561530557615304614504565b5b6000615313848285016152da565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615378602483614454565b91506153838261531c565b604082019050919050565b600060208201905081810360008301526153a78161536b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061540a602283614454565b9150615415826153ae565b604082019050919050565b60006020820190508181036000830152615439816153fd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061549c602583614454565b91506154a782615440565b604082019050919050565b600060208201905081810360008301526154cb8161548f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061552e602383614454565b9150615539826154d2565b604082019050919050565b6000602082019050818103600083015261555d81615521565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061559a601683614454565b91506155a582615564565b602082019050919050565b600060208201905081810360008301526155c98161558d565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615652604983614454565b915061565d826155d0565b606082019050919050565b6000602082019050818103600083015261568181615645565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006156e4603583614454565b91506156ef82615688565b604082019050919050565b60006020820190508181036000830152615713816156d7565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615750601383614454565b915061575b8261571a565b602082019050919050565b6000602082019050818103600083015261577f81615743565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006157e2603683614454565b91506157ed82615786565b604082019050919050565b60006020820190508181036000830152615811816157d5565b9050919050565b600061582382614567565b915061582e83614567565b92508282101561584157615840614a11565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006158a8602683614454565b91506158b38261584c565b604082019050919050565b600060208201905081810360008301526158d78161589b565b9050919050565b600081905092915050565b50565b60006158f96000836158de565b9150615904826158e9565b600082019050919050565b600061591a826158ec565b9150819050919050565b600060608201905061593960008301866146ba565b61594660208301856146ba565b61595360408301846146ba565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506159c88161453b565b92915050565b6000602082840312156159e4576159e3614504565b5b60006159f2848285016159b9565b91505092915050565b6000819050919050565b6000615a20615a1b615a16846159fb565b614640565b614567565b9050919050565b615a3081615a05565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615a6b81614529565b82525050565b6000615a7d8383615a62565b60208301905092915050565b6000602082019050919050565b6000615aa182615a36565b615aab8185615a41565b9350615ab683615a52565b8060005b83811015615ae7578151615ace8882615a71565b9750615ad983615a89565b925050600181019050615aba565b5085935050505092915050565b600060a082019050615b0960008301886146ba565b615b166020830187615a27565b8181036040830152615b288186615a96565b9050615b376060830185614764565b615b4460808301846146ba565b9695505050505050565b600060c082019050615b636000830189614764565b615b7060208301886146ba565b615b7d6040830187615a27565b615b8a6060830186615a27565b615b976080830185614764565b615ba460a08301846146ba565b979650505050505050565b600080600060608486031215615bc857615bc7614504565b5b6000615bd6868287016152da565b9350506020615be7868287016152da565b9250506040615bf8868287016152da565b915050925092509256fea264697066735822122099c1ec62e0f4ce97cf6a3e3d3e864c58f3fc963e0ef61405c2d7a1d62c18a67c64736f6c634300080a0033

Deployed Bytecode Sourcemap

33034:19468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9862:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12029:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34651:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33109:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10982:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41820:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33662:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33490:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34435:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39121:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12680:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33212:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33572:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33532:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41574:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10824:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13581:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33167:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33760:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34283:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41985:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34140:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34248:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33840:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11153:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3097:103;;;;;;;;;;;;;:::i;:::-;;50084:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38229:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39668:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40039:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38022:155;;;;;;;;;;;;;:::i;:::-;;2446:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33342:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39931:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10081:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41066:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34215:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33716:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34475:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34360:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14299:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33624:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11493:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34872:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33800:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40876:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40452:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39404:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34058:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33375:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38616:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34106:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11731:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33417:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38411:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34178:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3355:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34322:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33457:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34394:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33304:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51443:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9862:100;9916:13;9949:5;9942:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9862:100;:::o;12029:169::-;12112:4;12129:39;12138:12;:10;:12::i;:::-;12152:7;12161:6;12129:8;:39::i;:::-;12186:4;12179:11;;12029:169;;;;:::o;34651:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33109:51::-;;;:::o;10982:108::-;11043:7;11070:12;;11063:19;;10982:108;:::o;41820:157::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41927:9:::1;;;;;;;;;;;41899:38;;41916:9;41899:38;;;;;;;;;;;;41960:9;41948;;:21;;;;;;;;;;;;;;;;;;41820:157:::0;:::o;33662:47::-;;;;:::o;33490:35::-;;;;:::o;34435:33::-;;;;:::o;39121:275::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39258:4:::1;39250;39245:1;39229:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39228:26;;;;:::i;:::-;39227:35;;;;:::i;:::-;39217:6;:45;;39195:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39381:6;39371;:17;;;;:::i;:::-;39348:20;:40;;;;39121:275:::0;:::o;12680:492::-;12820:4;12837:36;12847:6;12855:9;12866:6;12837:9;:36::i;:::-;12886:24;12913:11;:19;12925:6;12913:19;;;;;;;;;;;;;;;:33;12933:12;:10;:12::i;:::-;12913:33;;;;;;;;;;;;;;;;12886:60;;12985:6;12965:16;:26;;12957:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13072:57;13081:6;13089:12;:10;:12::i;:::-;13122:6;13103:16;:25;13072:8;:57::i;:::-;13160:4;13153:11;;;12680:492;;;;;:::o;33212:53::-;33258:6;33212:53;:::o;33572:45::-;;;;:::o;33532:33::-;;;;;;;;;;;;;:::o;41574:238::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41738:16:::1;;;;;;;;;;;41693:62;;41717:19;41693:62;;;;;;;;;;;;41785:19;41766:16;;:38;;;;;;;;;;;;;;;;;;41574:238:::0;:::o;10824:93::-;10882:5;10907:2;10900:9;;10824:93;:::o;13581:215::-;13669:4;13686:80;13695:12;:10;:12::i;:::-;13709:7;13755:10;13718:11;:25;13730:12;:10;:12::i;:::-;13718:25;;;;;;;;;;;;;;;:34;13744:7;13718:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13686:8;:80::i;:::-;13784:4;13777:11;;13581:215;;;;:::o;33167:38::-;;;:::o;33760:33::-;;;;;;;;;;;;;:::o;34283:32::-;;;;:::o;41985:126::-;42051:4;42075:19;:28;42095:7;42075:28;;;;;;;;;;;;;;;;;;;;;;;;;42068:35;;41985:126;;;:::o;34140:31::-;;;;:::o;34248:28::-;;;;:::o;33840:31::-;;;;;;;;;;;;;:::o;11153:127::-;11227:7;11254:9;:18;11264:7;11254:18;;;;;;;;;;;;;;;;11247:25;;11153:127;;;:::o;3097:103::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3162:30:::1;3189:1;3162:18;:30::i;:::-;3097:103::o:0;50084:555::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50286:3:::1;50263:19;:26;;50241:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50413:4;50401:8;:16;;:33;;;;;50433:1;50421:8;:13;;50401:33;50379:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50539:19;50521:15;:37;;;;50588:8;50569:16;:27;;;;50623:8;50607:13;;:24;;;;;;;;;;;;;;;;;;50084:555:::0;;;:::o;38229:121::-;38281:4;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38315:5:::1;38298:14;;:22;;;;;;;;;;;;;;;;;;38338:4;38331:11;;38229:121:::0;:::o;39668:167::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39823:4:::1;39781:31;:39;39813:6;39781:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39668:167:::0;;:::o;40039:405::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40209:14:::1;40190:16;:33;;;;40252:13;40234:15;:31;;;;40288:7;40276:9;:19;;;;40358:9;;40340:15;;40321:16;;:34;;;;:::i;:::-;:46;;;;:::i;:::-;40306:12;:61;;;;40402:1;40386:12;;:17;;40378:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;40039:405:::0;;;:::o;38022:155::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38093:4:::1;38077:13;;:20;;;;;;;;;;;;;;;;;;38122:4;38108:11;;:18;;;;;;;;;;;;;;;;;;38154:15;38137:14;:32;;;;38022:155::o:0;2446:87::-;2492:7;2519:6;;;;;;;;;;;2512:13;;2446:87;:::o;33342:24::-;;;;;;;;;;;;;:::o;39931:100::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40016:7:::1;40002:11;;:21;;;;;;;;;;;;;;;;;;39931:100:::0;:::o;10081:104::-;10137:13;10170:7;10163:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10081:104;:::o;41066:304::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41210:13:::1;41202:21;;:4;:21;;;;41180:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41321:41;41350:4;41356:5;41321:28;:41::i;:::-;41066:304:::0;;:::o;34215:24::-;;;;:::o;33716:35::-;;;;:::o;34475:27::-;;;;:::o;34360:25::-;;;;:::o;14299:413::-;14392:4;14409:24;14436:11;:25;14448:12;:10;:12::i;:::-;14436:25;;;;;;;;;;;;;;;:34;14462:7;14436:34;;;;;;;;;;;;;;;;14409:61;;14509:15;14489:16;:35;;14481:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14602:67;14611:12;:10;:12::i;:::-;14625:7;14653:15;14634:16;:34;14602:8;:67::i;:::-;14700:4;14693:11;;;14299:413;;;;:::o;33624:29::-;;;;:::o;11493:175::-;11579:4;11596:42;11606:12;:10;:12::i;:::-;11620:9;11631:6;11596:9;:42::i;:::-;11656:4;11649:11;;11493:175;;;;:::o;34872:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33800:33::-;;;;;;;;;;;;;:::o;40876:182::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40992:8:::1;40961:19;:28;40981:7;40961:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41032:7;41016:34;;;41041:8;41016:34;;;;;;:::i;:::-;;;;;;;;40876:182:::0;;:::o;40452:416::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40624:14:::1;40604:17;:34;;;;40668:13;40649:16;:32;;;;40705:7;40692:10;:20;;;;40778:10;;40759:16;;40739:17;;:36;;;;:::i;:::-;:49;;;;:::i;:::-;40723:13;:65;;;;40824:2;40807:13;;:19;;40799:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40452:416:::0;;;:::o;39404:256::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39544:4:::1;39536;39531:1;39515:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39514:26;;;;:::i;:::-;39513:35;;;;:::i;:::-;39503:6;:45;;39481:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39645:6;39635;:17;;;;:::i;:::-;39623:9;:29;;;;39404:256:::0;:::o;34058:39::-;;;;;;;;;;;;;:::o;33375:35::-;;;;:::o;38616:497::-;38724:4;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38803:6:::1;38798:1;38782:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38781:28;;;;:::i;:::-;38768:9;:41;;38746:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38958:4;38953:1;38937:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38936:26;;;;:::i;:::-;38923:9;:39;;38901:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39074:9;39053:18;:30;;;;39101:4;39094:11;;38616:497:::0;;;:::o;34106:27::-;;;;:::o;11731:151::-;11820:7;11847:11;:18;11859:5;11847:18;;;;;;;;;;;;;;;:27;11866:7;11847:27;;;;;;;;;;;;;;;;11840:34;;11731:151;;;;:::o;33417:33::-;;;;:::o;38411:135::-;38471:4;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38511:5:::1;38488:20;;:28;;;;;;;;;;;;;;;;;;38534:4;38527:11;;38411:135:::0;:::o;34178:30::-;;;;:::o;3355:201::-;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3464:1:::1;3444:22;;:8;:22;;;;3436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3520:28;3539:8;3520:18;:28::i;:::-;3355:201:::0;:::o;34322:31::-;;;;:::o;33457:24::-;;;;:::o;34394:34::-;;;;:::o;33304:31::-;;;;;;;;;;;;;:::o;51443:1056::-;51554:4;2677:12;:10;:12::i;:::-;2666:23;;:7;:5;:7::i;:::-;:23;;;2658:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51639:19:::1;;51616:20;;:42;;;;:::i;:::-;51598:15;:60;51576:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51748:4;51737:7;:15;;51729:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51833:15;51810:20;:38;;;;51903:28;51934:4;:14;;;51949:13;51934:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51903:60;;52013:20;52036:44;52074:5;52036:33;52061:7;52036:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;52013:67;;52200:1;52185:12;:16;52181:110;;;52218:61;52234:13;52257:6;52266:12;52218:15;:61::i;:::-;52181:110;52366:19;52403:13;52366:51;;52428:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52455:14;;;;;;;;;;52487:4;52480:11;;;;;51443:1056:::0;;;:::o;1119:98::-;1172:7;1199:10;1192:17;;1119:98;:::o;17983:380::-;18136:1;18119:19;;:5;:19;;;;18111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18217:1;18198:21;;:7;:21;;;;18190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18301:6;18271:11;:18;18283:5;18271:18;;;;;;;;;;;;;;;:27;18290:7;18271:27;;;;;;;;;;;;;;;:36;;;;18339:7;18323:32;;18332:5;18323:32;;;18348:6;18323:32;;;;;;:::i;:::-;;;;;;;;17983:380;;;:::o;42169:5015::-;42317:1;42301:18;;:4;:18;;;;42293:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42394:1;42380:16;;:2;:16;;;;42372:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42463:1;42453:6;:11;42449:93;;;42481:28;42497:4;42503:2;42507:1;42481:15;:28::i;:::-;42524:7;;42449:93;42558:14;;;;;;;;;;;42554:2487;;;42619:7;:5;:7::i;:::-;42611:15;;:4;:15;;;;:49;;;;;42653:7;:5;:7::i;:::-;42647:13;;:2;:13;;;;42611:49;:86;;;;;42695:1;42681:16;;:2;:16;;;;42611:86;:128;;;;;42732:6;42718:21;;:2;:21;;;;42611:128;:158;;;;;42761:8;;;;;;;;;;;42760:9;42611:158;42589:2441;;;42809:13;;;;;;;;;;;42804:223;;42881:19;:25;42901:4;42881:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42910:19;:23;42930:2;42910:23;;;;;;;;;;;;;;;;;;;;;;;;;42881:52;42847:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42804:223;43183:20;;;;;;;;;;;43179:641;;;43264:7;:5;:7::i;:::-;43258:13;;:2;:13;;;;:72;;;;;43314:15;43300:30;;:2;:30;;;;43258:72;:129;;;;;43373:13;43359:28;;:2;:28;;;;43258:129;43228:573;;;43551:12;43476:28;:39;43505:9;43476:39;;;;;;;;;;;;;;;;:87;43438:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43765:12;43723:28;:39;43752:9;43723:39;;;;;;;;;;;;;;;:54;;;;43228:573;43179:641;43894:25;:31;43920:4;43894:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43951:31;:35;43983:2;43951:35;;;;;;;;;;;;;;;;;;;;;;;;;43950:36;43894:92;43868:1147;;;44073:20;;44063:6;:30;;44029:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44281:9;;44264:13;44274:2;44264:9;:13::i;:::-;44255:6;:22;;;;:::i;:::-;:35;;44221:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43868:1147;;;44459:25;:29;44485:2;44459:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44514:31;:37;44546:4;44514:37;;;;;;;;;;;;;;;;;;;;;;;;;44513:38;44459:92;44433:582;;;44638:20;;44628:6;:30;;44594:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44433:582;;;44795:31;:35;44827:2;44795:35;;;;;;;;;;;;;;;;;;;;;;;;;44790:225;;44915:9;;44898:13;44908:2;44898:9;:13::i;:::-;44889:6;:22;;;;:::i;:::-;:35;;44855:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44790:225;44433:582;43868:1147;42589:2441;42554:2487;45053:28;45084:24;45102:4;45084:9;:24::i;:::-;45053:55;;45121:12;45160:18;;45136:20;:42;;45121:57;;45209:7;:35;;;;;45233:11;;;;;;;;;;;45209:35;:61;;;;;45262:8;;;;;;;;;;;45261:9;45209:61;:110;;;;;45288:25;:31;45314:4;45288:31;;;;;;;;;;;;;;;;;;;;;;;;;45287:32;45209:110;:153;;;;;45337:19;:25;45357:4;45337:25;;;;;;;;;;;;;;;;;;;;;;;;;45336:26;45209:153;:194;;;;;45380:19;:23;45400:2;45380:23;;;;;;;;;;;;;;;;;;;;;;;;;45379:24;45209:194;45191:326;;;45441:4;45430:8;;:15;;;;;;;;;;;;;;;;;;45462:10;:8;:10::i;:::-;45500:5;45489:8;;:16;;;;;;;;;;;;;;;;;;45191:326;45548:8;;;;;;;;;;;45547:9;:55;;;;;45573:25;:29;45599:2;45573:29;;;;;;;;;;;;;;;;;;;;;;;;;45547:55;:85;;;;;45619:13;;;;;;;;;;;45547:85;:153;;;;;45685:15;;45668:14;;:32;;;;:::i;:::-;45649:15;:51;;45547:153;:196;;;;;45718:19;:25;45738:4;45718:25;;;;;;;;;;;;;;;;;;;;;;;;;45717:26;45547:196;45529:282;;;45770:29;:27;:29::i;:::-;;45529:282;45823:12;45839:8;;;;;;;;;;;45838:9;45823:24;;45949:19;:25;45969:4;45949:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45978:19;:23;45998:2;45978:23;;;;;;;;;;;;;;;;;;;;;;;;;45949:52;45945:100;;;46028:5;46018:15;;45945:100;46057:12;46162:7;46158:973;;;46214:25;:29;46240:2;46214:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46263:1;46247:13;;:17;46214:50;46210:772;;;46292:34;46322:3;46292:25;46303:13;;46292:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46285:41;;46395:13;;46375:16;;46368:4;:23;;;;:::i;:::-;46367:41;;;;:::i;:::-;46345:18;;:63;;;;;;;:::i;:::-;;;;;;;;46465:13;;46451:10;;46444:4;:17;;;;:::i;:::-;46443:35;;;;:::i;:::-;46427:12;;:51;;;;;;;:::i;:::-;;;;;;;;46549:13;;46528:17;;46521:4;:24;;;;:::i;:::-;46520:42;;;;:::i;:::-;46497:19;;:65;;;;;;;:::i;:::-;;;;;;;;46210:772;;;46624:25;:31;46650:4;46624:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46674:1;46659:12;;:16;46624:51;46620:362;;;46703:33;46732:3;46703:24;46714:12;;46703:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46696:40;;46804:12;;46785:15;;46778:4;:22;;;;:::i;:::-;46777:39;;;;:::i;:::-;46755:18;;:61;;;;;;;:::i;:::-;;;;;;;;46872:12;;46859:9;;46852:4;:16;;;;:::i;:::-;46851:33;;;;:::i;:::-;46835:12;;:49;;;;;;;:::i;:::-;;;;;;;;46954:12;;46934:16;;46927:4;:23;;;;:::i;:::-;46926:40;;;;:::i;:::-;46903:19;;:63;;;;;;;:::i;:::-;;;;;;;;46620:362;46210:772;47009:1;47002:4;:8;46998:91;;;47031:42;47047:4;47061;47068;47031:15;:42::i;:::-;46998:91;47115:4;47105:14;;;;;:::i;:::-;;;46158:973;47143:33;47159:4;47165:2;47169:6;47143:15;:33::i;:::-;42282:4902;;;;42169:5015;;;;:::o;3716:191::-;3790:16;3809:6;;;;;;;;;;;3790:25;;3835:8;3826:6;;:17;;;;;;;;;;;;;;;;;;3890:8;3859:40;;3880:8;3859:40;;;;;;;;;;;;3779:128;3716:191;:::o;41378:188::-;41495:5;41461:25;:31;41487:4;41461:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41552:5;41518:40;;41546:4;41518:40;;;;;;;;;;;;41378:188;;:::o;23436:98::-;23494:7;23525:1;23521;:5;;;;:::i;:::-;23514:12;;23436:98;;;;:::o;23835:::-;23893:7;23924:1;23920;:5;;;;:::i;:::-;23913:12;;23835:98;;;;:::o;15202:733::-;15360:1;15342:20;;:6;:20;;;;15334:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15444:1;15423:23;;:9;:23;;;;15415:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15499:47;15520:6;15528:9;15539:6;15499:20;:47::i;:::-;15559:21;15583:9;:17;15593:6;15583:17;;;;;;;;;;;;;;;;15559:41;;15636:6;15619:13;:23;;15611:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15757:6;15741:13;:22;15721:9;:17;15731:6;15721:17;;;;;;;;;;;;;;;:42;;;;15809:6;15785:9;:20;15795:9;15785:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15850:9;15833:35;;15842:6;15833:35;;;15861:6;15833:35;;;;;;:::i;:::-;;;;;;;;15881:46;15901:6;15909:9;15920:6;15881:19;:46::i;:::-;15323:612;15202:733;;;:::o;48314:1762::-;48353:23;48379:24;48397:4;48379:9;:24::i;:::-;48353:50;;48414:25;48511:12;;48476:19;;48442:18;;:53;;;;:::i;:::-;:81;;;;:::i;:::-;48414:109;;48534:12;48582:1;48563:15;:20;:46;;;;48608:1;48587:17;:22;48563:46;48559:85;;;48626:7;;;;;48559:85;48699:2;48678:18;;:23;;;;:::i;:::-;48660:15;:41;48656:115;;;48757:2;48736:18;;:23;;;;:::i;:::-;48718:41;;48656:115;48832:23;48945:1;48912:17;48877:18;;48859:15;:36;;;;:::i;:::-;48858:71;;;;:::i;:::-;:88;;;;:::i;:::-;48832:114;;48957:26;48986:36;49006:15;48986;:19;;:36;;;;:::i;:::-;48957:65;;49035:25;49063:21;49035:49;;49097:36;49114:18;49097:16;:36::i;:::-;49146:18;49167:44;49193:17;49167:21;:25;;:44;;;;:::i;:::-;49146:65;;49224:24;49251:82;49305:17;49251:35;49266:19;;49251:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;49224:109;;49344:17;49364:51;49397:17;49364:28;49379:12;;49364:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49344:71;;49428:23;49486:9;49467:16;49454:10;:29;;;;:::i;:::-;:41;;;;:::i;:::-;49428:67;;49529:1;49508:18;:22;;;;49563:1;49541:19;:23;;;;49590:1;49575:12;:16;;;;49626:9;;;;;;;;;;;49618:23;;49649:9;49618:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49604:59;;;;;49698:1;49680:15;:19;:42;;;;;49721:1;49703:15;:19;49680:42;49676:278;;;49739:46;49752:15;49769;49739:12;:46::i;:::-;49805:137;49838:18;49875:15;49909:18;;49805:137;;;;;;;;:::i;:::-;;;;;;;;49676:278;49988:16;;;;;;;;;;;49980:30;;50032:21;49980:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49966:102;;;;;48342:1734;;;;;;;;;;48314:1762;:::o;50647:788::-;50704:4;50738:15;50721:14;:32;;;;50808:28;50839:4;:14;;;50854:13;50839:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50808:60;;50918:20;50941:77;51002:5;50941:42;50966:16;;50941:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50918:100;;51138:1;51123:12;:16;51119:110;;;51156:61;51172:13;51195:6;51204:12;51156:15;:61::i;:::-;51119:110;51304:19;51341:13;51304:51;;51366:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51393:12;;;;;;;;;;51423:4;51416:11;;;;;50647:788;:::o;18963:125::-;;;;:::o;19692:124::-;;;;:::o;23079:98::-;23137:7;23168:1;23164;:5;;;;:::i;:::-;23157:12;;23079:98;;;;:::o;47192:589::-;47318:21;47356:1;47342:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47318:40;;47387:4;47369;47374:1;47369:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47413:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47403:4;47408:1;47403:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47448:62;47465:4;47480:15;47498:11;47448:8;:62::i;:::-;47549:15;:66;;;47630:11;47656:1;47700:4;47727;47747:15;47549:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47247:534;47192:589;:::o;47789:517::-;47937:62;47954:4;47969:15;47987:11;47937:8;:62::i;:::-;48042:15;:31;;;48081:9;48114:4;48134:11;48160:1;48203;33258:6;48272:15;48042:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47789:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:180::-;11774:77;11771:1;11764:88;11871:4;11868:1;11861:15;11895:4;11892:1;11885:15;11912:185;11952:1;11969:20;11987:1;11969:20;:::i;:::-;11964:25;;12003:20;12021:1;12003:20;:::i;:::-;11998:25;;12042:1;12032:35;;12047:18;;:::i;:::-;12032:35;12089:1;12086;12082:9;12077:14;;11912:185;;;;:::o;12103:234::-;12243:34;12239:1;12231:6;12227:14;12220:58;12312:17;12307:2;12299:6;12295:15;12288:42;12103:234;:::o;12343:366::-;12485:3;12506:67;12570:2;12565:3;12506:67;:::i;:::-;12499:74;;12582:93;12671:3;12582:93;:::i;:::-;12700:2;12695:3;12691:12;12684:19;;12343:366;;;:::o;12715:419::-;12881:4;12919:2;12908:9;12904:18;12896:26;;12968:9;12962:4;12958:20;12954:1;12943:9;12939:17;12932:47;12996:131;13122:4;12996:131;:::i;:::-;12988:139;;12715:419;;;:::o;13140:227::-;13280:34;13276:1;13268:6;13264:14;13257:58;13349:10;13344:2;13336:6;13332:15;13325:35;13140:227;:::o;13373:366::-;13515:3;13536:67;13600:2;13595:3;13536:67;:::i;:::-;13529:74;;13612:93;13701:3;13612:93;:::i;:::-;13730:2;13725:3;13721:12;13714:19;;13373:366;;;:::o;13745:419::-;13911:4;13949:2;13938:9;13934:18;13926:26;;13998:9;13992:4;13988:20;13984:1;13973:9;13969:17;13962:47;14026:131;14152:4;14026:131;:::i;:::-;14018:139;;13745:419;;;:::o;14170:305::-;14210:3;14229:20;14247:1;14229:20;:::i;:::-;14224:25;;14263:20;14281:1;14263:20;:::i;:::-;14258:25;;14417:1;14349:66;14345:74;14342:1;14339:81;14336:107;;;14423:18;;:::i;:::-;14336:107;14467:1;14464;14460:9;14453:16;;14170:305;;;;:::o;14481:238::-;14621:34;14617:1;14609:6;14605:14;14598:58;14690:21;14685:2;14677:6;14673:15;14666:46;14481:238;:::o;14725:366::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:419::-;15263:4;15301:2;15290:9;15286:18;15278:26;;15350:9;15344:4;15340:20;15336:1;15325:9;15321:17;15314:47;15378:131;15504:4;15378:131;:::i;:::-;15370:139;;15097:419;;;:::o;15522:235::-;15662:34;15658:1;15650:6;15646:14;15639:58;15731:18;15726:2;15718:6;15714:15;15707:43;15522:235;:::o;15763:366::-;15905:3;15926:67;15990:2;15985:3;15926:67;:::i;:::-;15919:74;;16002:93;16091:3;16002:93;:::i;:::-;16120:2;16115:3;16111:12;16104:19;;15763:366;;;:::o;16135:419::-;16301:4;16339:2;16328:9;16324:18;16316:26;;16388:9;16382:4;16378:20;16374:1;16363:9;16359:17;16352:47;16416:131;16542:4;16416:131;:::i;:::-;16408:139;;16135:419;;;:::o;16560:178::-;16700:30;16696:1;16688:6;16684:14;16677:54;16560:178;:::o;16744:366::-;16886:3;16907:67;16971:2;16966:3;16907:67;:::i;:::-;16900:74;;16983:93;17072:3;16983:93;:::i;:::-;17101:2;17096:3;17092:12;17085:19;;16744:366;;;:::o;17116:419::-;17282:4;17320:2;17309:9;17305:18;17297:26;;17369:9;17363:4;17359:20;17355:1;17344:9;17340:17;17333:47;17397:131;17523:4;17397:131;:::i;:::-;17389:139;;17116:419;;;:::o;17541:244::-;17681:34;17677:1;17669:6;17665:14;17658:58;17750:27;17745:2;17737:6;17733:15;17726:52;17541:244;:::o;17791:366::-;17933:3;17954:67;18018:2;18013:3;17954:67;:::i;:::-;17947:74;;18030:93;18119:3;18030:93;:::i;:::-;18148:2;18143:3;18139:12;18132:19;;17791:366;;;:::o;18163:419::-;18329:4;18367:2;18356:9;18352:18;18344:26;;18416:9;18410:4;18406:20;18402:1;18391:9;18387:17;18380:47;18444:131;18570:4;18444:131;:::i;:::-;18436:139;;18163:419;;;:::o;18588:224::-;18728:34;18724:1;18716:6;18712:14;18705:58;18797:7;18792:2;18784:6;18780:15;18773:32;18588:224;:::o;18818:366::-;18960:3;18981:67;19045:2;19040:3;18981:67;:::i;:::-;18974:74;;19057:93;19146:3;19057:93;:::i;:::-;19175:2;19170:3;19166:12;19159:19;;18818:366;;;:::o;19190:419::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:179::-;19755:31;19751:1;19743:6;19739:14;19732:55;19615:179;:::o;19800:366::-;19942:3;19963:67;20027:2;20022:3;19963:67;:::i;:::-;19956:74;;20039:93;20128:3;20039:93;:::i;:::-;20157:2;20152:3;20148:12;20141:19;;19800:366;;;:::o;20172:419::-;20338:4;20376:2;20365:9;20361:18;20353:26;;20425:9;20419:4;20415:20;20411:1;20400:9;20396:17;20389:47;20453:131;20579:4;20453:131;:::i;:::-;20445:139;;20172:419;;;:::o;20597:223::-;20737:34;20733:1;20725:6;20721:14;20714:58;20806:6;20801:2;20793:6;20789:15;20782:31;20597:223;:::o;20826:366::-;20968:3;20989:67;21053:2;21048:3;20989:67;:::i;:::-;20982:74;;21065:93;21154:3;21065:93;:::i;:::-;21183:2;21178:3;21174:12;21167:19;;20826:366;;;:::o;21198:419::-;21364:4;21402:2;21391:9;21387:18;21379:26;;21451:9;21445:4;21441:20;21437:1;21426:9;21422:17;21415:47;21479:131;21605:4;21479:131;:::i;:::-;21471:139;;21198:419;;;:::o;21623:240::-;21763:34;21759:1;21751:6;21747:14;21740:58;21832:23;21827:2;21819:6;21815:15;21808:48;21623:240;:::o;21869:366::-;22011:3;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22108:93;22197:3;22108:93;:::i;:::-;22226:2;22221:3;22217:12;22210:19;;21869:366;;;:::o;22241:419::-;22407:4;22445:2;22434:9;22430:18;22422:26;;22494:9;22488:4;22484:20;22480:1;22469:9;22465:17;22458:47;22522:131;22648:4;22522:131;:::i;:::-;22514:139;;22241:419;;;:::o;22666:239::-;22806:34;22802:1;22794:6;22790:14;22783:58;22875:22;22870:2;22862:6;22858:15;22851:47;22666:239;:::o;22911:366::-;23053:3;23074:67;23138:2;23133:3;23074:67;:::i;:::-;23067:74;;23150:93;23239:3;23150:93;:::i;:::-;23268:2;23263:3;23259:12;23252:19;;22911:366;;;:::o;23283:419::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:225::-;23848:34;23844:1;23836:6;23832:14;23825:58;23917:8;23912:2;23904:6;23900:15;23893:33;23708:225;:::o;23939:366::-;24081:3;24102:67;24166:2;24161:3;24102:67;:::i;:::-;24095:74;;24178:93;24267:3;24178:93;:::i;:::-;24296:2;24291:3;24287:12;24280:19;;23939:366;;;:::o;24311:419::-;24477:4;24515:2;24504:9;24500:18;24492:26;;24564:9;24558:4;24554:20;24550:1;24539:9;24535:17;24528:47;24592:131;24718:4;24592:131;:::i;:::-;24584:139;;24311:419;;;:::o;24736:182::-;24876:34;24872:1;24864:6;24860:14;24853:58;24736:182;:::o;24924:366::-;25066:3;25087:67;25151:2;25146:3;25087:67;:::i;:::-;25080:74;;25163:93;25252:3;25163:93;:::i;:::-;25281:2;25276:3;25272:12;25265:19;;24924:366;;;:::o;25296:419::-;25462:4;25500:2;25489:9;25485:18;25477:26;;25549:9;25543:4;25539:20;25535:1;25524:9;25520:17;25513:47;25577:131;25703:4;25577:131;:::i;:::-;25569:139;;25296:419;;;:::o;25721:229::-;25861:34;25857:1;25849:6;25845:14;25838:58;25930:12;25925:2;25917:6;25913:15;25906:37;25721:229;:::o;25956:366::-;26098:3;26119:67;26183:2;26178:3;26119:67;:::i;:::-;26112:74;;26195:93;26284:3;26195:93;:::i;:::-;26313:2;26308:3;26304:12;26297:19;;25956:366;;;:::o;26328:419::-;26494:4;26532:2;26521:9;26517:18;26509:26;;26581:9;26575:4;26571:20;26567:1;26556:9;26552:17;26545:47;26609:131;26735:4;26609:131;:::i;:::-;26601:139;;26328:419;;;:::o;26753:143::-;26810:5;26841:6;26835:13;26826:22;;26857:33;26884:5;26857:33;:::i;:::-;26753:143;;;;:::o;26902:351::-;26972:6;27021:2;27009:9;27000:7;26996:23;26992:32;26989:119;;;27027:79;;:::i;:::-;26989:119;27147:1;27172:64;27228:7;27219:6;27208:9;27204:22;27172:64;:::i;:::-;27162:74;;27118:128;26902:351;;;;:::o;27259:223::-;27399:34;27395:1;27387:6;27383:14;27376:58;27468:6;27463:2;27455:6;27451:15;27444:31;27259:223;:::o;27488:366::-;27630:3;27651:67;27715:2;27710:3;27651:67;:::i;:::-;27644:74;;27727:93;27816:3;27727:93;:::i;:::-;27845:2;27840:3;27836:12;27829:19;;27488:366;;;:::o;27860:419::-;28026:4;28064:2;28053:9;28049:18;28041:26;;28113:9;28107:4;28103:20;28099:1;28088:9;28084:17;28077:47;28141:131;28267:4;28141:131;:::i;:::-;28133:139;;27860:419;;;:::o;28285:221::-;28425:34;28421:1;28413:6;28409:14;28402:58;28494:4;28489:2;28481:6;28477:15;28470:29;28285:221;:::o;28512:366::-;28654:3;28675:67;28739:2;28734:3;28675:67;:::i;:::-;28668:74;;28751:93;28840:3;28751:93;:::i;:::-;28869:2;28864:3;28860:12;28853:19;;28512:366;;;:::o;28884:419::-;29050:4;29088:2;29077:9;29073:18;29065:26;;29137:9;29131:4;29127:20;29123:1;29112:9;29108:17;29101:47;29165:131;29291:4;29165:131;:::i;:::-;29157:139;;28884:419;;;:::o;29309:224::-;29449:34;29445:1;29437:6;29433:14;29426:58;29518:7;29513:2;29505:6;29501:15;29494:32;29309:224;:::o;29539:366::-;29681:3;29702:67;29766:2;29761:3;29702:67;:::i;:::-;29695:74;;29778:93;29867:3;29778:93;:::i;:::-;29896:2;29891:3;29887:12;29880:19;;29539:366;;;:::o;29911:419::-;30077:4;30115:2;30104:9;30100:18;30092:26;;30164:9;30158:4;30154:20;30150:1;30139:9;30135:17;30128:47;30192:131;30318:4;30192:131;:::i;:::-;30184:139;;29911:419;;;:::o;30336:222::-;30476:34;30472:1;30464:6;30460:14;30453:58;30545:5;30540:2;30532:6;30528:15;30521:30;30336:222;:::o;30564:366::-;30706:3;30727:67;30791:2;30786:3;30727:67;:::i;:::-;30720:74;;30803:93;30892:3;30803:93;:::i;:::-;30921:2;30916:3;30912:12;30905:19;;30564:366;;;:::o;30936:419::-;31102:4;31140:2;31129:9;31125:18;31117:26;;31189:9;31183:4;31179:20;31175:1;31164:9;31160:17;31153:47;31217:131;31343:4;31217:131;:::i;:::-;31209:139;;30936:419;;;:::o;31361:172::-;31501:24;31497:1;31489:6;31485:14;31478:48;31361:172;:::o;31539:366::-;31681:3;31702:67;31766:2;31761:3;31702:67;:::i;:::-;31695:74;;31778:93;31867:3;31778:93;:::i;:::-;31896:2;31891:3;31887:12;31880:19;;31539:366;;;:::o;31911:419::-;32077:4;32115:2;32104:9;32100:18;32092:26;;32164:9;32158:4;32154:20;32150:1;32139:9;32135:17;32128:47;32192:131;32318:4;32192:131;:::i;:::-;32184:139;;31911:419;;;:::o;32336:297::-;32476:34;32472:1;32464:6;32460:14;32453:58;32545:34;32540:2;32532:6;32528:15;32521:59;32614:11;32609:2;32601:6;32597:15;32590:36;32336:297;:::o;32639:366::-;32781:3;32802:67;32866:2;32861:3;32802:67;:::i;:::-;32795:74;;32878:93;32967:3;32878:93;:::i;:::-;32996:2;32991:3;32987:12;32980:19;;32639:366;;;:::o;33011:419::-;33177:4;33215:2;33204:9;33200:18;33192:26;;33264:9;33258:4;33254:20;33250:1;33239:9;33235:17;33228:47;33292:131;33418:4;33292:131;:::i;:::-;33284:139;;33011:419;;;:::o;33436:240::-;33576:34;33572:1;33564:6;33560:14;33553:58;33645:23;33640:2;33632:6;33628:15;33621:48;33436:240;:::o;33682:366::-;33824:3;33845:67;33909:2;33904:3;33845:67;:::i;:::-;33838:74;;33921:93;34010:3;33921:93;:::i;:::-;34039:2;34034:3;34030:12;34023:19;;33682:366;;;:::o;34054:419::-;34220:4;34258:2;34247:9;34243:18;34235:26;;34307:9;34301:4;34297:20;34293:1;34282:9;34278:17;34271:47;34335:131;34461:4;34335:131;:::i;:::-;34327:139;;34054:419;;;:::o;34479:169::-;34619:21;34615:1;34607:6;34603:14;34596:45;34479:169;:::o;34654:366::-;34796:3;34817:67;34881:2;34876:3;34817:67;:::i;:::-;34810:74;;34893:93;34982:3;34893:93;:::i;:::-;35011:2;35006:3;35002:12;34995:19;;34654:366;;;:::o;35026:419::-;35192:4;35230:2;35219:9;35215:18;35207:26;;35279:9;35273:4;35269:20;35265:1;35254:9;35250:17;35243:47;35307:131;35433:4;35307:131;:::i;:::-;35299:139;;35026:419;;;:::o;35451:241::-;35591:34;35587:1;35579:6;35575:14;35568:58;35660:24;35655:2;35647:6;35643:15;35636:49;35451:241;:::o;35698:366::-;35840:3;35861:67;35925:2;35920:3;35861:67;:::i;:::-;35854:74;;35937:93;36026:3;35937:93;:::i;:::-;36055:2;36050:3;36046:12;36039:19;;35698:366;;;:::o;36070:419::-;36236:4;36274:2;36263:9;36259:18;36251:26;;36323:9;36317:4;36313:20;36309:1;36298:9;36294:17;36287:47;36351:131;36477:4;36351:131;:::i;:::-;36343:139;;36070:419;;;:::o;36495:191::-;36535:4;36555:20;36573:1;36555:20;:::i;:::-;36550:25;;36589:20;36607:1;36589:20;:::i;:::-;36584:25;;36628:1;36625;36622:8;36619:34;;;36633:18;;:::i;:::-;36619:34;36678:1;36675;36671:9;36663:17;;36495:191;;;;:::o;36692:225::-;36832:34;36828:1;36820:6;36816:14;36809:58;36901:8;36896:2;36888:6;36884:15;36877:33;36692:225;:::o;36923:366::-;37065:3;37086:67;37150:2;37145:3;37086:67;:::i;:::-;37079:74;;37162:93;37251:3;37162:93;:::i;:::-;37280:2;37275:3;37271:12;37264:19;;36923:366;;;:::o;37295:419::-;37461:4;37499:2;37488:9;37484:18;37476:26;;37548:9;37542:4;37538:20;37534:1;37523:9;37519:17;37512:47;37576:131;37702:4;37576:131;:::i;:::-;37568:139;;37295:419;;;:::o;37720:147::-;37821:11;37858:3;37843:18;;37720:147;;;;:::o;37873:114::-;;:::o;37993:398::-;38152:3;38173:83;38254:1;38249:3;38173:83;:::i;:::-;38166:90;;38265:93;38354:3;38265:93;:::i;:::-;38383:1;38378:3;38374:11;38367:18;;37993:398;;;:::o;38397:379::-;38581:3;38603:147;38746:3;38603:147;:::i;:::-;38596:154;;38767:3;38760:10;;38397:379;;;:::o;38782:442::-;38931:4;38969:2;38958:9;38954:18;38946:26;;38982:71;39050:1;39039:9;39035:17;39026:6;38982:71;:::i;:::-;39063:72;39131:2;39120:9;39116:18;39107:6;39063:72;:::i;:::-;39145;39213:2;39202:9;39198:18;39189:6;39145:72;:::i;:::-;38782:442;;;;;;:::o;39230:180::-;39278:77;39275:1;39268:88;39375:4;39372:1;39365:15;39399:4;39396:1;39389:15;39416:180;39464:77;39461:1;39454:88;39561:4;39558:1;39551:15;39585:4;39582:1;39575:15;39602:143;39659:5;39690:6;39684:13;39675:22;;39706:33;39733:5;39706:33;:::i;:::-;39602:143;;;;:::o;39751:351::-;39821:6;39870:2;39858:9;39849:7;39845:23;39841:32;39838:119;;;39876:79;;:::i;:::-;39838:119;39996:1;40021:64;40077:7;40068:6;40057:9;40053:22;40021:64;:::i;:::-;40011:74;;39967:128;39751:351;;;;:::o;40108:85::-;40153:7;40182:5;40171:16;;40108:85;;;:::o;40199:158::-;40257:9;40290:61;40308:42;40317:32;40343:5;40317:32;:::i;:::-;40308:42;:::i;:::-;40290:61;:::i;:::-;40277:74;;40199:158;;;:::o;40363:147::-;40458:45;40497:5;40458:45;:::i;:::-;40453:3;40446:58;40363:147;;:::o;40516:114::-;40583:6;40617:5;40611:12;40601:22;;40516:114;;;:::o;40636:184::-;40735:11;40769:6;40764:3;40757:19;40809:4;40804:3;40800:14;40785:29;;40636:184;;;;:::o;40826:132::-;40893:4;40916:3;40908:11;;40946:4;40941:3;40937:14;40929:22;;40826:132;;;:::o;40964:108::-;41041:24;41059:5;41041:24;:::i;:::-;41036:3;41029:37;40964:108;;:::o;41078:179::-;41147:10;41168:46;41210:3;41202:6;41168:46;:::i;:::-;41246:4;41241:3;41237:14;41223:28;;41078:179;;;;:::o;41263:113::-;41333:4;41365;41360:3;41356:14;41348:22;;41263:113;;;:::o;41412:732::-;41531:3;41560:54;41608:5;41560:54;:::i;:::-;41630:86;41709:6;41704:3;41630:86;:::i;:::-;41623:93;;41740:56;41790:5;41740:56;:::i;:::-;41819:7;41850:1;41835:284;41860:6;41857:1;41854:13;41835:284;;;41936:6;41930:13;41963:63;42022:3;42007:13;41963:63;:::i;:::-;41956:70;;42049:60;42102:6;42049:60;:::i;:::-;42039:70;;41895:224;41882:1;41879;41875:9;41870:14;;41835:284;;;41839:14;42135:3;42128:10;;41536:608;;;41412:732;;;;:::o;42150:831::-;42413:4;42451:3;42440:9;42436:19;42428:27;;42465:71;42533:1;42522:9;42518:17;42509:6;42465:71;:::i;:::-;42546:80;42622:2;42611:9;42607:18;42598:6;42546:80;:::i;:::-;42673:9;42667:4;42663:20;42658:2;42647:9;42643:18;42636:48;42701:108;42804:4;42795:6;42701:108;:::i;:::-;42693:116;;42819:72;42887:2;42876:9;42872:18;42863:6;42819:72;:::i;:::-;42901:73;42969:3;42958:9;42954:19;42945:6;42901:73;:::i;:::-;42150:831;;;;;;;;:::o;42987:807::-;43236:4;43274:3;43263:9;43259:19;43251:27;;43288:71;43356:1;43345:9;43341:17;43332:6;43288:71;:::i;:::-;43369:72;43437:2;43426:9;43422:18;43413:6;43369:72;:::i;:::-;43451:80;43527:2;43516:9;43512:18;43503:6;43451:80;:::i;:::-;43541;43617:2;43606:9;43602:18;43593:6;43541:80;:::i;:::-;43631:73;43699:3;43688:9;43684:19;43675:6;43631:73;:::i;:::-;43714;43782:3;43771:9;43767:19;43758:6;43714:73;:::i;:::-;42987:807;;;;;;;;;:::o;43800:663::-;43888:6;43896;43904;43953:2;43941:9;43932:7;43928:23;43924:32;43921:119;;;43959:79;;:::i;:::-;43921:119;44079:1;44104:64;44160:7;44151:6;44140:9;44136:22;44104:64;:::i;:::-;44094:74;;44050:128;44217:2;44243:64;44299:7;44290:6;44279:9;44275:22;44243:64;:::i;:::-;44233:74;;44188:129;44356:2;44382:64;44438:7;44429:6;44418:9;44414:22;44382:64;:::i;:::-;44372:74;;44327:129;43800:663;;;;;:::o

Swarm Source

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