ETH Price: $3,028.42 (+2.33%)
Gas: 1 Gwei

Token

Tipster (TIP)
 

Overview

Max Total Supply

1,000,000,000 TIP

Holders

203

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 TIP

Value
$0.00
0xefe6f2ec839f03e4328c19374f1ee7a1c0bdf8a1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TIP

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-03-24
*/

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

/**

TIPSTER | $TIP

Tipster is a decentralized platform that provides expert betting 
tips to sports bettors worldwide. Our premium Telegram bot delivers 
tips exclusively to $TIP holders, and our pool betting, BAAS, and P2P 
options offer even more ways to bet on your favorite sports.  

    Website:     https://www.tipsterxbets.com/
    Telegram:    https://t.me/TipsterXbets
    Twitter:     https://twitter.com/TipsterXbets
    Medium:      https://medium.com/@tipsterxbets

*/

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 TIP is ERC20, Ownable {

    /**

    TIPSTER | $TIP

    Tipster is a decentralized platform that provides expert betting 
    tips to sports bettors worldwide. Our premium Telegram bot delivers 
    tips exclusively to $TIP holders, and our pool betting, BAAS, and P2P 
    options offer even more ways to bet on your favorite sports.  

    Website:     https://www.tipsterxbets.com/
    Telegram:    https://t.me/TipsterXbets
    Twitter:     https://twitter.com/TipsterXbets
    Medium:      https://medium.com/@tipsterxbets

    */


    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 = false;

    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;

    uint256 public FEE_DIVISOR = 100;

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

    // 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("Tipster", "TIP") {
        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 = 5;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 1;

        uint256 _sellOperationsFee = 5;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 1;

        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(0xc9994f08E8f0d916eA0ED2742Ce59B098fA36930); // set as operations wallet
        devWallet = address(0xde960ff8169E98e00EA1b8C5F199Bc8B00C849F8); // set as dev wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        excludeFromMaxTransaction(operationsWallet, true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(0x590a7cC27d9607C03085f725ac6B85Ac9EF85967, 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;
    }

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

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

    // excludeFromMaxTransaction
    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 <= 6, "Must keep fees at 6% or less");
    }

    function updateSellFees(
        uint256 _operationsFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellOperationsFee = _operationsFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellOperationsFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 6, "Must keep fees at 6% 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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    // Event
    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 used for swap back
    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 setTransferDelayEnabled(bool _transferDelayEnabled) external onlyOwner returns (bool) { 
        transferDelayEnabled = _transferDelayEnabled; 
        return true; 
    }

    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":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"}],"name":"setTransferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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"}]

60c06040526000600b556000600c60006101000a81548160ff0219169083151502179055506104b0600d556104b0600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506000601360006101000a81548160ff0219169083151502179055506064601f55348015620000ae57600080fd5b506040518060400160405280600781526020017f54697073746572000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f544950000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200013392919062000c3c565b5080600490805190602001906200014c92919062000c3c565b5050506200016f62000163620006fc60201b60201c565b6200070460201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200019b816001620007ca60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200021b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000241919062000d56565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cf919062000d56565b6040518363ffffffff1660e01b8152600401620002ee92919062000d99565b6020604051808303816000875af11580156200030e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000334919062000d56565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037c60a0516001620007ca60201b60201c565b6200039160a0516001620008b460201b60201c565b600060059050600080600190506000600590506000806001905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003f2919062000dff565b620003fe919062000e8f565b6009819055508660158190555085601681905550846017819055506017546016546015546200042e919062000ec7565b6200043a919062000ec7565b6014819055508360198190555082601a8190555081601b81905550601b54601a546019546200046a919062000ec7565b62000476919062000ec7565b60188190555073c9994f08e8f0d916ea0ed2742ce59b098fa36930600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073de960ff8169e98e00ea1b8c5f199bc8b00c849f8600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005486200053a6200095560201b60201c565b60016200097f60201b60201c565b6200055b3060016200097f60201b60201c565b6200057061dead60016200097f60201b60201c565b620005a5600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097f60201b60201c565b620005da600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097f60201b60201c565b6200060173590a7cc27d9607c03085f725ac6b85ac9ef8596760016200097f60201b60201c565b62000623620006156200095560201b60201c565b6001620007ca60201b60201c565b62000636306001620007ca60201b60201c565b6200064b61dead6001620007ca60201b60201c565b62000680600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007ca60201b60201c565b620006b5600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007ca60201b60201c565b620006dc73590a7cc27d9607c03085f725ac6b85ac9ef859676001620007ca60201b60201c565b620006ee338262000ab960201b60201c565b5050505050505050620010e6565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007da620006fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008006200095560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008509062000f85565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200098f620006fc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009b56200095560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a059062000f85565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000aad919062000fc4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b239062001031565b60405180910390fd5b62000b406000838362000c3260201b60201c565b806002600082825462000b54919062000ec7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000bab919062000ec7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c12919062001064565b60405180910390a362000c2e6000838362000c3760201b60201c565b5050565b505050565b505050565b82805462000c4a90620010b0565b90600052602060002090601f01602090048101928262000c6e576000855562000cba565b82601f1062000c8957805160ff191683800117855562000cba565b8280016001018555821562000cba579182015b8281111562000cb957825182559160200191906001019062000c9c565b5b50905062000cc9919062000ccd565b5090565b5b8082111562000ce857600081600090555060010162000cce565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d1e8262000cf1565b9050919050565b62000d308162000d11565b811462000d3c57600080fd5b50565b60008151905062000d508162000d25565b92915050565b60006020828403121562000d6f5762000d6e62000cec565b5b600062000d7f8482850162000d3f565b91505092915050565b62000d938162000d11565b82525050565b600060408201905062000db0600083018562000d88565b62000dbf602083018462000d88565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e0c8262000dc6565b915062000e198362000dc6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e555762000e5462000dd0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e9c8262000dc6565b915062000ea98362000dc6565b92508262000ebc5762000ebb62000e60565b5b828204905092915050565b600062000ed48262000dc6565b915062000ee18362000dc6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f195762000f1862000dd0565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f6d60208362000f24565b915062000f7a8262000f35565b602082019050919050565b6000602082019050818103600083015262000fa08162000f5e565b9050919050565b60008115159050919050565b62000fbe8162000fa7565b82525050565b600060208201905062000fdb600083018462000fb3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001019601f8362000f24565b9150620010268262000fe1565b602082019050919050565b600060208201905081810360008301526200104c816200100a565b9050919050565b6200105e8162000dc6565b82525050565b60006020820190506200107b600083018462001053565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010c957607f821691505b60208210811415620010e057620010df62001081565b5b50919050565b60805160a051615a126200116e600039600081816112c201528181611aac0152818161258d015281816126440152818161267101528181612cb501528181613db901528181613e720152613e9f015260008181610fa701528181612c5d01528181614015015281816140f60152818161411d015281816141b901526141e00152615a126000f3fe6080604052600436106103b15760003560e01c8063924de9b7116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e17578063fb002c9714610e42578063fd72e22a14610e6d578063fe72b27a14610e98576103b8565b8063e884f26014610d6d578063f11a24d314610d98578063f2fde38b14610dc3578063f637434214610dec576103b8565b8063d257b34f116100dc578063d257b34f14610c9d578063d85ba06314610cda578063dd62ed3e14610d05578063e2f4560514610d42576103b8565b8063c17b5b8c14610bf5578063c18bc19514610c1e578063c876d0b914610c47578063c8c8ebe414610c72576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b27578063b62496f514610b64578063bbc0c74214610ba1578063c024666814610bcc576103b8565b80639fccce3214610a69578063a0d82dc514610a94578063a457c2d714610abf578063a4c82a0014610afc576103b8565b80639c3b4fdc116101c15780639c3b4fdc146109ab5780639e93ad8e146109d65780639ec22c0e14610a015780639f27625614610a2c576103b8565b8063924de9b71461092e57806395d89b41146109575780639a7a23d614610982576103b8565b806349bd5a5e116102d7578063715018a61161026a5780638095d564116102395780638095d564146108985780638a8c523c146108c15780638da5cb5b146108d85780638ea5220f14610903576103b8565b8063715018a614610804578063730c18881461081b578063751039fc146108445780637571336a1461086f576103b8565b80635a139dd4116102a65780635a139dd4146107465780636a486a8e146107715780636ddd17131461079c57806370a08231146107c7576103b8565b806349bd5a5e146106885780634a62bb65146106b35780634f77f6c0146106de5780634fbee19314610709576103b8565b80631a8145bb1161034f5780632c3e486c1161031e5780632c3e486c146105ca5780632e82f1a0146105f5578063313ce56714610620578063395093511461064b576103b8565b80631a8145bb1461050e578063203e727e1461053957806323b872dd1461056257806327c8f8351461059f576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d578063184c16c5146104b8578063199ffc72146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ed5565b6040516103df9190614328565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906143e3565b610f67565b60405161041c919061443e565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614459565b610f85565b604051610459919061443e565b60405180910390f35b34801561046e57600080fd5b50610477610fa5565b60405161048491906144e5565b60405180910390f35b34801561049957600080fd5b506104a2610fc9565b6040516104af919061450f565b60405180910390f35b3480156104c457600080fd5b506104cd610fd3565b6040516104da919061450f565b60405180910390f35b3480156104ef57600080fd5b506104f8610fd9565b604051610505919061450f565b60405180910390f35b34801561051a57600080fd5b50610523610fdf565b604051610530919061450f565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b919061452a565b610fe5565b005b34801561056e57600080fd5b5061058960048036038101906105849190614557565b6110f4565b604051610596919061443e565b60405180910390f35b3480156105ab57600080fd5b506105b46111ec565b6040516105c191906145b9565b60405180910390f35b3480156105d657600080fd5b506105df6111f2565b6040516105ec919061450f565b60405180910390f35b34801561060157600080fd5b5061060a6111f8565b604051610617919061443e565b60405180910390f35b34801561062c57600080fd5b5061063561120b565b60405161064291906145f0565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906143e3565b611214565b60405161067f919061443e565b60405180910390f35b34801561069457600080fd5b5061069d6112c0565b6040516106aa91906145b9565b60405180910390f35b3480156106bf57600080fd5b506106c86112e4565b6040516106d5919061443e565b60405180910390f35b3480156106ea57600080fd5b506106f36112f7565b604051610700919061450f565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190614459565b6112fd565b60405161073d919061443e565b60405180910390f35b34801561075257600080fd5b5061075b611353565b604051610768919061450f565b60405180910390f35b34801561077d57600080fd5b50610786611359565b604051610793919061450f565b60405180910390f35b3480156107a857600080fd5b506107b161135f565b6040516107be919061443e565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614459565b611372565b6040516107fb919061450f565b60405180910390f35b34801561081057600080fd5b506108196113ba565b005b34801561082757600080fd5b50610842600480360381019061083d9190614637565b611442565b005b34801561085057600080fd5b50610859611582565b604051610866919061443e565b60405180910390f35b34801561087b57600080fd5b506108966004803603810190610891919061468a565b611622565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906146ca565b6116f9565b005b3480156108cd57600080fd5b506108d66117f8565b005b3480156108e457600080fd5b506108ed6118b3565b6040516108fa91906145b9565b60405180910390f35b34801561090f57600080fd5b506109186118dd565b60405161092591906145b9565b60405180910390f35b34801561093a57600080fd5b506109556004803603810190610950919061471d565b611903565b005b34801561096357600080fd5b5061096c61199c565b6040516109799190614328565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a4919061468a565b611a2e565b005b3480156109b757600080fd5b506109c0611b47565b6040516109cd919061450f565b60405180910390f35b3480156109e257600080fd5b506109eb611b4d565b6040516109f8919061450f565b60405180910390f35b348015610a0d57600080fd5b50610a16611b53565b604051610a23919061450f565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e919061471d565b611b59565b604051610a60919061443e565b60405180910390f35b348015610a7557600080fd5b50610a7e611bfa565b604051610a8b919061450f565b60405180910390f35b348015610aa057600080fd5b50610aa9611c00565b604051610ab6919061450f565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae191906143e3565b611c06565b604051610af3919061443e565b60405180910390f35b348015610b0857600080fd5b50610b11611cf1565b604051610b1e919061450f565b60405180910390f35b348015610b3357600080fd5b50610b4e6004803603810190610b4991906143e3565b611cf7565b604051610b5b919061443e565b60405180910390f35b348015610b7057600080fd5b50610b8b6004803603810190610b869190614459565b611d15565b604051610b98919061443e565b60405180910390f35b348015610bad57600080fd5b50610bb6611d35565b604051610bc3919061443e565b60405180910390f35b348015610bd857600080fd5b50610bf36004803603810190610bee919061468a565b611d48565b005b348015610c0157600080fd5b50610c1c6004803603810190610c1791906146ca565b611e6d565b005b348015610c2a57600080fd5b50610c456004803603810190610c40919061452a565b611f6c565b005b348015610c5357600080fd5b50610c5c61207b565b604051610c69919061443e565b60405180910390f35b348015610c7e57600080fd5b50610c8761208e565b604051610c94919061450f565b60405180910390f35b348015610ca957600080fd5b50610cc46004803603810190610cbf919061452a565b612094565b604051610cd1919061443e565b60405180910390f35b348015610ce657600080fd5b50610cef6121e9565b604051610cfc919061450f565b60405180910390f35b348015610d1157600080fd5b50610d2c6004803603810190610d27919061474a565b6121ef565b604051610d39919061450f565b60405180910390f35b348015610d4e57600080fd5b50610d57612276565b604051610d64919061450f565b60405180910390f35b348015610d7957600080fd5b50610d8261227c565b604051610d8f919061443e565b60405180910390f35b348015610da457600080fd5b50610dad61231c565b604051610dba919061450f565b60405180910390f35b348015610dcf57600080fd5b50610dea6004803603810190610de59190614459565b612322565b005b348015610df857600080fd5b50610e0161241a565b604051610e0e919061450f565b60405180910390f35b348015610e2357600080fd5b50610e2c612420565b604051610e39919061450f565b60405180910390f35b348015610e4e57600080fd5b50610e57612426565b604051610e64919061450f565b60405180910390f35b348015610e7957600080fd5b50610e8261242c565b604051610e8f91906145b9565b60405180910390f35b348015610ea457600080fd5b50610ebf6004803603810190610eba919061452a565b612452565b604051610ecc919061443e565b60405180910390f35b606060038054610ee4906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f10906147b9565b8015610f5d5780601f10610f3257610100808354040283529160200191610f5d565b820191906000526020600020905b815481529060010190602001808311610f4057829003601f168201915b5050505050905090565b6000610f7b610f7461272a565b8484612732565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600f5481565b600b5481565b601d5481565b610fed61272a565b73ffffffffffffffffffffffffffffffffffffffff1661100b6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614837565b60405180910390fd5b670de0b6b3a76400006103e86001611077610fc9565b6110819190614886565b61108b919061490f565b611095919061490f565b8110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906149b2565b60405180910390fd5b670de0b6b3a7640000816110eb9190614886565b60088190555050565b60006111018484846128fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061114c61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390614a44565b60405180910390fd5b6111e0856111d861272a565b858403612732565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112b661122161272a565b84846001600061122f61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19190614a64565b612732565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b60195481565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c261272a565b73ffffffffffffffffffffffffffffffffffffffff166113e06118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90614837565b60405180910390fd5b6114406000613695565b565b61144a61272a565b73ffffffffffffffffffffffffffffffffffffffff166114686118b3565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614837565b60405180910390fd5b610258831015611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614b2c565b60405180910390fd5b6103e88211158015611516575060008210155b611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614bbe565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061158c61272a565b73ffffffffffffffffffffffffffffffffffffffff166115aa6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614837565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61162a61272a565b73ffffffffffffffffffffffffffffffffffffffff166116486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614837565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61170161272a565b73ffffffffffffffffffffffffffffffffffffffff1661171f6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614837565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461179d9190614a64565b6117a79190614a64565b601481905550600660145411156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90614c2a565b60405180910390fd5b505050565b61180061272a565b73ffffffffffffffffffffffffffffffffffffffff1661181e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614837565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61190b61272a565b73ffffffffffffffffffffffffffffffffffffffff166119296118b3565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614837565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119ab906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546119d7906147b9565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b5050505050905090565b611a3661272a565b73ffffffffffffffffffffffffffffffffffffffff16611a546118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614837565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090614cbc565b60405180910390fd5b611b43828261375b565b5050565b60175481565b601f5481565b60105481565b6000611b6361272a565b73ffffffffffffffffffffffffffffffffffffffff16611b816118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614837565b60405180910390fd5b81601360006101000a81548160ff02191690831515021790555060019050919050565b601e5481565b601b5481565b60008060016000611c1561272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614d4e565b60405180910390fd5b611ce6611cdd61272a565b85858403612732565b600191505092915050565b600e5481565b6000611d0b611d0461272a565b84846128fd565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d5061272a565b73ffffffffffffffffffffffffffffffffffffffff16611d6e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614837565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e61919061443e565b60405180910390a25050565b611e7561272a565b73ffffffffffffffffffffffffffffffffffffffff16611e936118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614837565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f119190614a64565b611f1b9190614a64565b60188190555060066018541115611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90614c2a565b60405180910390fd5b505050565b611f7461272a565b73ffffffffffffffffffffffffffffffffffffffff16611f926118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614837565b60405180910390fd5b670de0b6b3a76400006103e86005611ffe610fc9565b6120089190614886565b612012919061490f565b61201c919061490f565b81101561205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590614de0565b60405180910390fd5b670de0b6b3a7640000816120729190614886565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061209e61272a565b73ffffffffffffffffffffffffffffffffffffffff166120bc6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614837565b60405180910390fd5b620186a06001612120610fc9565b61212a9190614886565b612134919061490f565b821015612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614e72565b60405180910390fd5b6103e86005612183610fc9565b61218d9190614886565b612197919061490f565b8211156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614f04565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061228661272a565b73ffffffffffffffffffffffffffffffffffffffff166122a46118b3565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614837565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61232a61272a565b73ffffffffffffffffffffffffffffffffffffffff166123486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590614f96565b60405180910390fd5b61241781613695565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061245c61272a565b73ffffffffffffffffffffffffffffffffffffffff1661247a6118b3565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790614837565b60405180910390fd5b600f546010546124e09190614a64565b4211612521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251890615002565b60405180910390fd5b6103e8821115612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d90615094565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016125c891906145b9565b602060405180830381865afa1580156125e5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260991906150c9565b9050600061263461271061262686856137fc90919063ffffffff16565b61381290919063ffffffff16565b9050600081111561266d5761266c7f000000000000000000000000000000000000000000000000000000000000000061dead83613828565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126da57600080fd5b505af11580156126ee573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990615168565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612809906151fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f0919061450f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561296d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129649061528c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d49061531e565b60405180910390fd5b60008114156129f7576129f283836000613828565b613690565b601160009054906101000a900460ff16156130ba57612a146118b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a825750612a526118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612af5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b0e5750600560149054906101000a900460ff16155b156130b957601160019054906101000a900460ff16612c0857602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc85750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe9061538a565b60405180910390fd5b5b601360009054906101000a900460ff1615612dd057612c256118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cac57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dcf5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190615442565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e735750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a57600854811115612ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb4906154d4565b60405180910390fd5b600a54612ec983611372565b82612ed49190614a64565b1115612f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0c90615540565b60405180910390fd5b6130b8565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fbd5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300c57600854811115613007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffe906155d2565b60405180910390fd5b6130b7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b657600a5461306983611372565b826130749190614a64565b11156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90615540565b60405180910390fd5b5b5b5b5b5b60006130c530611372565b9050600060095482101590508080156130ea5750601160029054906101000a900460ff165b80156131035750600560149054906101000a900460ff16155b80156131595750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131af5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132055750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613249576001600560146101000a81548160ff02191690831515021790555061322d613aa9565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132af5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132c75750600c60009054906101000a900460ff165b80156132e25750600d54600e546132de9190614a64565b4210155b80156133385750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334757613345613d90565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133fd5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561340757600090505b6000811561368057602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346a57506000601854115b15613537576134976064613489601854886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601854601a54826134aa9190614886565b6134b4919061490f565b601d60008282546134c59190614a64565b92505081905550601854601b54826134dd9190614886565b6134e7919061490f565b601e60008282546134f89190614a64565b92505081905550601854601954826135109190614886565b61351a919061490f565b601c600082825461352b9190614a64565b9250508190555061365c565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359257506000601454115b1561365b576135bf60646135b1601454886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601454601654826135d29190614886565b6135dc919061490f565b601d60008282546135ed9190614a64565b92505081905550601454601754826136059190614886565b61360f919061490f565b601e60008282546136209190614a64565b92505081905550601454601554826136389190614886565b613642919061490f565b601c60008282546136539190614a64565b925050819055505b5b600081111561367157613670873083613828565b5b808561367d91906155f2565b94505b61368b878787613828565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361380a9190614886565b905092915050565b60008183613820919061490f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f9061528c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff9061531e565b60405180910390fd5b613913838383613f56565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399090615698565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a2c9190614a64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a90919061450f565b60405180910390a3613aa3848484613f5b565b50505050565b6000613ab430611372565b90506000601e54601c54601d54613acb9190614a64565b613ad59190614a64565b9050600080831480613ae75750600082145b15613af457505050613d8e565b6014600954613b039190614886565b831115613b1c576014600954613b199190614886565b92505b6000600283601d5486613b2f9190614886565b613b39919061490f565b613b43919061490f565b90506000613b5a8286613f6090919063ffffffff16565b90506000479050613b6a82613f76565b6000613b7f8247613f6090919063ffffffff16565b90506000613baa87613b9c601c54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000613bd588613bc7601e54866137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000818385613be691906155f2565b613bf091906155f2565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c50906156e9565b60006040518083038185875af1925050503d8060008114613c8d576040519150601f19603f3d011682016040523d82523d6000602084013e613c92565b606091505b505080985050600087118015613ca85750600081115b15613cf557613cb787826141b3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613cec939291906156fe565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d3b906156e9565b60006040518083038185875af1925050503d8060008114613d78576040519150601f19603f3d011682016040523d82523d6000602084013e613d7d565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613df491906145b9565b602060405180830381865afa158015613e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e3591906150c9565b90506000613e62612710613e54600b54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000811115613e9b57613e9a7f000000000000000000000000000000000000000000000000000000000000000061dead83613828565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f0857600080fd5b505af1158015613f1c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613f6e91906155f2565b905092915050565b6000600267ffffffffffffffff811115613f9357613f92615735565b5b604051908082528060200260200182016040528015613fc15781602001602082028036833780820191505090505b5090503081600081518110613fd957613fd8615764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561407e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140a291906157a8565b816001815181106140b6576140b5615764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061411b307f000000000000000000000000000000000000000000000000000000000000000084612732565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417d9594939291906158ce565b600060405180830381600087803b15801561419757600080fd5b505af11580156141ab573d6000803e3d6000fd5b505050505050565b6141de307f000000000000000000000000000000000000000000000000000000000000000084612732565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161424596959493929190615928565b60606040518083038185885af1158015614263573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142889190615989565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142c95780820151818401526020810190506142ae565b838111156142d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006142fa8261428f565b614304818561429a565b93506143148185602086016142ab565b61431d816142de565b840191505092915050565b6000602082019050818103600083015261434281846142ef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061437a8261434f565b9050919050565b61438a8161436f565b811461439557600080fd5b50565b6000813590506143a781614381565b92915050565b6000819050919050565b6143c0816143ad565b81146143cb57600080fd5b50565b6000813590506143dd816143b7565b92915050565b600080604083850312156143fa576143f961434a565b5b600061440885828601614398565b9250506020614419858286016143ce565b9150509250929050565b60008115159050919050565b61443881614423565b82525050565b6000602082019050614453600083018461442f565b92915050565b60006020828403121561446f5761446e61434a565b5b600061447d84828501614398565b91505092915050565b6000819050919050565b60006144ab6144a66144a18461434f565b614486565b61434f565b9050919050565b60006144bd82614490565b9050919050565b60006144cf826144b2565b9050919050565b6144df816144c4565b82525050565b60006020820190506144fa60008301846144d6565b92915050565b614509816143ad565b82525050565b60006020820190506145246000830184614500565b92915050565b6000602082840312156145405761453f61434a565b5b600061454e848285016143ce565b91505092915050565b6000806000606084860312156145705761456f61434a565b5b600061457e86828701614398565b935050602061458f86828701614398565b92505060406145a0868287016143ce565b9150509250925092565b6145b38161436f565b82525050565b60006020820190506145ce60008301846145aa565b92915050565b600060ff82169050919050565b6145ea816145d4565b82525050565b600060208201905061460560008301846145e1565b92915050565b61461481614423565b811461461f57600080fd5b50565b6000813590506146318161460b565b92915050565b6000806000606084860312156146505761464f61434a565b5b600061465e868287016143ce565b935050602061466f868287016143ce565b925050604061468086828701614622565b9150509250925092565b600080604083850312156146a1576146a061434a565b5b60006146af85828601614398565b92505060206146c085828601614622565b9150509250929050565b6000806000606084860312156146e3576146e261434a565b5b60006146f1868287016143ce565b9350506020614702868287016143ce565b9250506040614713868287016143ce565b9150509250925092565b6000602082840312156147335761473261434a565b5b600061474184828501614622565b91505092915050565b600080604083850312156147615761476061434a565b5b600061476f85828601614398565b925050602061478085828601614398565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147d157607f821691505b602082108114156147e5576147e461478a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061482160208361429a565b915061482c826147eb565b602082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614891826143ad565b915061489c836143ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d5576148d4614857565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061491a826143ad565b9150614925836143ad565b925082614935576149346148e0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061499c602f8361429a565b91506149a782614940565b604082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a2e60288361429a565b9150614a39826149d2565b604082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b6000614a6f826143ad565b9150614a7a836143ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aaf57614aae614857565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b1660338361429a565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614ba860308361429a565b9150614bb382614b4c565b604082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614c14601c8361429a565b9150614c1f82614bde565b602082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614ca660398361429a565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d3860258361429a565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614dca60248361429a565b9150614dd582614d6e565b604082019050919050565b60006020820190508181036000830152614df981614dbd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e5c60358361429a565b9150614e6782614e00565b604082019050919050565b60006020820190508181036000830152614e8b81614e4f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614eee60348361429a565b9150614ef982614e92565b604082019050919050565b60006020820190508181036000830152614f1d81614ee1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f8060268361429a565b9150614f8b82614f24565b604082019050919050565b60006020820190508181036000830152614faf81614f73565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fec60208361429a565b9150614ff782614fb6565b602082019050919050565b6000602082019050818103600083015261501b81614fdf565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061507e602a8361429a565b915061508982615022565b604082019050919050565b600060208201905081810360008301526150ad81615071565b9050919050565b6000815190506150c3816143b7565b92915050565b6000602082840312156150df576150de61434a565b5b60006150ed848285016150b4565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061515260248361429a565b915061515d826150f6565b604082019050919050565b6000602082019050818103600083015261518181615145565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151e460228361429a565b91506151ef82615188565b604082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061527660258361429a565b91506152818261521a565b604082019050919050565b600060208201905081810360008301526152a581615269565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061530860238361429a565b9150615313826152ac565b604082019050919050565b60006020820190508181036000830152615337816152fb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537460168361429a565b915061537f8261533e565b602082019050919050565b600060208201905081810360008301526153a381615367565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061542c60498361429a565b9150615437826153aa565b606082019050919050565b6000602082019050818103600083015261545b8161541f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154be60358361429a565b91506154c982615462565b604082019050919050565b600060208201905081810360008301526154ed816154b1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061552a60138361429a565b9150615535826154f4565b602082019050919050565b600060208201905081810360008301526155598161551d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155bc60368361429a565b91506155c782615560565b604082019050919050565b600060208201905081810360008301526155eb816155af565b9050919050565b60006155fd826143ad565b9150615608836143ad565b92508282101561561b5761561a614857565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568260268361429a565b915061568d82615626565b604082019050919050565b600060208201905081810360008301526156b181615675565b9050919050565b600081905092915050565b50565b60006156d36000836156b8565b91506156de826156c3565b600082019050919050565b60006156f4826156c6565b9150819050919050565b60006060820190506157136000830186614500565b6157206020830185614500565b61572d6040830184614500565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506157a281614381565b92915050565b6000602082840312156157be576157bd61434a565b5b60006157cc84828501615793565b91505092915050565b6000819050919050565b60006157fa6157f56157f0846157d5565b614486565b6143ad565b9050919050565b61580a816157df565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158458161436f565b82525050565b6000615857838361583c565b60208301905092915050565b6000602082019050919050565b600061587b82615810565b615885818561581b565b93506158908361582c565b8060005b838110156158c15781516158a8888261584b565b97506158b383615863565b925050600181019050615894565b5085935050505092915050565b600060a0820190506158e36000830188614500565b6158f06020830187615801565b81810360408301526159028186615870565b905061591160608301856145aa565b61591e6080830184614500565b9695505050505050565b600060c08201905061593d60008301896145aa565b61594a6020830188614500565b6159576040830187615801565b6159646060830186615801565b61597160808301856145aa565b61597e60a0830184614500565b979650505050505050565b6000806000606084860312156159a2576159a161434a565b5b60006159b0868287016150b4565b93505060206159c1868287016150b4565b92505060406159d2868287016150b4565b915050925092509256fea2646970667358221220ab26740498433227bafb022697da1f902e0f6d27a52526c49572f2a2403730e864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c8063924de9b7116101e7578063c17b5b8c1161010d578063e884f260116100a0578063f8b45b051161006f578063f8b45b0514610e17578063fb002c9714610e42578063fd72e22a14610e6d578063fe72b27a14610e98576103b8565b8063e884f26014610d6d578063f11a24d314610d98578063f2fde38b14610dc3578063f637434214610dec576103b8565b8063d257b34f116100dc578063d257b34f14610c9d578063d85ba06314610cda578063dd62ed3e14610d05578063e2f4560514610d42576103b8565b8063c17b5b8c14610bf5578063c18bc19514610c1e578063c876d0b914610c47578063c8c8ebe414610c72576103b8565b80639fccce3211610185578063a9059cbb11610154578063a9059cbb14610b27578063b62496f514610b64578063bbc0c74214610ba1578063c024666814610bcc576103b8565b80639fccce3214610a69578063a0d82dc514610a94578063a457c2d714610abf578063a4c82a0014610afc576103b8565b80639c3b4fdc116101c15780639c3b4fdc146109ab5780639e93ad8e146109d65780639ec22c0e14610a015780639f27625614610a2c576103b8565b8063924de9b71461092e57806395d89b41146109575780639a7a23d614610982576103b8565b806349bd5a5e116102d7578063715018a61161026a5780638095d564116102395780638095d564146108985780638a8c523c146108c15780638da5cb5b146108d85780638ea5220f14610903576103b8565b8063715018a614610804578063730c18881461081b578063751039fc146108445780637571336a1461086f576103b8565b80635a139dd4116102a65780635a139dd4146107465780636a486a8e146107715780636ddd17131461079c57806370a08231146107c7576103b8565b806349bd5a5e146106885780634a62bb65146106b35780634f77f6c0146106de5780634fbee19314610709576103b8565b80631a8145bb1161034f5780632c3e486c1161031e5780632c3e486c146105ca5780632e82f1a0146105f5578063313ce56714610620578063395093511461064b576103b8565b80631a8145bb1461050e578063203e727e1461053957806323b872dd1461056257806327c8f8351461059f576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d578063184c16c5146104b8578063199ffc72146104e3576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ed5565b6040516103df9190614328565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906143e3565b610f67565b60405161041c919061443e565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614459565b610f85565b604051610459919061443e565b60405180910390f35b34801561046e57600080fd5b50610477610fa5565b60405161048491906144e5565b60405180910390f35b34801561049957600080fd5b506104a2610fc9565b6040516104af919061450f565b60405180910390f35b3480156104c457600080fd5b506104cd610fd3565b6040516104da919061450f565b60405180910390f35b3480156104ef57600080fd5b506104f8610fd9565b604051610505919061450f565b60405180910390f35b34801561051a57600080fd5b50610523610fdf565b604051610530919061450f565b60405180910390f35b34801561054557600080fd5b50610560600480360381019061055b919061452a565b610fe5565b005b34801561056e57600080fd5b5061058960048036038101906105849190614557565b6110f4565b604051610596919061443e565b60405180910390f35b3480156105ab57600080fd5b506105b46111ec565b6040516105c191906145b9565b60405180910390f35b3480156105d657600080fd5b506105df6111f2565b6040516105ec919061450f565b60405180910390f35b34801561060157600080fd5b5061060a6111f8565b604051610617919061443e565b60405180910390f35b34801561062c57600080fd5b5061063561120b565b60405161064291906145f0565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d91906143e3565b611214565b60405161067f919061443e565b60405180910390f35b34801561069457600080fd5b5061069d6112c0565b6040516106aa91906145b9565b60405180910390f35b3480156106bf57600080fd5b506106c86112e4565b6040516106d5919061443e565b60405180910390f35b3480156106ea57600080fd5b506106f36112f7565b604051610700919061450f565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190614459565b6112fd565b60405161073d919061443e565b60405180910390f35b34801561075257600080fd5b5061075b611353565b604051610768919061450f565b60405180910390f35b34801561077d57600080fd5b50610786611359565b604051610793919061450f565b60405180910390f35b3480156107a857600080fd5b506107b161135f565b6040516107be919061443e565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190614459565b611372565b6040516107fb919061450f565b60405180910390f35b34801561081057600080fd5b506108196113ba565b005b34801561082757600080fd5b50610842600480360381019061083d9190614637565b611442565b005b34801561085057600080fd5b50610859611582565b604051610866919061443e565b60405180910390f35b34801561087b57600080fd5b506108966004803603810190610891919061468a565b611622565b005b3480156108a457600080fd5b506108bf60048036038101906108ba91906146ca565b6116f9565b005b3480156108cd57600080fd5b506108d66117f8565b005b3480156108e457600080fd5b506108ed6118b3565b6040516108fa91906145b9565b60405180910390f35b34801561090f57600080fd5b506109186118dd565b60405161092591906145b9565b60405180910390f35b34801561093a57600080fd5b506109556004803603810190610950919061471d565b611903565b005b34801561096357600080fd5b5061096c61199c565b6040516109799190614328565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a4919061468a565b611a2e565b005b3480156109b757600080fd5b506109c0611b47565b6040516109cd919061450f565b60405180910390f35b3480156109e257600080fd5b506109eb611b4d565b6040516109f8919061450f565b60405180910390f35b348015610a0d57600080fd5b50610a16611b53565b604051610a23919061450f565b60405180910390f35b348015610a3857600080fd5b50610a536004803603810190610a4e919061471d565b611b59565b604051610a60919061443e565b60405180910390f35b348015610a7557600080fd5b50610a7e611bfa565b604051610a8b919061450f565b60405180910390f35b348015610aa057600080fd5b50610aa9611c00565b604051610ab6919061450f565b60405180910390f35b348015610acb57600080fd5b50610ae66004803603810190610ae191906143e3565b611c06565b604051610af3919061443e565b60405180910390f35b348015610b0857600080fd5b50610b11611cf1565b604051610b1e919061450f565b60405180910390f35b348015610b3357600080fd5b50610b4e6004803603810190610b4991906143e3565b611cf7565b604051610b5b919061443e565b60405180910390f35b348015610b7057600080fd5b50610b8b6004803603810190610b869190614459565b611d15565b604051610b98919061443e565b60405180910390f35b348015610bad57600080fd5b50610bb6611d35565b604051610bc3919061443e565b60405180910390f35b348015610bd857600080fd5b50610bf36004803603810190610bee919061468a565b611d48565b005b348015610c0157600080fd5b50610c1c6004803603810190610c1791906146ca565b611e6d565b005b348015610c2a57600080fd5b50610c456004803603810190610c40919061452a565b611f6c565b005b348015610c5357600080fd5b50610c5c61207b565b604051610c69919061443e565b60405180910390f35b348015610c7e57600080fd5b50610c8761208e565b604051610c94919061450f565b60405180910390f35b348015610ca957600080fd5b50610cc46004803603810190610cbf919061452a565b612094565b604051610cd1919061443e565b60405180910390f35b348015610ce657600080fd5b50610cef6121e9565b604051610cfc919061450f565b60405180910390f35b348015610d1157600080fd5b50610d2c6004803603810190610d27919061474a565b6121ef565b604051610d39919061450f565b60405180910390f35b348015610d4e57600080fd5b50610d57612276565b604051610d64919061450f565b60405180910390f35b348015610d7957600080fd5b50610d8261227c565b604051610d8f919061443e565b60405180910390f35b348015610da457600080fd5b50610dad61231c565b604051610dba919061450f565b60405180910390f35b348015610dcf57600080fd5b50610dea6004803603810190610de59190614459565b612322565b005b348015610df857600080fd5b50610e0161241a565b604051610e0e919061450f565b60405180910390f35b348015610e2357600080fd5b50610e2c612420565b604051610e39919061450f565b60405180910390f35b348015610e4e57600080fd5b50610e57612426565b604051610e64919061450f565b60405180910390f35b348015610e7957600080fd5b50610e8261242c565b604051610e8f91906145b9565b60405180910390f35b348015610ea457600080fd5b50610ebf6004803603810190610eba919061452a565b612452565b604051610ecc919061443e565b60405180910390f35b606060038054610ee4906147b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f10906147b9565b8015610f5d5780601f10610f3257610100808354040283529160200191610f5d565b820191906000526020600020905b815481529060010190602001808311610f4057829003601f168201915b5050505050905090565b6000610f7b610f7461272a565b8484612732565b6001905092915050565b60216020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600f5481565b600b5481565b601d5481565b610fed61272a565b73ffffffffffffffffffffffffffffffffffffffff1661100b6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890614837565b60405180910390fd5b670de0b6b3a76400006103e86001611077610fc9565b6110819190614886565b61108b919061490f565b611095919061490f565b8110156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906149b2565b60405180910390fd5b670de0b6b3a7640000816110eb9190614886565b60088190555050565b60006111018484846128fd565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061114c61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390614a44565b60405180910390fd5b6111e0856111d861272a565b858403612732565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006112b661122161272a565b84846001600061122f61272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112b19190614a64565b612732565b6001905092915050565b7f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e81565b601160009054906101000a900460ff1681565b60195481565b6000602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c261272a565b73ffffffffffffffffffffffffffffffffffffffff166113e06118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90614837565b60405180910390fd5b6114406000613695565b565b61144a61272a565b73ffffffffffffffffffffffffffffffffffffffff166114686118b3565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614837565b60405180910390fd5b610258831015611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90614b2c565b60405180910390fd5b6103e88211158015611516575060008210155b611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614bbe565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061158c61272a565b73ffffffffffffffffffffffffffffffffffffffff166115aa6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f790614837565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61162a61272a565b73ffffffffffffffffffffffffffffffffffffffff166116486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169590614837565b60405180910390fd5b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61170161272a565b73ffffffffffffffffffffffffffffffffffffffff1661171f6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176c90614837565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461179d9190614a64565b6117a79190614a64565b601481905550600660145411156117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea90614c2a565b60405180910390fd5b505050565b61180061272a565b73ffffffffffffffffffffffffffffffffffffffff1661181e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b90614837565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61190b61272a565b73ffffffffffffffffffffffffffffffffffffffff166119296118b3565b73ffffffffffffffffffffffffffffffffffffffff161461197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690614837565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119ab906147b9565b80601f01602080910402602001604051908101604052809291908181526020018280546119d7906147b9565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b5050505050905090565b611a3661272a565b73ffffffffffffffffffffffffffffffffffffffff16611a546118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614837565b60405180910390fd5b7f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090614cbc565b60405180910390fd5b611b43828261375b565b5050565b60175481565b601f5481565b60105481565b6000611b6361272a565b73ffffffffffffffffffffffffffffffffffffffff16611b816118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bce90614837565b60405180910390fd5b81601360006101000a81548160ff02191690831515021790555060019050919050565b601e5481565b601b5481565b60008060016000611c1561272a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc990614d4e565b60405180910390fd5b611ce6611cdd61272a565b85858403612732565b600191505092915050565b600e5481565b6000611d0b611d0461272a565b84846128fd565b6001905092915050565b60226020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d5061272a565b73ffffffffffffffffffffffffffffffffffffffff16611d6e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbb90614837565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e61919061443e565b60405180910390a25050565b611e7561272a565b73ffffffffffffffffffffffffffffffffffffffff16611e936118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee090614837565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f119190614a64565b611f1b9190614a64565b60188190555060066018541115611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e90614c2a565b60405180910390fd5b505050565b611f7461272a565b73ffffffffffffffffffffffffffffffffffffffff16611f926118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdf90614837565b60405180910390fd5b670de0b6b3a76400006103e86005611ffe610fc9565b6120089190614886565b612012919061490f565b61201c919061490f565b81101561205e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205590614de0565b60405180910390fd5b670de0b6b3a7640000816120729190614886565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b600061209e61272a565b73ffffffffffffffffffffffffffffffffffffffff166120bc6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614612112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210990614837565b60405180910390fd5b620186a06001612120610fc9565b61212a9190614886565b612134919061490f565b821015612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90614e72565b60405180910390fd5b6103e86005612183610fc9565b61218d9190614886565b612197919061490f565b8211156121d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d090614f04565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061228661272a565b73ffffffffffffffffffffffffffffffffffffffff166122a46118b3565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190614837565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61232a61272a565b73ffffffffffffffffffffffffffffffffffffffff166123486118b3565b73ffffffffffffffffffffffffffffffffffffffff161461239e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239590614837565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561240e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240590614f96565b60405180910390fd5b61241781613695565b50565b601a5481565b600a5481565b601c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061245c61272a565b73ffffffffffffffffffffffffffffffffffffffff1661247a6118b3565b73ffffffffffffffffffffffffffffffffffffffff16146124d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c790614837565b60405180910390fd5b600f546010546124e09190614a64565b4211612521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251890615002565b60405180910390fd5b6103e8821115612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d90615094565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e6040518263ffffffff1660e01b81526004016125c891906145b9565b602060405180830381865afa1580156125e5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061260991906150c9565b9050600061263461271061262686856137fc90919063ffffffff16565b61381290919063ffffffff16565b9050600081111561266d5761266c7f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e61dead83613828565b5b60007f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156126da57600080fd5b505af11580156126ee573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279990615168565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612809906151fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516128f0919061450f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561296d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129649061528c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d49061531e565b60405180910390fd5b60008114156129f7576129f283836000613828565b613690565b601160009054906101000a900460ff16156130ba57612a146118b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a825750612a526118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612abb5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612af5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b0e5750600560149054906101000a900460ff16155b156130b957601160019054906101000a900460ff16612c0857602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612bc85750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe9061538a565b60405180910390fd5b5b601360009054906101000a900460ff1615612dd057612c256118b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612cac57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d0457507f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612dcf5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190615442565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e735750602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f1a57600854811115612ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb4906154d4565b60405180910390fd5b600a54612ec983611372565b82612ed49190614a64565b1115612f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0c90615540565b60405180910390fd5b6130b8565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612fbd5750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561300c57600854811115613007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ffe906155d2565b60405180910390fd5b6130b7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166130b657600a5461306983611372565b826130749190614a64565b11156130b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ac90615540565b60405180910390fd5b5b5b5b5b5b60006130c530611372565b9050600060095482101590508080156130ea5750601160029054906101000a900460ff165b80156131035750600560149054906101000a900460ff16155b80156131595750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131af5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132055750602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613249576001600560146101000a81548160ff02191690831515021790555061322d613aa9565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156132af5750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156132c75750600c60009054906101000a900460ff165b80156132e25750600d54600e546132de9190614a64565b4210155b80156133385750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334757613345613d90565b505b6000600560149054906101000a900460ff16159050602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133fd5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561340757600090505b6000811561368057602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346a57506000601854115b15613537576134976064613489601854886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601854601a54826134aa9190614886565b6134b4919061490f565b601d60008282546134c59190614a64565b92505081905550601854601b54826134dd9190614886565b6134e7919061490f565b601e60008282546134f89190614a64565b92505081905550601854601954826135109190614886565b61351a919061490f565b601c600082825461352b9190614a64565b9250508190555061365c565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561359257506000601454115b1561365b576135bf60646135b1601454886137fc90919063ffffffff16565b61381290919063ffffffff16565b9050601454601654826135d29190614886565b6135dc919061490f565b601d60008282546135ed9190614a64565b92505081905550601454601754826136059190614886565b61360f919061490f565b601e60008282546136209190614a64565b92505081905550601454601554826136389190614886565b613642919061490f565b601c60008282546136539190614a64565b925050819055505b5b600081111561367157613670873083613828565b5b808561367d91906155f2565b94505b61368b878787613828565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361380a9190614886565b905092915050565b60008183613820919061490f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388f9061528c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff9061531e565b60405180910390fd5b613913838383613f56565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161399090615698565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a2c9190614a64565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613a90919061450f565b60405180910390a3613aa3848484613f5b565b50505050565b6000613ab430611372565b90506000601e54601c54601d54613acb9190614a64565b613ad59190614a64565b9050600080831480613ae75750600082145b15613af457505050613d8e565b6014600954613b039190614886565b831115613b1c576014600954613b199190614886565b92505b6000600283601d5486613b2f9190614886565b613b39919061490f565b613b43919061490f565b90506000613b5a8286613f6090919063ffffffff16565b90506000479050613b6a82613f76565b6000613b7f8247613f6090919063ffffffff16565b90506000613baa87613b9c601c54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000613bd588613bc7601e54866137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000818385613be691906155f2565b613bf091906155f2565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613c50906156e9565b60006040518083038185875af1925050503d8060008114613c8d576040519150601f19603f3d011682016040523d82523d6000602084013e613c92565b606091505b505080985050600087118015613ca85750600081115b15613cf557613cb787826141b3565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613cec939291906156fe565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613d3b906156e9565b60006040518083038185875af1925050503d8060008114613d78576040519150601f19603f3d011682016040523d82523d6000602084013e613d7d565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e6040518263ffffffff1660e01b8152600401613df491906145b9565b602060405180830381865afa158015613e11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e3591906150c9565b90506000613e62612710613e54600b54856137fc90919063ffffffff16565b61381290919063ffffffff16565b90506000811115613e9b57613e9a7f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e61dead83613828565b5b60007f000000000000000000000000d5f46b2a4084ca02f08be7ac2db0abb561bc678e90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f0857600080fd5b505af1158015613f1c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613f6e91906155f2565b905092915050565b6000600267ffffffffffffffff811115613f9357613f92615735565b5b604051908082528060200260200182016040528015613fc15781602001602082028036833780820191505090505b5090503081600081518110613fd957613fd8615764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561407e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140a291906157a8565b816001815181106140b6576140b5615764565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061411b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612732565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161417d9594939291906158ce565b600060405180830381600087803b15801561419757600080fd5b505af11580156141ab573d6000803e3d6000fd5b505050505050565b6141de307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612732565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b815260040161424596959493929190615928565b60606040518083038185885af1158015614263573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142889190615989565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156142c95780820151818401526020810190506142ae565b838111156142d8576000848401525b50505050565b6000601f19601f8301169050919050565b60006142fa8261428f565b614304818561429a565b93506143148185602086016142ab565b61431d816142de565b840191505092915050565b6000602082019050818103600083015261434281846142ef565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061437a8261434f565b9050919050565b61438a8161436f565b811461439557600080fd5b50565b6000813590506143a781614381565b92915050565b6000819050919050565b6143c0816143ad565b81146143cb57600080fd5b50565b6000813590506143dd816143b7565b92915050565b600080604083850312156143fa576143f961434a565b5b600061440885828601614398565b9250506020614419858286016143ce565b9150509250929050565b60008115159050919050565b61443881614423565b82525050565b6000602082019050614453600083018461442f565b92915050565b60006020828403121561446f5761446e61434a565b5b600061447d84828501614398565b91505092915050565b6000819050919050565b60006144ab6144a66144a18461434f565b614486565b61434f565b9050919050565b60006144bd82614490565b9050919050565b60006144cf826144b2565b9050919050565b6144df816144c4565b82525050565b60006020820190506144fa60008301846144d6565b92915050565b614509816143ad565b82525050565b60006020820190506145246000830184614500565b92915050565b6000602082840312156145405761453f61434a565b5b600061454e848285016143ce565b91505092915050565b6000806000606084860312156145705761456f61434a565b5b600061457e86828701614398565b935050602061458f86828701614398565b92505060406145a0868287016143ce565b9150509250925092565b6145b38161436f565b82525050565b60006020820190506145ce60008301846145aa565b92915050565b600060ff82169050919050565b6145ea816145d4565b82525050565b600060208201905061460560008301846145e1565b92915050565b61461481614423565b811461461f57600080fd5b50565b6000813590506146318161460b565b92915050565b6000806000606084860312156146505761464f61434a565b5b600061465e868287016143ce565b935050602061466f868287016143ce565b925050604061468086828701614622565b9150509250925092565b600080604083850312156146a1576146a061434a565b5b60006146af85828601614398565b92505060206146c085828601614622565b9150509250929050565b6000806000606084860312156146e3576146e261434a565b5b60006146f1868287016143ce565b9350506020614702868287016143ce565b9250506040614713868287016143ce565b9150509250925092565b6000602082840312156147335761473261434a565b5b600061474184828501614622565b91505092915050565b600080604083850312156147615761476061434a565b5b600061476f85828601614398565b925050602061478085828601614398565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806147d157607f821691505b602082108114156147e5576147e461478a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061482160208361429a565b915061482c826147eb565b602082019050919050565b6000602082019050818103600083015261485081614814565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614891826143ad565b915061489c836143ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148d5576148d4614857565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061491a826143ad565b9150614925836143ad565b925082614935576149346148e0565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b600061499c602f8361429a565b91506149a782614940565b604082019050919050565b600060208201905081810360008301526149cb8161498f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a2e60288361429a565b9150614a39826149d2565b604082019050919050565b60006020820190508181036000830152614a5d81614a21565b9050919050565b6000614a6f826143ad565b9150614a7a836143ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614aaf57614aae614857565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614b1660338361429a565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614ba860308361429a565b9150614bb382614b4c565b604082019050919050565b60006020820190508181036000830152614bd781614b9b565b9050919050565b7f4d757374206b6565702066656573206174203625206f72206c65737300000000600082015250565b6000614c14601c8361429a565b9150614c1f82614bde565b602082019050919050565b60006020820190508181036000830152614c4381614c07565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614ca660398361429a565b9150614cb182614c4a565b604082019050919050565b60006020820190508181036000830152614cd581614c99565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d3860258361429a565b9150614d4382614cdc565b604082019050919050565b60006020820190508181036000830152614d6781614d2b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614dca60248361429a565b9150614dd582614d6e565b604082019050919050565b60006020820190508181036000830152614df981614dbd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e5c60358361429a565b9150614e6782614e00565b604082019050919050565b60006020820190508181036000830152614e8b81614e4f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614eee60348361429a565b9150614ef982614e92565b604082019050919050565b60006020820190508181036000830152614f1d81614ee1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f8060268361429a565b9150614f8b82614f24565b604082019050919050565b60006020820190508181036000830152614faf81614f73565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fec60208361429a565b9150614ff782614fb6565b602082019050919050565b6000602082019050818103600083015261501b81614fdf565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b600061507e602a8361429a565b915061508982615022565b604082019050919050565b600060208201905081810360008301526150ad81615071565b9050919050565b6000815190506150c3816143b7565b92915050565b6000602082840312156150df576150de61434a565b5b60006150ed848285016150b4565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061515260248361429a565b915061515d826150f6565b604082019050919050565b6000602082019050818103600083015261518181615145565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006151e460228361429a565b91506151ef82615188565b604082019050919050565b60006020820190508181036000830152615213816151d7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061527660258361429a565b91506152818261521a565b604082019050919050565b600060208201905081810360008301526152a581615269565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061530860238361429a565b9150615313826152ac565b604082019050919050565b60006020820190508181036000830152615337816152fb565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061537460168361429a565b915061537f8261533e565b602082019050919050565b600060208201905081810360008301526153a381615367565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061542c60498361429a565b9150615437826153aa565b606082019050919050565b6000602082019050818103600083015261545b8161541f565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006154be60358361429a565b91506154c982615462565b604082019050919050565b600060208201905081810360008301526154ed816154b1565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061552a60138361429a565b9150615535826154f4565b602082019050919050565b600060208201905081810360008301526155598161551d565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006155bc60368361429a565b91506155c782615560565b604082019050919050565b600060208201905081810360008301526155eb816155af565b9050919050565b60006155fd826143ad565b9150615608836143ad565b92508282101561561b5761561a614857565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061568260268361429a565b915061568d82615626565b604082019050919050565b600060208201905081810360008301526156b181615675565b9050919050565b600081905092915050565b50565b60006156d36000836156b8565b91506156de826156c3565b600082019050919050565b60006156f4826156c6565b9150819050919050565b60006060820190506157136000830186614500565b6157206020830185614500565b61572d6040830184614500565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506157a281614381565b92915050565b6000602082840312156157be576157bd61434a565b5b60006157cc84828501615793565b91505092915050565b6000819050919050565b60006157fa6157f56157f0846157d5565b614486565b6143ad565b9050919050565b61580a816157df565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6158458161436f565b82525050565b6000615857838361583c565b60208301905092915050565b6000602082019050919050565b600061587b82615810565b615885818561581b565b93506158908361582c565b8060005b838110156158c15781516158a8888261584b565b97506158b383615863565b925050600181019050615894565b5085935050505092915050565b600060a0820190506158e36000830188614500565b6158f06020830187615801565b81810360408301526159028186615870565b905061591160608301856145aa565b61591e6080830184614500565b9695505050505050565b600060c08201905061593d60008301896145aa565b61594a6020830188614500565b6159576040830187615801565b6159646060830186615801565b61597160808301856145aa565b61597e60a0830184614500565b979650505050505050565b6000806000606084860312156159a2576159a161434a565b5b60006159b0868287016150b4565b93505060206159c1868287016150b4565b92505060406159d2868287016150b4565b915050925092509256fea2646970667358221220ab26740498433227bafb022697da1f902e0f6d27a52526c49572f2a2403730e864736f6c634300080a0033

Deployed Bytecode Sourcemap

33249:20324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10077:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12244:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35440:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33856:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11197:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34409:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34237:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35183:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40300:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12895:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33959:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34319:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34279:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11039:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13796:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33914:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34507:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35031:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42815:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34888:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34996:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34587:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11368:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3312:103;;;;;;;;;;;;;:::i;:::-;;50964:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39381:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40911:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41282:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39174:155;;;;;;;;;;;;;:::i;:::-;;2661:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34089:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41174:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10296:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42307:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34963:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35259:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34463:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51527:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35223:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35108:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14514:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34371:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11708:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35661:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34547:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42117:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41695:414;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40613:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34805:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34122:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39768:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34854:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11946:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34164:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39563:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34926:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3570:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35070:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34204:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35142:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34051:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52514:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10077:100;10131:13;10164:5;10157:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10077:100;:::o;12244:169::-;12327:4;12344:39;12353:12;:10;:12::i;:::-;12367:7;12376:6;12344:8;:39::i;:::-;12401:4;12394:11;;12244:169;;;;:::o;35440:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33856:51::-;;;:::o;11197:108::-;11258:7;11285:12;;11278:19;;11197:108;:::o;34409:47::-;;;;:::o;34237:35::-;;;;:::o;35183:33::-;;;;:::o;40300:275::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40437:4:::1;40429;40424:1;40408:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40407:26;;;;:::i;:::-;40406:35;;;;:::i;:::-;40396:6;:45;;40374:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;40560:6;40550;:17;;;;:::i;:::-;40527:20;:40;;;;40300:275:::0;:::o;12895:492::-;13035:4;13052:36;13062:6;13070:9;13081:6;13052:9;:36::i;:::-;13101:24;13128:11;:19;13140:6;13128:19;;;;;;;;;;;;;;;:33;13148:12;:10;:12::i;:::-;13128:33;;;;;;;;;;;;;;;;13101:60;;13200:6;13180:16;:26;;13172:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13287:57;13296:6;13304:12;:10;:12::i;:::-;13337:6;13318:16;:25;13287:8;:57::i;:::-;13375:4;13368:11;;;12895:492;;;;;:::o;33959:53::-;34005:6;33959:53;:::o;34319:45::-;;;;:::o;34279:33::-;;;;;;;;;;;;;:::o;11039:93::-;11097:5;11122:2;11115:9;;11039:93;:::o;13796:215::-;13884:4;13901:80;13910:12;:10;:12::i;:::-;13924:7;13970:10;13933:11;:25;13945:12;:10;:12::i;:::-;13933:25;;;;;;;;;;;;;;;:34;13959:7;13933:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13901:8;:80::i;:::-;13999:4;13992:11;;13796:215;;;;:::o;33914:38::-;;;:::o;34507:33::-;;;;;;;;;;;;;:::o;35031:32::-;;;;:::o;42815:126::-;42881:4;42905:19;:28;42925:7;42905:28;;;;;;;;;;;;;;;;;;;;;;;;;42898:35;;42815:126;;;:::o;34888:31::-;;;;:::o;34996:28::-;;;;:::o;34587:31::-;;;;;;;;;;;;;:::o;11368:127::-;11442:7;11469:9;:18;11479:7;11469:18;;;;;;;;;;;;;;;;11462:25;;11368:127;;;:::o;3312:103::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3377:30:::1;3404:1;3377:18;:30::i;:::-;3312:103::o:0;50964:555::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51166:3:::1;51143:19;:26;;51121:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;51293:4;51281:8;:16;;:33;;;;;51313:1;51301:8;:13;;51281:33;51259:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;51419:19;51401:15;:37;;;;51468:8;51449:16;:27;;;;51503:8;51487:13;;:24;;;;;;;;;;;;;;;;;;50964:555:::0;;;:::o;39381:121::-;39433:4;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39467:5:::1;39450:14;;:22;;;;;;;;;;;;;;;;;;39490:4;39483:11;;39381:121:::0;:::o;40911:167::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41066:4:::1;41024:31;:39;41056:6;41024:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40911:167:::0;;:::o;41282:405::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41452:14:::1;41433:16;:33;;;;41495:13;41477:15;:31;;;;41531:7;41519:9;:19;;;;41601:9;;41583:15;;41564:16;;:34;;;;:::i;:::-;:46;;;;:::i;:::-;41549:12;:61;;;;41645:1;41629:12;;:17;;41621:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41282:405:::0;;;:::o;39174:155::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39245:4:::1;39229:13;;:20;;;;;;;;;;;;;;;;;;39274:4;39260:11;;:18;;;;;;;;;;;;;;;;;;39306:15;39289:14;:32;;;;39174:155::o:0;2661:87::-;2707:7;2734:6;;;;;;;;;;;2727:13;;2661:87;:::o;34089:24::-;;;;;;;;;;;;;:::o;41174:100::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41259:7:::1;41245:11;;:21;;;;;;;;;;;;;;;;;;41174:100:::0;:::o;10296:104::-;10352:13;10385:7;10378:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10296:104;:::o;42307:304::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42451:13:::1;42443:21;;:4;:21;;;;42421:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;42562:41;42591:4;42597:5;42562:28;:41::i;:::-;42307:304:::0;;:::o;34963:24::-;;;;:::o;35259:32::-;;;;:::o;34463:35::-;;;;:::o;51527:183::-;51616:4;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51657:21:::1;51634:20;;:44;;;;;;;;;;;;;;;;;;51697:4;51690:11;;51527:183:::0;;;:::o;35223:27::-;;;;:::o;35108:25::-;;;;:::o;14514:413::-;14607:4;14624:24;14651:11;:25;14663:12;:10;:12::i;:::-;14651:25;;;;;;;;;;;;;;;:34;14677:7;14651:34;;;;;;;;;;;;;;;;14624:61;;14724:15;14704:16;:35;;14696:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14817:67;14826:12;:10;:12::i;:::-;14840:7;14868:15;14849:16;:34;14817:8;:67::i;:::-;14915:4;14908:11;;;14514:413;;;;:::o;34371:29::-;;;;:::o;11708:175::-;11794:4;11811:42;11821:12;:10;:12::i;:::-;11835:9;11846:6;11811:9;:42::i;:::-;11871:4;11864:11;;11708:175;;;;:::o;35661:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;34547:33::-;;;;;;;;;;;;;:::o;42117:182::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42233:8:::1;42202:19;:28;42222:7;42202:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42273:7;42257:34;;;42282:8;42257:34;;;;;;:::i;:::-;;;;;;;;42117:182:::0;;:::o;41695:414::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41867:14:::1;41847:17;:34;;;;41911:13;41892:16;:32;;;;41948:7;41935:10;:20;;;;42021:10;;42002:16;;41982:17;;:36;;;;:::i;:::-;:49;;;;:::i;:::-;41966:13;:65;;;;42067:1;42050:13;;:18;;42042:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;41695:414:::0;;;:::o;40613:256::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40753:4:::1;40745;40740:1;40724:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40723:26;;;;:::i;:::-;40722:35;;;;:::i;:::-;40712:6;:45;;40690:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;40854:6;40844;:17;;;;:::i;:::-;40832:9;:29;;;;40613:256:::0;:::o;34805:40::-;;;;;;;;;;;;;:::o;34122:35::-;;;;:::o;39768:497::-;39876:4;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39955:6:::1;39950:1;39934:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39933:28;;;;:::i;:::-;39920:9;:41;;39898:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;40110:4;40105:1;40089:13;:11;:13::i;:::-;:17;;;;:::i;:::-;40088:26;;;;:::i;:::-;40075:9;:39;;40053:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;40226:9;40205:18;:30;;;;40253:4;40246:11;;39768:497:::0;;;:::o;34854:27::-;;;;:::o;11946:151::-;12035:7;12062:11;:18;12074:5;12062:18;;;;;;;;;;;;;;;:27;12081:7;12062:27;;;;;;;;;;;;;;;;12055:34;;11946:151;;;;:::o;34164:33::-;;;;:::o;39563:135::-;39623:4;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39663:5:::1;39640:20;;:28;;;;;;;;;;;;;;;;;;39686:4;39679:11;;39563:135:::0;:::o;34926:30::-;;;;:::o;3570:201::-;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3679:1:::1;3659:22;;:8;:22;;;;3651:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3735:28;3754:8;3735:18;:28::i;:::-;3570:201:::0;:::o;35070:31::-;;;;:::o;34204:24::-;;;;:::o;35142:34::-;;;;:::o;34051:31::-;;;;;;;;;;;;;:::o;52514:1056::-;52625:4;2892:12;:10;:12::i;:::-;2881:23;;:7;:5;:7::i;:::-;:23;;;2873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52710:19:::1;;52687:20;;:42;;;;:::i;:::-;52669:15;:60;52647:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;52819:4;52808:7;:15;;52800:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52904:15;52881:20;:38;;;;52974:28;53005:4;:14;;;53020:13;53005:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52974:60;;53084:20;53107:44;53145:5;53107:33;53132:7;53107:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;53084:67;;53271:1;53256:12;:16;53252:110;;;53289:61;53305:13;53328:6;53337:12;53289:15;:61::i;:::-;53252:110;53437:19;53474:13;53437:51;;53499:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53526:14;;;;;;;;;;53558:4;53551:11;;;;;52514:1056:::0;;;:::o;1334:98::-;1387:7;1414:10;1407:17;;1334:98;:::o;18198:380::-;18351:1;18334:19;;:5;:19;;;;18326:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18432:1;18413:21;;:7;:21;;;;18405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18516:6;18486:11;:18;18498:5;18486:18;;;;;;;;;;;;;;;:27;18505:7;18486:27;;;;;;;;;;;;;;;:36;;;;18554:7;18538:32;;18547:5;18538:32;;;18563:6;18538:32;;;;;;:::i;:::-;;;;;;;;18198:380;;;:::o;43013:5015::-;43161:1;43145:18;;:4;:18;;;;43137:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43238:1;43224:16;;:2;:16;;;;43216:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43307:1;43297:6;:11;43293:93;;;43325:28;43341:4;43347:2;43351:1;43325:15;:28::i;:::-;43368:7;;43293:93;43402:14;;;;;;;;;;;43398:2487;;;43463:7;:5;:7::i;:::-;43455:15;;:4;:15;;;;:49;;;;;43497:7;:5;:7::i;:::-;43491:13;;:2;:13;;;;43455:49;:86;;;;;43539:1;43525:16;;:2;:16;;;;43455:86;:128;;;;;43576:6;43562:21;;:2;:21;;;;43455:128;:158;;;;;43605:8;;;;;;;;;;;43604:9;43455:158;43433:2441;;;43653:13;;;;;;;;;;;43648:223;;43725:19;:25;43745:4;43725:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43754:19;:23;43774:2;43754:23;;;;;;;;;;;;;;;;;;;;;;;;;43725:52;43691:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43648:223;44027:20;;;;;;;;;;;44023:641;;;44108:7;:5;:7::i;:::-;44102:13;;:2;:13;;;;:72;;;;;44158:15;44144:30;;:2;:30;;;;44102:72;:129;;;;;44217:13;44203:28;;:2;:28;;;;44102:129;44072:573;;;44395:12;44320:28;:39;44349:9;44320:39;;;;;;;;;;;;;;;;:87;44282:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;44609:12;44567:28;:39;44596:9;44567:39;;;;;;;;;;;;;;;:54;;;;44072:573;44023:641;44738:25;:31;44764:4;44738:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44795:31;:35;44827:2;44795:35;;;;;;;;;;;;;;;;;;;;;;;;;44794:36;44738:92;44712:1147;;;44917:20;;44907:6;:30;;44873:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;45125:9;;45108:13;45118:2;45108:9;:13::i;:::-;45099:6;:22;;;;:::i;:::-;:35;;45065:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44712:1147;;;45303:25;:29;45329:2;45303:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;45358:31;:37;45390:4;45358:37;;;;;;;;;;;;;;;;;;;;;;;;;45357:38;45303:92;45277:582;;;45482:20;;45472:6;:30;;45438:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;45277:582;;;45639:31;:35;45671:2;45639:35;;;;;;;;;;;;;;;;;;;;;;;;;45634:225;;45759:9;;45742:13;45752:2;45742:9;:13::i;:::-;45733:6;:22;;;;:::i;:::-;:35;;45699:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45634:225;45277:582;44712:1147;43433:2441;43398:2487;45897:28;45928:24;45946:4;45928:9;:24::i;:::-;45897:55;;45965:12;46004:18;;45980:20;:42;;45965:57;;46053:7;:35;;;;;46077:11;;;;;;;;;;;46053:35;:61;;;;;46106:8;;;;;;;;;;;46105:9;46053:61;:110;;;;;46132:25;:31;46158:4;46132:31;;;;;;;;;;;;;;;;;;;;;;;;;46131:32;46053:110;:153;;;;;46181:19;:25;46201:4;46181:25;;;;;;;;;;;;;;;;;;;;;;;;;46180:26;46053:153;:194;;;;;46224:19;:23;46244:2;46224:23;;;;;;;;;;;;;;;;;;;;;;;;;46223:24;46053:194;46035:326;;;46285:4;46274:8;;:15;;;;;;;;;;;;;;;;;;46306:10;:8;:10::i;:::-;46344:5;46333:8;;:16;;;;;;;;;;;;;;;;;;46035:326;46392:8;;;;;;;;;;;46391:9;:55;;;;;46417:25;:29;46443:2;46417:29;;;;;;;;;;;;;;;;;;;;;;;;;46391:55;:85;;;;;46463:13;;;;;;;;;;;46391:85;:153;;;;;46529:15;;46512:14;;:32;;;;:::i;:::-;46493:15;:51;;46391:153;:196;;;;;46562:19;:25;46582:4;46562:25;;;;;;;;;;;;;;;;;;;;;;;;;46561:26;46391:196;46373:282;;;46614:29;:27;:29::i;:::-;;46373:282;46667:12;46683:8;;;;;;;;;;;46682:9;46667:24;;46793:19;:25;46813:4;46793:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46822:19;:23;46842:2;46822:23;;;;;;;;;;;;;;;;;;;;;;;;;46793:52;46789:100;;;46872:5;46862:15;;46789:100;46901:12;47006:7;47002:973;;;47058:25;:29;47084:2;47058:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;47107:1;47091:13;;:17;47058:50;47054:772;;;47136:34;47166:3;47136:25;47147:13;;47136:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;47129:41;;47239:13;;47219:16;;47212:4;:23;;;;:::i;:::-;47211:41;;;;:::i;:::-;47189:18;;:63;;;;;;;:::i;:::-;;;;;;;;47309:13;;47295:10;;47288:4;:17;;;;:::i;:::-;47287:35;;;;:::i;:::-;47271:12;;:51;;;;;;;:::i;:::-;;;;;;;;47393:13;;47372:17;;47365:4;:24;;;;:::i;:::-;47364:42;;;;:::i;:::-;47341:19;;:65;;;;;;;:::i;:::-;;;;;;;;47054:772;;;47468:25;:31;47494:4;47468:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;47518:1;47503:12;;:16;47468:51;47464:362;;;47547:33;47576:3;47547:24;47558:12;;47547:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;47540:40;;47648:12;;47629:15;;47622:4;:22;;;;:::i;:::-;47621:39;;;;:::i;:::-;47599:18;;:61;;;;;;;:::i;:::-;;;;;;;;47716:12;;47703:9;;47696:4;:16;;;;:::i;:::-;47695:33;;;;:::i;:::-;47679:12;;:49;;;;;;;:::i;:::-;;;;;;;;47798:12;;47778:16;;47771:4;:23;;;;:::i;:::-;47770:40;;;;:::i;:::-;47747:19;;:63;;;;;;;:::i;:::-;;;;;;;;47464:362;47054:772;47853:1;47846:4;:8;47842:91;;;47875:42;47891:4;47905;47912;47875:15;:42::i;:::-;47842:91;47959:4;47949:14;;;;;:::i;:::-;;;47002:973;47987:33;48003:4;48009:2;48013:6;47987:15;:33::i;:::-;43126:4902;;;;43013:5015;;;;:::o;3931:191::-;4005:16;4024:6;;;;;;;;;;;4005:25;;4050:8;4041:6;;:17;;;;;;;;;;;;;;;;;;4105:8;4074:40;;4095:8;4074:40;;;;;;;;;;;;3994:128;3931:191;:::o;42619:188::-;42736:5;42702:25;:31;42728:4;42702:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;42793:5;42759:40;;42787:4;42759:40;;;;;;;;;;;;42619:188;;:::o;23651:98::-;23709:7;23740:1;23736;:5;;;;:::i;:::-;23729:12;;23651:98;;;;:::o;24050:::-;24108:7;24139:1;24135;:5;;;;:::i;:::-;24128:12;;24050:98;;;;:::o;15417:733::-;15575:1;15557:20;;:6;:20;;;;15549:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15659:1;15638:23;;:9;:23;;;;15630:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15714:47;15735:6;15743:9;15754:6;15714:20;:47::i;:::-;15774:21;15798:9;:17;15808:6;15798:17;;;;;;;;;;;;;;;;15774:41;;15851:6;15834:13;:23;;15826:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15972:6;15956:13;:22;15936:9;:17;15946:6;15936:17;;;;;;;;;;;;;;;:42;;;;16024:6;16000:9;:20;16010:9;16000:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16065:9;16048:35;;16057:6;16048:35;;;16076:6;16048:35;;;;;;:::i;:::-;;;;;;;;16096:46;16116:6;16124:9;16135:6;16096:19;:46::i;:::-;15538:612;15417:733;;;:::o;49194:1762::-;49233:23;49259:24;49277:4;49259:9;:24::i;:::-;49233:50;;49294:25;49391:12;;49356:19;;49322:18;;:53;;;;:::i;:::-;:81;;;;:::i;:::-;49294:109;;49414:12;49462:1;49443:15;:20;:46;;;;49488:1;49467:17;:22;49443:46;49439:85;;;49506:7;;;;;49439:85;49579:2;49558:18;;:23;;;;:::i;:::-;49540:15;:41;49536:115;;;49637:2;49616:18;;:23;;;;:::i;:::-;49598:41;;49536:115;49712:23;49825:1;49792:17;49757:18;;49739:15;:36;;;;:::i;:::-;49738:71;;;;:::i;:::-;:88;;;;:::i;:::-;49712:114;;49837:26;49866:36;49886:15;49866;:19;;:36;;;;:::i;:::-;49837:65;;49915:25;49943:21;49915:49;;49977:36;49994:18;49977:16;:36::i;:::-;50026:18;50047:44;50073:17;50047:21;:25;;:44;;;;:::i;:::-;50026:65;;50104:24;50131:82;50185:17;50131:35;50146:19;;50131:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;50104:109;;50224:17;50244:51;50277:17;50244:28;50259:12;;50244:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;50224:71;;50308:23;50366:9;50347:16;50334:10;:29;;;;:::i;:::-;:41;;;;:::i;:::-;50308:67;;50409:1;50388:18;:22;;;;50443:1;50421:19;:23;;;;50470:1;50455:12;:16;;;;50506:9;;;;;;;;;;;50498:23;;50529:9;50498:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50484:59;;;;;50578:1;50560:15;:19;:42;;;;;50601:1;50583:15;:19;50560:42;50556:278;;;50619:46;50632:15;50649;50619:12;:46::i;:::-;50685:137;50718:18;50755:15;50789:18;;50685:137;;;;;;;;:::i;:::-;;;;;;;;50556:278;50868:16;;;;;;;;;;;50860:30;;50912:21;50860:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50846:102;;;;;49222:1734;;;;;;;;;;49194:1762;:::o;51718:788::-;51775:4;51809:15;51792:14;:32;;;;51879:28;51910:4;:14;;;51925:13;51910:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51879:60;;51989:20;52012:77;52073:5;52012:42;52037:16;;52012:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;51989:100;;52209:1;52194:12;:16;52190:110;;;52227:61;52243:13;52266:6;52275:12;52227:15;:61::i;:::-;52190:110;52375:19;52412:13;52375:51;;52437:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52464:12;;;;;;;;;;52494:4;52487:11;;;;;51718:788;:::o;19178:125::-;;;;:::o;19907:124::-;;;;:::o;23294:98::-;23352:7;23383:1;23379;:5;;;;:::i;:::-;23372:12;;23294:98;;;;:::o;48036:589::-;48162:21;48200:1;48186:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48162:40;;48231:4;48213;48218:1;48213:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;48257:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48247:4;48252:1;48247:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;48292:62;48309:4;48324:15;48342:11;48292:8;:62::i;:::-;48393:15;:66;;;48474:11;48500:1;48544:4;48571;48591:15;48393:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48091:534;48036:589;:::o;48633:517::-;48781:62;48798:4;48813:15;48831:11;48781:8;:62::i;:::-;48886:15;:31;;;48925:9;48958:4;48978:11;49004:1;49047;34005:6;49116:15;48886:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48633: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:223::-;19755:34;19751:1;19743:6;19739:14;19732:58;19824:6;19819:2;19811:6;19807:15;19800:31;19615:223;:::o;19844:366::-;19986:3;20007:67;20071:2;20066:3;20007:67;:::i;:::-;20000:74;;20083:93;20172:3;20083:93;:::i;:::-;20201:2;20196:3;20192:12;20185:19;;19844:366;;;:::o;20216:419::-;20382:4;20420:2;20409:9;20405:18;20397:26;;20469:9;20463:4;20459:20;20455:1;20444:9;20440:17;20433:47;20497:131;20623:4;20497:131;:::i;:::-;20489:139;;20216:419;;;:::o;20641:240::-;20781:34;20777:1;20769:6;20765:14;20758:58;20850:23;20845:2;20837:6;20833:15;20826:48;20641:240;:::o;20887:366::-;21029:3;21050:67;21114:2;21109:3;21050:67;:::i;:::-;21043:74;;21126:93;21215:3;21126:93;:::i;:::-;21244:2;21239:3;21235:12;21228:19;;20887:366;;;:::o;21259:419::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21259:419;;;:::o;21684:239::-;21824:34;21820:1;21812:6;21808:14;21801:58;21893:22;21888:2;21880:6;21876:15;21869:47;21684:239;:::o;21929:366::-;22071:3;22092:67;22156:2;22151:3;22092:67;:::i;:::-;22085:74;;22168:93;22257:3;22168:93;:::i;:::-;22286:2;22281:3;22277:12;22270:19;;21929:366;;;:::o;22301:419::-;22467:4;22505:2;22494:9;22490:18;22482:26;;22554:9;22548:4;22544:20;22540:1;22529:9;22525:17;22518:47;22582:131;22708:4;22582:131;:::i;:::-;22574:139;;22301:419;;;:::o;22726:225::-;22866:34;22862:1;22854:6;22850:14;22843:58;22935:8;22930:2;22922:6;22918:15;22911:33;22726:225;:::o;22957:366::-;23099:3;23120:67;23184:2;23179:3;23120:67;:::i;:::-;23113:74;;23196:93;23285:3;23196:93;:::i;:::-;23314:2;23309:3;23305:12;23298:19;;22957:366;;;:::o;23329:419::-;23495:4;23533:2;23522:9;23518:18;23510:26;;23582:9;23576:4;23572:20;23568:1;23557:9;23553:17;23546:47;23610:131;23736:4;23610:131;:::i;:::-;23602:139;;23329:419;;;:::o;23754:182::-;23894:34;23890:1;23882:6;23878:14;23871:58;23754:182;:::o;23942:366::-;24084:3;24105:67;24169:2;24164:3;24105:67;:::i;:::-;24098:74;;24181:93;24270:3;24181:93;:::i;:::-;24299:2;24294:3;24290:12;24283:19;;23942:366;;;:::o;24314:419::-;24480:4;24518:2;24507:9;24503:18;24495:26;;24567:9;24561:4;24557:20;24553:1;24542:9;24538:17;24531:47;24595:131;24721:4;24595:131;:::i;:::-;24587:139;;24314:419;;;:::o;24739:229::-;24879:34;24875:1;24867:6;24863:14;24856:58;24948:12;24943:2;24935:6;24931:15;24924:37;24739:229;:::o;24974:366::-;25116:3;25137:67;25201:2;25196:3;25137:67;:::i;:::-;25130:74;;25213:93;25302:3;25213:93;:::i;:::-;25331:2;25326:3;25322:12;25315:19;;24974:366;;;:::o;25346:419::-;25512:4;25550:2;25539:9;25535:18;25527:26;;25599:9;25593:4;25589:20;25585:1;25574:9;25570:17;25563:47;25627:131;25753:4;25627:131;:::i;:::-;25619:139;;25346:419;;;:::o;25771:143::-;25828:5;25859:6;25853:13;25844:22;;25875:33;25902:5;25875:33;:::i;:::-;25771:143;;;;:::o;25920:351::-;25990:6;26039:2;26027:9;26018:7;26014:23;26010:32;26007:119;;;26045:79;;:::i;:::-;26007:119;26165:1;26190:64;26246:7;26237:6;26226:9;26222:22;26190:64;:::i;:::-;26180:74;;26136:128;25920:351;;;;:::o;26277:223::-;26417:34;26413:1;26405:6;26401:14;26394:58;26486:6;26481:2;26473:6;26469:15;26462:31;26277:223;:::o;26506:366::-;26648:3;26669:67;26733:2;26728:3;26669:67;:::i;:::-;26662:74;;26745:93;26834:3;26745:93;:::i;:::-;26863:2;26858:3;26854:12;26847:19;;26506:366;;;:::o;26878:419::-;27044:4;27082:2;27071:9;27067:18;27059:26;;27131:9;27125:4;27121:20;27117:1;27106:9;27102:17;27095:47;27159:131;27285:4;27159:131;:::i;:::-;27151:139;;26878:419;;;:::o;27303:221::-;27443:34;27439:1;27431:6;27427:14;27420:58;27512:4;27507:2;27499:6;27495:15;27488:29;27303:221;:::o;27530:366::-;27672:3;27693:67;27757:2;27752:3;27693:67;:::i;:::-;27686:74;;27769:93;27858:3;27769:93;:::i;:::-;27887:2;27882:3;27878:12;27871:19;;27530:366;;;:::o;27902:419::-;28068:4;28106:2;28095:9;28091:18;28083:26;;28155:9;28149:4;28145:20;28141:1;28130:9;28126:17;28119:47;28183:131;28309:4;28183:131;:::i;:::-;28175:139;;27902:419;;;:::o;28327:224::-;28467:34;28463:1;28455:6;28451:14;28444:58;28536:7;28531:2;28523:6;28519:15;28512:32;28327:224;:::o;28557:366::-;28699:3;28720:67;28784:2;28779:3;28720:67;:::i;:::-;28713:74;;28796:93;28885:3;28796:93;:::i;:::-;28914:2;28909:3;28905:12;28898:19;;28557:366;;;:::o;28929:419::-;29095:4;29133:2;29122:9;29118:18;29110:26;;29182:9;29176:4;29172:20;29168:1;29157:9;29153:17;29146:47;29210:131;29336:4;29210:131;:::i;:::-;29202:139;;28929:419;;;:::o;29354:222::-;29494:34;29490:1;29482:6;29478:14;29471:58;29563:5;29558:2;29550:6;29546:15;29539:30;29354:222;:::o;29582:366::-;29724:3;29745:67;29809:2;29804:3;29745:67;:::i;:::-;29738:74;;29821:93;29910:3;29821:93;:::i;:::-;29939:2;29934:3;29930:12;29923:19;;29582:366;;;:::o;29954:419::-;30120:4;30158:2;30147:9;30143:18;30135:26;;30207:9;30201:4;30197:20;30193:1;30182:9;30178:17;30171:47;30235:131;30361:4;30235:131;:::i;:::-;30227:139;;29954:419;;;:::o;30379:172::-;30519:24;30515:1;30507:6;30503:14;30496:48;30379:172;:::o;30557:366::-;30699:3;30720:67;30784:2;30779:3;30720:67;:::i;:::-;30713:74;;30796:93;30885:3;30796:93;:::i;:::-;30914:2;30909:3;30905:12;30898:19;;30557:366;;;:::o;30929:419::-;31095:4;31133:2;31122:9;31118:18;31110:26;;31182:9;31176:4;31172:20;31168:1;31157:9;31153:17;31146:47;31210:131;31336:4;31210:131;:::i;:::-;31202:139;;30929:419;;;:::o;31354:297::-;31494:34;31490:1;31482:6;31478:14;31471:58;31563:34;31558:2;31550:6;31546:15;31539:59;31632:11;31627:2;31619:6;31615:15;31608:36;31354:297;:::o;31657:366::-;31799:3;31820:67;31884:2;31879:3;31820:67;:::i;:::-;31813:74;;31896:93;31985:3;31896:93;:::i;:::-;32014:2;32009:3;32005:12;31998:19;;31657:366;;;:::o;32029:419::-;32195:4;32233:2;32222:9;32218:18;32210:26;;32282:9;32276:4;32272:20;32268:1;32257:9;32253:17;32246:47;32310:131;32436:4;32310:131;:::i;:::-;32302:139;;32029:419;;;:::o;32454:240::-;32594:34;32590:1;32582:6;32578:14;32571:58;32663:23;32658:2;32650:6;32646:15;32639:48;32454:240;:::o;32700:366::-;32842:3;32863:67;32927:2;32922:3;32863:67;:::i;:::-;32856:74;;32939:93;33028:3;32939:93;:::i;:::-;33057:2;33052:3;33048:12;33041:19;;32700:366;;;:::o;33072:419::-;33238:4;33276:2;33265:9;33261:18;33253:26;;33325:9;33319:4;33315:20;33311:1;33300:9;33296:17;33289:47;33353:131;33479:4;33353:131;:::i;:::-;33345:139;;33072:419;;;:::o;33497:169::-;33637:21;33633:1;33625:6;33621:14;33614:45;33497:169;:::o;33672:366::-;33814:3;33835:67;33899:2;33894:3;33835:67;:::i;:::-;33828:74;;33911:93;34000:3;33911:93;:::i;:::-;34029:2;34024:3;34020:12;34013:19;;33672:366;;;:::o;34044:419::-;34210:4;34248:2;34237:9;34233:18;34225:26;;34297:9;34291:4;34287:20;34283:1;34272:9;34268:17;34261:47;34325:131;34451:4;34325:131;:::i;:::-;34317:139;;34044:419;;;:::o;34469:241::-;34609:34;34605:1;34597:6;34593:14;34586:58;34678:24;34673:2;34665:6;34661:15;34654:49;34469:241;:::o;34716:366::-;34858:3;34879:67;34943:2;34938:3;34879:67;:::i;:::-;34872:74;;34955:93;35044:3;34955:93;:::i;:::-;35073:2;35068:3;35064:12;35057:19;;34716:366;;;:::o;35088:419::-;35254:4;35292:2;35281:9;35277:18;35269:26;;35341:9;35335:4;35331:20;35327:1;35316:9;35312:17;35305:47;35369:131;35495:4;35369:131;:::i;:::-;35361:139;;35088:419;;;:::o;35513:191::-;35553:4;35573:20;35591:1;35573:20;:::i;:::-;35568:25;;35607:20;35625:1;35607:20;:::i;:::-;35602:25;;35646:1;35643;35640:8;35637:34;;;35651:18;;:::i;:::-;35637:34;35696:1;35693;35689:9;35681:17;;35513:191;;;;:::o;35710:225::-;35850:34;35846:1;35838:6;35834:14;35827:58;35919:8;35914:2;35906:6;35902:15;35895:33;35710:225;:::o;35941:366::-;36083:3;36104:67;36168:2;36163:3;36104:67;:::i;:::-;36097:74;;36180:93;36269:3;36180:93;:::i;:::-;36298:2;36293:3;36289:12;36282:19;;35941:366;;;:::o;36313:419::-;36479:4;36517:2;36506:9;36502:18;36494:26;;36566:9;36560:4;36556:20;36552:1;36541:9;36537:17;36530:47;36594:131;36720:4;36594:131;:::i;:::-;36586:139;;36313:419;;;:::o;36738:147::-;36839:11;36876:3;36861:18;;36738:147;;;;:::o;36891:114::-;;:::o;37011:398::-;37170:3;37191:83;37272:1;37267:3;37191:83;:::i;:::-;37184:90;;37283:93;37372:3;37283:93;:::i;:::-;37401:1;37396:3;37392:11;37385:18;;37011:398;;;:::o;37415:379::-;37599:3;37621:147;37764:3;37621:147;:::i;:::-;37614:154;;37785:3;37778:10;;37415:379;;;:::o;37800:442::-;37949:4;37987:2;37976:9;37972:18;37964:26;;38000:71;38068:1;38057:9;38053:17;38044:6;38000:71;:::i;:::-;38081:72;38149:2;38138:9;38134:18;38125:6;38081:72;:::i;:::-;38163;38231:2;38220:9;38216:18;38207:6;38163:72;:::i;:::-;37800:442;;;;;;:::o;38248:180::-;38296:77;38293:1;38286:88;38393:4;38390:1;38383:15;38417:4;38414:1;38407:15;38434:180;38482:77;38479:1;38472:88;38579:4;38576:1;38569:15;38603:4;38600:1;38593:15;38620:143;38677:5;38708:6;38702:13;38693:22;;38724:33;38751:5;38724:33;:::i;:::-;38620:143;;;;:::o;38769:351::-;38839:6;38888:2;38876:9;38867:7;38863:23;38859:32;38856:119;;;38894:79;;:::i;:::-;38856:119;39014:1;39039:64;39095:7;39086:6;39075:9;39071:22;39039:64;:::i;:::-;39029:74;;38985:128;38769:351;;;;:::o;39126:85::-;39171:7;39200:5;39189:16;;39126:85;;;:::o;39217:158::-;39275:9;39308:61;39326:42;39335:32;39361:5;39335:32;:::i;:::-;39326:42;:::i;:::-;39308:61;:::i;:::-;39295:74;;39217:158;;;:::o;39381:147::-;39476:45;39515:5;39476:45;:::i;:::-;39471:3;39464:58;39381:147;;:::o;39534:114::-;39601:6;39635:5;39629:12;39619:22;;39534:114;;;:::o;39654:184::-;39753:11;39787:6;39782:3;39775:19;39827:4;39822:3;39818:14;39803:29;;39654:184;;;;:::o;39844:132::-;39911:4;39934:3;39926:11;;39964:4;39959:3;39955:14;39947:22;;39844:132;;;:::o;39982:108::-;40059:24;40077:5;40059:24;:::i;:::-;40054:3;40047:37;39982:108;;:::o;40096:179::-;40165:10;40186:46;40228:3;40220:6;40186:46;:::i;:::-;40264:4;40259:3;40255:14;40241:28;;40096:179;;;;:::o;40281:113::-;40351:4;40383;40378:3;40374:14;40366:22;;40281:113;;;:::o;40430:732::-;40549:3;40578:54;40626:5;40578:54;:::i;:::-;40648:86;40727:6;40722:3;40648:86;:::i;:::-;40641:93;;40758:56;40808:5;40758:56;:::i;:::-;40837:7;40868:1;40853:284;40878:6;40875:1;40872:13;40853:284;;;40954:6;40948:13;40981:63;41040:3;41025:13;40981:63;:::i;:::-;40974:70;;41067:60;41120:6;41067:60;:::i;:::-;41057:70;;40913:224;40900:1;40897;40893:9;40888:14;;40853:284;;;40857:14;41153:3;41146:10;;40554:608;;;40430:732;;;;:::o;41168:831::-;41431:4;41469:3;41458:9;41454:19;41446:27;;41483:71;41551:1;41540:9;41536:17;41527:6;41483:71;:::i;:::-;41564:80;41640:2;41629:9;41625:18;41616:6;41564:80;:::i;:::-;41691:9;41685:4;41681:20;41676:2;41665:9;41661:18;41654:48;41719:108;41822:4;41813:6;41719:108;:::i;:::-;41711:116;;41837:72;41905:2;41894:9;41890:18;41881:6;41837:72;:::i;:::-;41919:73;41987:3;41976:9;41972:19;41963:6;41919:73;:::i;:::-;41168:831;;;;;;;;:::o;42005:807::-;42254:4;42292:3;42281:9;42277:19;42269:27;;42306:71;42374:1;42363:9;42359:17;42350:6;42306:71;:::i;:::-;42387:72;42455:2;42444:9;42440:18;42431:6;42387:72;:::i;:::-;42469:80;42545:2;42534:9;42530:18;42521:6;42469:80;:::i;:::-;42559;42635:2;42624:9;42620:18;42611:6;42559:80;:::i;:::-;42649:73;42717:3;42706:9;42702:19;42693:6;42649:73;:::i;:::-;42732;42800:3;42789:9;42785:19;42776:6;42732:73;:::i;:::-;42005:807;;;;;;;;;:::o;42818:663::-;42906:6;42914;42922;42971:2;42959:9;42950:7;42946:23;42942:32;42939:119;;;42977:79;;:::i;:::-;42939:119;43097:1;43122:64;43178:7;43169:6;43158:9;43154:22;43122:64;:::i;:::-;43112:74;;43068:128;43235:2;43261:64;43317:7;43308:6;43297:9;43293:22;43261:64;:::i;:::-;43251:74;;43206:129;43374:2;43400:64;43456:7;43447:6;43436:9;43432:22;43400:64;:::i;:::-;43390:74;;43345:129;42818:663;;;;;:::o

Swarm Source

ipfs://ab26740498433227bafb022697da1f902e0f6d27a52526c49572f2a2403730e8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.