ETH Price: $2,470.40 (+0.60%)
 

Overview

Max Total Supply

1,000,000,000 GYM

Holders

13

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
GYM

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-01
*/

/*

Twitter:https://twitter.com/Web3Gym

*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

// 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 subtraction 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;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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
    );

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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.openzeppelin.com/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 _name;
    string _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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

pragma solidity ^0.8.19;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint 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 (uint);

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint 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 (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    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 (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    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(uint) external view returns (address pair);

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    bool private isSwapping;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxPerTransaction;
    uint256 public swapTokensAtAmount;
    uint256 public maxAllowedPerWallet;

    uint256 public percentForLPBurn = 1;
    bool public isLPBurningEnabled = false;
    uint256 public lpBurnFrequency = 1360000000000 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 43210 minutes;
    uint256 public lastManualLpBurnTime;

    bool public isLimitEnabled = true;
    bool public isTradingActive = true;
    bool public isSwapEnabled = true;

    mapping(address => uint256) private _holderLastTransferTimestamp;
    bool public transferDelayEnabled = true;

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

    uint256 public sellTax;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public buyTax;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // blacklist
    mapping(address => bool) public blacklists;

    // 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;

    constructor() ERC20("Web3Gym", "GYM") {
        // Uniswap
        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);

        // Taxes
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 7;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 25;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        // AT LAUNCH - Only allow 0.75% of total supply per transaction
        maxPerTransaction = (totalSupply * 69) / 10000;
        maxAllowedPerWallet = (totalSupply * 69) / 10000; // 0.75%
        swapTokensAtAmount = (totalSupply * 1) / 10000;

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

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

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);
        _mint(msg.sender, totalSupply);
    }

    // once enabled, can never be turned off
    function beginTrading() external onlyOwner {
        isTradingActive = true;
        isSwapEnabled = true;
        lastLpBurnTime = block.timestamp;
    }

    receive() external payable {}

    function blacklist(
        address[] calldata _addresses,
        bool _isBlacklisting
    ) external onlyOwner {
        for (uint i = 0; i < _addresses.length; i++) {
            blacklists[_addresses[i]] = _isBlacklisting;
        }
    }

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

    // disable Transfer delay - cannot be reenabled
    function removeTransferDelay() 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() * 10) / 1000,
            "Swap amount cannot be higher than 1% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxBuy(
        uint256 maxPerTx,
        uint256 maxPerWallet
    ) external onlyOwner {
        require(
            maxPerTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxPerTransaction lower than 0.1%"
        );
        maxPerTransaction = maxPerTx * (10 ** 18);

        require(
            maxPerWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxAllowedPerWallet lower than 0.5%"
        );
        maxAllowedPerWallet = maxPerWallet * (10 ** 18);
    }

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

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

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

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

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

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

    function updateTaxes(uint256 buy, uint256 sell) external onlyOwner {
        sellDevFee = sell;
        buyDevFee = buy;
        sellTax = sellMarketingFee + sellLiquidityFee + sellDevFee;
        buyTax = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTax <= 25, "Must keep fees at 25% or less");
        require(sellTax <= 99, "Must keep fees at 99% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[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;
    }

    function updateMarketingWallet(
        address newMarketingWallet
    ) external onlyOwner {
        marketingWallet = newMarketingWallet;
    }

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

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

    event BoughtEarly(address indexed sniper);

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

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

        if (isLimitEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !isSwapping
            ) {
                if (!isTradingActive) {
                    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 <= maxPerTransaction,
                        "Buy transfer amount exceeds the maxPerTransaction."
                    );
                    require(
                        amount + balanceOf(to) <= maxAllowedPerWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxPerTransaction,
                        "Sell transfer amount exceeds the maxPerTransaction."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxAllowedPerWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            isSwapping = false;
        }

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

        bool takeFee = !isSwapping;

        // 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] && sellTax > 0) {
                fees = amount.mul(sellTax).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTax;
                tokensForDev += (fees * sellDevFee) / sellTax;
                tokensForMarketing += (fees * sellMarketingFee) / sellTax;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTax > 0) {
                fees = amount.mul(buyTax).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTax;
                tokensForDev += (fees * buyDevFee) / buyTax;
                tokensForMarketing += (fees * buyMarketingFee) / buyTax;
            }

            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 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;
        isLPBurningEnabled = _Enabled;
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

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

    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();
        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();
        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":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","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":[{"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":"isLPBurningEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingActive","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":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxAllowedPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"updateMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b556000600c60006101000a81548160ff02191690831515021790555065013ca6512000600d5562278f58600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000ae57600080fd5b506040518060400160405280600781526020017f5765623347796d000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47594d000000000000000000000000000000000000000000000000000000000081525081600390816200012c919062000c89565b5080600490816200013e919062000c89565b5050506200016162000155620005de60201b60201c565b620005e660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200018d816001620006ac60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000233919062000dda565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c1919062000dda565b6040518363ffffffff1660e01b8152600401620002e092919062000e1d565b6020604051808303816000875af115801562000300573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000326919062000dda565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036e60a0516001620006ac60201b60201c565b6200038360a05160016200071760201b60201c565b60008060006007905060008060006019905060006b033b2e3c9fd0803ce80000009050612710604582620003b8919062000e79565b620003c4919062000ef3565b600881905550612710604582620003dc919062000e79565b620003e8919062000ef3565b600a8190555061271060018262000400919062000e79565b6200040c919062000ef3565b60098190555086601c8190555085601d8190555084601e81905550601e54601d54601c546200043c919062000f2b565b62000448919062000f2b565b601b81905550836018819055508260198190555081601a81905550601a5460195460185462000478919062000f2b565b62000484919062000f2b565b6017819055506200049a6200077260201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ea6200077260201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054c6200053e6200077260201b60201c565b60016200079c60201b60201c565b6200055f3060016200079c60201b60201c565b6200057461dead60016200079c60201b60201c565b62000596620005886200077260201b60201c565b6001620006ac60201b60201c565b620005a9306001620006ac60201b60201c565b620005be61dead6001620006ac60201b60201c565b620005d033826200080760201b60201c565b505050505050505062001089565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006bc6200097460201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007ac6200097460201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000879576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008709062000fc7565b60405180910390fd5b6200088d6000838362000a0560201b60201c565b8060026000828254620008a1919062000f2b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000954919062000ffa565b60405180910390a3620009706000838362000a0a60201b60201c565b5050565b62000984620005de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009aa6200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fa9062001067565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9157607f821691505b60208210810362000aa75762000aa662000a49565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ad2565b62000b1d868362000ad2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b6a62000b6462000b5e8462000b35565b62000b3f565b62000b35565b9050919050565b6000819050919050565b62000b868362000b49565b62000b9e62000b958262000b71565b84845462000adf565b825550505050565b600090565b62000bb562000ba6565b62000bc281848462000b7b565b505050565b5b8181101562000bea5762000bde60008262000bab565b60018101905062000bc8565b5050565b601f82111562000c395762000c038162000aad565b62000c0e8462000ac2565b8101602085101562000c1e578190505b62000c3662000c2d8562000ac2565b83018262000bc7565b50505b505050565b600082821c905092915050565b600062000c5e6000198460080262000c3e565b1980831691505092915050565b600062000c79838362000c4b565b9150826002028217905092915050565b62000c948262000a0f565b67ffffffffffffffff81111562000cb05762000caf62000a1a565b5b62000cbc825462000a78565b62000cc982828562000bee565b600060209050601f83116001811462000d01576000841562000cec578287015190505b62000cf8858262000c6b565b86555062000d68565b601f19841662000d118662000aad565b60005b8281101562000d3b5784890151825560018201915060208501945060208101905062000d14565b8683101562000d5b578489015162000d57601f89168262000c4b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000da28262000d75565b9050919050565b62000db48162000d95565b811462000dc057600080fd5b50565b60008151905062000dd48162000da9565b92915050565b60006020828403121562000df35762000df262000d70565b5b600062000e038482850162000dc3565b91505092915050565b62000e178162000d95565b82525050565b600060408201905062000e34600083018562000e0c565b62000e43602083018462000e0c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e868262000b35565b915062000e938362000b35565b925082820262000ea38162000b35565b9150828204841483151762000ebd5762000ebc62000e4a565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f008262000b35565b915062000f0d8362000b35565b92508262000f205762000f1f62000ec4565b5b828204905092915050565b600062000f388262000b35565b915062000f458362000b35565b925082820190508082111562000f605762000f5f62000e4a565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000faf601f8362000f66565b915062000fbc8262000f77565b602082019050919050565b6000602082019050818103600083015262000fe28162000fa0565b9050919050565b62000ff48162000b35565b82525050565b600060208201905062001011600083018462000fe9565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200104f60208362000f66565b91506200105c8262001017565b602082019050919050565b60006020820190508181036000830152620010828162001040565b9050919050565b60805160a05161570862001111600039600081816113400152818161184f01528181611ff8015281816120af015281816120dc015281816128dc0152818161395201528181613a0b0152613a380152600081816111650152818161288401528181613b8201528181613c6301528181613c8a01528181613d260152613d4d01526157086000f3fe6080604052600436106103dd5760003560e01c80638ea5220f116101fd578063c17b5b8c11610118578063db05e5cb116100ab578063f2fde38b1161007a578063f2fde38b14610ebc578063f637434214610ee5578063f8686f0714610f10578063fa554d1f14610f3b578063fe72b27a14610f66576103e4565b8063db05e5cb14610dfe578063dd62ed3e14610e29578063e2f4560514610e66578063f11a24d314610e91576103e4565b8063c997eb8d116100e7578063c997eb8d14610d42578063cc1776d314610d6b578063d257b34f14610d96578063daf4f66e14610dd3576103e4565b8063c17b5b8c14610cac578063c408c24514610cd5578063c53d4d5314610cec578063c876d0b914610d17576103e4565b8063a0d82dc511610190578063aacebbe31161015f578063aacebbe314610bf4578063b62496f514610c1d578063bd58de6314610c5a578063c024666814610c83576103e4565b8063a0d82dc514610b24578063a457c2d714610b4f578063a4c82a0014610b8c578063a9059cbb14610bb7576103e4565b80639a7a23d6116101cc5780639a7a23d614610a7a5780639c3b4fdc14610aa35780639ec22c0e14610ace5780639fccce3214610af9576103e4565b80638ea5220f146109d057806392136913146109fb578063924de9b714610a2657806395d89b4114610a4f576103e4565b8063313ce567116102f857806370a082311161028b57806375f0a8741161025a57806375f0a874146108fd5780637b3c1030146109285780637bce5a04146109515780638095d5641461097c5780638da5cb5b146109a5576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab5780637571336a146108d4576103e4565b80634b980d67116102c75780634b980d67146107995780634f7041a5146107c45780634fbee193146107ef57806369a926a81461082c576103e4565b8063313ce567146106db578063351a964d14610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b9190613e8c565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613f4c565b611035565b6040516104489190613fa7565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fc2565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614002565b611144565b6040516104ae9190613fa7565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d9919061408e565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614002565b611187565b6040516105169190613fa7565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b60405161054191906140b8565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614002565b6111b1565b005b34801561057f57600080fd5b506105886111fd565b60405161059591906140b8565b60405180910390f35b3480156105aa57600080fd5b506105b3611203565b6040516105c091906140b8565b60405180910390f35b3480156105d557600080fd5b506105de611209565b6040516105eb91906140b8565b60405180910390f35b34801561060057600080fd5b5061060961120f565b60405161061691906140b8565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906140d3565b611215565b005b34801561065457600080fd5b5061066f600480360381019061066a9190614100565b6112b0565b60405161067c9190613fa7565b60405180910390f35b34801561069157600080fd5b5061069a6112df565b6040516106a79190614162565b60405180910390f35b3480156106bc57600080fd5b506106c56112e5565b6040516106d291906140b8565b60405180910390f35b3480156106e757600080fd5b506106f06112eb565b6040516106fd9190614199565b60405180910390f35b34801561071257600080fd5b5061071b6112f4565b6040516107289190613fa7565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190613f4c565b611307565b6040516107659190613fa7565b60405180910390f35b34801561077a57600080fd5b5061078361133e565b6040516107909190614162565b60405180910390f35b3480156107a557600080fd5b506107ae611362565b6040516107bb91906140b8565b60405180910390f35b3480156107d057600080fd5b506107d9611368565b6040516107e691906140b8565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190614002565b61136e565b6040516108239190613fa7565b60405180910390f35b34801561083857600080fd5b506108416113c4565b60405161084e91906140b8565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614002565b6113ca565b60405161088b91906140b8565b60405180910390f35b3480156108a057600080fd5b506108a9611412565b005b3480156108b757600080fd5b506108d260048036038101906108cd91906141e0565b611426565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614233565b6114f2565b005b34801561090957600080fd5b50610912611555565b60405161091f9190614162565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190613fc2565b61157b565b005b34801561095d57600080fd5b506109666116a7565b60405161097391906140b8565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614273565b6116ad565b005b3480156109b157600080fd5b506109ba611738565b6040516109c79190614162565b60405180910390f35b3480156109dc57600080fd5b506109e5611762565b6040516109f29190614162565b60405180910390f35b348015610a0757600080fd5b50610a10611788565b604051610a1d91906140b8565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a4891906142c6565b61178e565b005b348015610a5b57600080fd5b50610a646117b3565b604051610a719190613e8c565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614233565b611845565b005b348015610aaf57600080fd5b50610ab86118e9565b604051610ac591906140b8565b60405180910390f35b348015610ada57600080fd5b50610ae36118ef565b604051610af091906140b8565b60405180910390f35b348015610b0557600080fd5b50610b0e6118f5565b604051610b1b91906140b8565b60405180910390f35b348015610b3057600080fd5b50610b396118fb565b604051610b4691906140b8565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b719190613f4c565b611901565b604051610b839190613fa7565b60405180910390f35b348015610b9857600080fd5b50610ba1611978565b604051610bae91906140b8565b60405180910390f35b348015610bc357600080fd5b50610bde6004803603810190610bd99190613f4c565b61197e565b604051610beb9190613fa7565b60405180910390f35b348015610c0057600080fd5b50610c1b6004803603810190610c169190614002565b6119a1565b005b348015610c2957600080fd5b50610c446004803603810190610c3f9190614002565b6119ed565b604051610c519190613fa7565b60405180910390f35b348015610c6657600080fd5b50610c816004803603810190610c7c91906140d3565b611a0d565b005b348015610c8f57600080fd5b50610caa6004803603810190610ca59190614233565b611aa8565b005b348015610cb857600080fd5b50610cd36004803603810190610cce9190614273565b611b0b565b005b348015610ce157600080fd5b50610cea611b96565b005b348015610cf857600080fd5b50610d01611bdd565b604051610d0e9190613fa7565b60405180910390f35b348015610d2357600080fd5b50610d2c611bf0565b604051610d399190613fa7565b60405180910390f35b348015610d4e57600080fd5b50610d696004803603810190610d649190614358565b611c03565b005b348015610d7757600080fd5b50610d80611cb0565b604051610d8d91906140b8565b60405180910390f35b348015610da257600080fd5b50610dbd6004803603810190610db891906140d3565b611cb6565b604051610dca9190613fa7565b60405180910390f35b348015610ddf57600080fd5b50610de8611d97565b604051610df59190613fa7565b60405180910390f35b348015610e0a57600080fd5b50610e13611daa565b604051610e209190613fa7565b60405180910390f35b348015610e3557600080fd5b50610e506004803603810190610e4b91906143b8565b611dd6565b604051610e5d91906140b8565b60405180910390f35b348015610e7257600080fd5b50610e7b611e5d565b604051610e8891906140b8565b60405180910390f35b348015610e9d57600080fd5b50610ea6611e63565b604051610eb391906140b8565b60405180910390f35b348015610ec857600080fd5b50610ee36004803603810190610ede9190614002565b611e69565b005b348015610ef157600080fd5b50610efa611eec565b604051610f0791906140b8565b60405180910390f35b348015610f1c57600080fd5b50610f25611ef2565b604051610f329190613fa7565b60405180910390f35b348015610f4757600080fd5b50610f50611f1e565b604051610f5d9190613fa7565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f8891906140d3565b611f31565b604051610f9a9190613fa7565b60405180910390f35b606060038054610fb290614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614427565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b600080611040612169565b905061104d818585612171565b600191505092915050565b61106061233a565b80601a8190555081601e81905550601a546019546018546110819190614487565b61108b9190614487565b601781905550601e54601d54601c546110a49190614487565b6110ae9190614487565b601b819055506019601b5411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614507565b60405180910390fd5b60636017541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614573565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b961233a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b60155481565b60145481565b61121d61233a565b670de0b6b3a76400006103e860016112336111a7565b61123d9190614593565b6112479190614604565b6112519190614604565b811015611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906146a7565b60405180910390fd5b670de0b6b3a7640000816112a79190614593565b60088190555050565b6000806112bb612169565b90506112c88582856123b8565b6112d3858585612444565b60019150509392505050565b61dead81565b600d5481565b60006012905090565b601160029054906101000a900460ff1681565b600080611312612169565b90506113338185856113248589611dd6565b61132e9190614487565b612171565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60085481565b601b5481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61141a61233a565b61142460006132bc565b565b61142e61233a565b610258831015611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90614739565b60405180910390fd5b6103e88211158015611486575060008210155b6114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc906147cb565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6114fa61233a565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61158361233a565b670de0b6b3a76400006103e860016115996111a7565b6115a39190614593565b6115ad9190614604565b6115b79190614604565b8210156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906146a7565b60405180910390fd5b670de0b6b3a76400008261160d9190614593565b600881905550670de0b6b3a76400006103e860056116296111a7565b6116339190614593565b61163d9190614604565b6116479190614604565b811015611689576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116809061485d565b60405180910390fd5b670de0b6b3a76400008161169d9190614593565b600a819055505050565b601c5481565b6116b561233a565b82601c8190555081601d8190555080601e81905550601e54601d54601c546116dd9190614487565b6116e79190614487565b601b819055506019601b541115611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90614507565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61179661233a565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546117c290614427565b80601f01602080910402602001604051908101604052809291908181526020018280546117ee90614427565b801561183b5780601f106118105761010080835404028352916020019161183b565b820191906000526020600020905b81548152906001019060200180831161181e57829003601f168201915b5050505050905090565b61184d61233a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906148ef565b60405180910390fd5b6118e58282613382565b5050565b601e5481565b60105481565b60165481565b601a5481565b60008061190c612169565b9050600061191a8286611dd6565b90508381101561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614981565b60405180910390fd5b61196c8286868403612171565b60019250505092915050565b600e5481565b600080611989612169565b9050611996818585612444565b600191505092915050565b6119a961233a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b611a1561233a565b670de0b6b3a76400006103e86005611a2b6111a7565b611a359190614593565b611a3f9190614604565b611a499190614604565b811015611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a829061485d565b60405180910390fd5b670de0b6b3a764000081611a9f9190614593565b600a8190555050565b611ab061233a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611b1361233a565b826018819055508160198190555080601a81905550601a54601954601854611b3b9190614487565b611b459190614487565b60178190555060636017541115611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614573565b60405180910390fd5b505050565b611b9e61233a565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601160019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b611c0b61233a565b60005b83839050811015611caa578160216000868685818110611c3157611c306149a1565b5b9050602002016020810190611c469190614002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ca2906149d0565b915050611c0e565b50505050565b60175481565b6000611cc061233a565b620186a06001611cce6111a7565b611cd89190614593565b611ce29190614604565b821015611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614a8a565b60405180910390fd5b6103e8600a611d316111a7565b611d3b9190614593565b611d459190614604565b821115611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614b1c565b60405180910390fd5b8160098190555060019050919050565b601160009054906101000a900460ff1681565b6000611db461233a565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b601d5481565b611e7161233a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790614bae565b60405180910390fd5b611ee9816132bc565b50565b60195481565b6000611efc61233a565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600c60009054906101000a900460ff1681565b6000611f3b61233a565b600f54601054611f4b9190614487565b4211611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614c1a565b60405180910390fd5b6103e8821115611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890614cac565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016120339190614162565b602060405180830381865afa158015612050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120749190614ce1565b9050600061209f61271061209186856133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060008111156120d8576120d77f000000000000000000000000000000000000000000000000000000000000000061dead83613409565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561214557600080fd5b505af1158015612159573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614e12565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d91906140b8565b60405180910390a3505050565b612342612169565b73ffffffffffffffffffffffffffffffffffffffff16612360611738565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614e7e565b60405180910390fd5b565b60006123c48484611dd6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461243e5781811015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eea565b60405180910390fd5b61243d8484848403612171565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061500e565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c65750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061507a565b60405180910390fd5b6000810361261e5761261983836000613409565b6132b7565b601160009054906101000a900460ff1615612ce15761263b611738565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a95750612679611738565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127355750600560149054906101000a900460ff16155b15612ce057601160019054906101000a900460ff1661282f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127ef5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906150e6565b60405180910390fd5b5b601360009054906101000a900460ff16156129f75761284c611738565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128d357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129f65743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061519e565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b4157600854811115612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90615230565b60405180910390fd5b600a54612af0836113ca565b82612afb9190614487565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b339061529c565b60405180910390fd5b612cdf565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be45750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3357600854811115612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061532e565b60405180910390fd5b612cde565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cdd57600a54612c90836113ca565b82612c9b9190614487565b1115612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd39061529c565b60405180910390fd5b5b5b5b5b5b6000612cec306113ca565b905060006009548210159050808015612d115750601160029054906101000a900460ff165b8015612d2a5750600560149054906101000a900460ff16155b8015612d805750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dd65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e2c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e70576001600560146101000a81548160ff021916908315150217905550612e5461367f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ed65750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612eee5750600c60009054906101000a900460ff165b8015612f095750600d54600e54612f059190614487565b4210155b8015612f5f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e57612f6c613929565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b600081156132a757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601754115b1561315e576130be60646130b0601754886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601754601954826130d19190614593565b6130db9190614604565b601560008282546130ec9190614487565b92505081905550601754601a54826131049190614593565b61310e9190614604565b6016600082825461311f9190614487565b92505081905550601754601854826131379190614593565b6131419190614604565b601460008282546131529190614487565b92505081905550613283565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b957506000601b54115b15613282576131e660646131d8601b54886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601b54601d54826131f99190614593565b6132039190614604565b601560008282546132149190614487565b92505081905550601b54601e548261322c9190614593565b6132369190614604565b601660008282546132479190614487565b92505081905550601b54601c548261325f9190614593565b6132699190614604565b6014600082825461327a9190614487565b925050819055505b5b600081111561329857613297873083613409565b5b80856132a4919061534e565b94505b6132b2878787613409565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600081836133eb9190614593565b905092915050565b600081836134019190614604565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346f90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de9061500e565b60405180910390fd5b6134f2838383613ac3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f906153f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366691906140b8565b60405180910390a3613679848484613ac8565b50505050565b600061368a306113ca565b905060006016546014546015546136a19190614487565b6136ab9190614487565b90506000808314806136bd5750600082145b156136ca57505050613927565b60146009546136d99190614593565b8311156136f25760146009546136ef9190614593565b92505b6000600283601554866137059190614593565b61370f9190614604565b6137199190614604565b905060006137308286613acd90919063ffffffff16565b9050600047905061374082613ae3565b60006137558247613acd90919063ffffffff16565b9050600061378087613772601454856133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060006137ab8861379d601654866133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060008183856137bc919061534e565b6137c6919061534e565b9050600060158190555060006014819055506000601681905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382690615445565b60006040518083038185875af1925050503d8060008114613863576040519150601f19603f3d011682016040523d82523d6000602084013e613868565b606091505b50508098505060008711801561387e5750600081115b1561388e5761388d8782613d20565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138d490615445565b60006040518083038185875af1925050503d8060008114613911576040519150601f19603f3d011682016040523d82523d6000602084013e613916565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161398d9190614162565b602060405180830381865afa1580156139aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ce9190614ce1565b905060006139fb6127106139ed600b54856133dd90919063ffffffff16565b6133f390919063ffffffff16565b90506000811115613a3457613a337f000000000000000000000000000000000000000000000000000000000000000061dead83613409565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b60008183613adb919061534e565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61545a565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b456149a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c0f919061549e565b81600181518110613c2357613c226149a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c88307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cea9594939291906155c4565b600060405180830381600087803b158015613d0457600080fd5b505af1158015613d18573d6000803e3d6000fd5b505050505050565b613d4b307f000000000000000000000000000000000000000000000000000000000000000084612171565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613db29695949392919061561e565b60606040518083038185885af1158015613dd0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613df5919061567f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e36578082015181840152602081019050613e1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e5e82613dfc565b613e688185613e07565b9350613e78818560208601613e18565b613e8181613e42565b840191505092915050565b60006020820190508181036000830152613ea68184613e53565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ee382613eb8565b9050919050565b613ef381613ed8565b8114613efe57600080fd5b50565b600081359050613f1081613eea565b92915050565b6000819050919050565b613f2981613f16565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b60008060408385031215613f6357613f62613eae565b5b6000613f7185828601613f01565b9250506020613f8285828601613f37565b9150509250929050565b60008115159050919050565b613fa181613f8c565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b60008060408385031215613fd957613fd8613eae565b5b6000613fe785828601613f37565b9250506020613ff885828601613f37565b9150509250929050565b60006020828403121561401857614017613eae565b5b600061402684828501613f01565b91505092915050565b6000819050919050565b600061405461404f61404a84613eb8565b61402f565b613eb8565b9050919050565b600061406682614039565b9050919050565b60006140788261405b565b9050919050565b6140888161406d565b82525050565b60006020820190506140a3600083018461407f565b92915050565b6140b281613f16565b82525050565b60006020820190506140cd60008301846140a9565b92915050565b6000602082840312156140e9576140e8613eae565b5b60006140f784828501613f37565b91505092915050565b60008060006060848603121561411957614118613eae565b5b600061412786828701613f01565b935050602061413886828701613f01565b925050604061414986828701613f37565b9150509250925092565b61415c81613ed8565b82525050565b60006020820190506141776000830184614153565b92915050565b600060ff82169050919050565b6141938161417d565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6141bd81613f8c565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b6000806000606084860312156141f9576141f8613eae565b5b600061420786828701613f37565b935050602061421886828701613f37565b9250506040614229868287016141cb565b9150509250925092565b6000806040838503121561424a57614249613eae565b5b600061425885828601613f01565b9250506020614269858286016141cb565b9150509250929050565b60008060006060848603121561428c5761428b613eae565b5b600061429a86828701613f37565b93505060206142ab86828701613f37565b92505060406142bc86828701613f37565b9150509250925092565b6000602082840312156142dc576142db613eae565b5b60006142ea848285016141cb565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112614318576143176142f3565b5b8235905067ffffffffffffffff811115614335576143346142f8565b5b602083019150836020820283011115614351576143506142fd565b5b9250929050565b60008060006040848603121561437157614370613eae565b5b600084013567ffffffffffffffff81111561438f5761438e613eb3565b5b61439b86828701614302565b935093505060206143ae868287016141cb565b9150509250925092565b600080604083850312156143cf576143ce613eae565b5b60006143dd85828601613f01565b92505060206143ee85828601613f01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061443f57607f821691505b602082108103614452576144516143f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613f16565b915061449d83613f16565b92508282019050808211156144b5576144b4614458565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144f1601d83613e07565b91506144fc826144bb565b602082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b600061455d601d83613e07565b915061456882614527565b602082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b600061459e82613f16565b91506145a983613f16565b92508282026145b781613f16565b915082820484148315176145ce576145cd614458565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061460f82613f16565b915061461a83613f16565b92508261462a576146296145d5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760008201527f6572207468616e20302e31250000000000000000000000000000000000000000602082015250565b6000614691602c83613e07565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614723603383613e07565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006147b5603083613e07565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60008201527f6f776572207468616e20302e3525000000000000000000000000000000000000602082015250565b6000614847602e83613e07565b9150614852826147eb565b604082019050919050565b600060208201905081810360008301526148768161483a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006148d9603983613e07565b91506148e48261487d565b604082019050919050565b60006020820190508181036000830152614908816148cc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061496b602583613e07565b91506149768261490f565b604082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006149db82613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a0d57614a0c614458565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614a74603583613e07565b9150614a7f82614a18565b604082019050919050565b60006020820190508181036000830152614aa381614a67565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614b06603283613e07565b9150614b1182614aaa565b604082019050919050565b60006020820190508181036000830152614b3581614af9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b98602683613e07565b9150614ba382614b3c565b604082019050919050565b60006020820190508181036000830152614bc781614b8b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614c04602083613e07565b9150614c0f82614bce565b602082019050919050565b60006020820190508181036000830152614c3381614bf7565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614c96602a83613e07565b9150614ca182614c3a565b604082019050919050565b60006020820190508181036000830152614cc581614c89565b9050919050565b600081519050614cdb81613f20565b92915050565b600060208284031215614cf757614cf6613eae565b5b6000614d0584828501614ccc565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602483613e07565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602283613e07565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e68602083613e07565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ed4601d83613e07565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f66602583613e07565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602383613e07565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000615064600b83613e07565b915061506f8261502e565b602082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d0601683613e07565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615188604983613e07565b915061519382615106565b606082019050919050565b600060208201905081810360008301526151b78161517b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785065725472616e73616374696f6e2e0000000000000000000000000000602082015250565b600061521a603283613e07565b9150615225826151be565b604082019050919050565b600060208201905081810360008301526152498161520d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615286601383613e07565b915061529182615250565b602082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785065725472616e73616374696f6e2e00000000000000000000000000602082015250565b6000615318603383613e07565b9150615323826152bc565b604082019050919050565b600060208201905081810360008301526153478161530b565b9050919050565b600061535982613f16565b915061536483613f16565b925082820390508181111561537c5761537b614458565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153de602683613e07565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600081905092915050565b50565b600061542f600083615414565b915061543a8261541f565b600082019050919050565b600061545082615422565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061549881613eea565b92915050565b6000602082840312156154b4576154b3613eae565b5b60006154c284828501615489565b91505092915050565b6000819050919050565b60006154f06154eb6154e6846154cb565b61402f565b613f16565b9050919050565b615500816154d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553b81613ed8565b82525050565b600061554d8383615532565b60208301905092915050565b6000602082019050919050565b600061557182615506565b61557b8185615511565b935061558683615522565b8060005b838110156155b757815161559e8882615541565b97506155a983615559565b92505060018101905061558a565b5085935050505092915050565b600060a0820190506155d960008301886140a9565b6155e660208301876154f7565b81810360408301526155f88186615566565b90506156076060830185614153565b61561460808301846140a9565b9695505050505050565b600060c0820190506156336000830189614153565b61564060208301886140a9565b61564d60408301876154f7565b61565a60608301866154f7565b6156676080830185614153565b61567460a08301846140a9565b979650505050505050565b60008060006060848603121561569857615697613eae565b5b60006156a686828701614ccc565b93505060206156b786828701614ccc565b92505060406156c886828701614ccc565b915050925092509256fea26469706673582212209f697a386bb14fed58563228805bd298b94a3ab90cef67cbbc3fd7d6869bd30264736f6c63430008130033

Deployed Bytecode

0x6080604052600436106103dd5760003560e01c80638ea5220f116101fd578063c17b5b8c11610118578063db05e5cb116100ab578063f2fde38b1161007a578063f2fde38b14610ebc578063f637434214610ee5578063f8686f0714610f10578063fa554d1f14610f3b578063fe72b27a14610f66576103e4565b8063db05e5cb14610dfe578063dd62ed3e14610e29578063e2f4560514610e66578063f11a24d314610e91576103e4565b8063c997eb8d116100e7578063c997eb8d14610d42578063cc1776d314610d6b578063d257b34f14610d96578063daf4f66e14610dd3576103e4565b8063c17b5b8c14610cac578063c408c24514610cd5578063c53d4d5314610cec578063c876d0b914610d17576103e4565b8063a0d82dc511610190578063aacebbe31161015f578063aacebbe314610bf4578063b62496f514610c1d578063bd58de6314610c5a578063c024666814610c83576103e4565b8063a0d82dc514610b24578063a457c2d714610b4f578063a4c82a0014610b8c578063a9059cbb14610bb7576103e4565b80639a7a23d6116101cc5780639a7a23d614610a7a5780639c3b4fdc14610aa35780639ec22c0e14610ace5780639fccce3214610af9576103e4565b80638ea5220f146109d057806392136913146109fb578063924de9b714610a2657806395d89b4114610a4f576103e4565b8063313ce567116102f857806370a082311161028b57806375f0a8741161025a57806375f0a874146108fd5780637b3c1030146109285780637bce5a04146109515780638095d5641461097c5780638da5cb5b146109a5576103e4565b806370a0823114610857578063715018a614610894578063730c1888146108ab5780637571336a146108d4576103e4565b80634b980d67116102c75780634b980d67146107995780634f7041a5146107c45780634fbee193146107ef57806369a926a81461082c576103e4565b8063313ce567146106db578063351a964d14610706578063395093511461073157806349bd5a5e1461076e576103e4565b8063184c16c511610370578063203e727e1161033f578063203e727e1461061f57806323b872dd1461064857806327c8f835146106855780632c3e486c146106b0576103e4565b8063184c16c514610573578063199ffc721461059e5780631a8145bb146105c95780631f3fed8f146105f4576103e4565b80631694505e116103ac5780631694505e146104b757806316c02129146104e257806318160ddd1461051f5780631816467f1461054a576103e4565b806306fdde03146103e9578063095ea7b3146104145780631006ee0c1461045157806310d5de531461047a576103e4565b366103e457005b600080fd5b3480156103f557600080fd5b506103fe610fa3565b60405161040b9190613e8c565b60405180910390f35b34801561042057600080fd5b5061043b60048036038101906104369190613f4c565b611035565b6040516104489190613fa7565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fc2565b611058565b005b34801561048657600080fd5b506104a1600480360381019061049c9190614002565b611144565b6040516104ae9190613fa7565b60405180910390f35b3480156104c357600080fd5b506104cc611163565b6040516104d9919061408e565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190614002565b611187565b6040516105169190613fa7565b60405180910390f35b34801561052b57600080fd5b506105346111a7565b60405161054191906140b8565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190614002565b6111b1565b005b34801561057f57600080fd5b506105886111fd565b60405161059591906140b8565b60405180910390f35b3480156105aa57600080fd5b506105b3611203565b6040516105c091906140b8565b60405180910390f35b3480156105d557600080fd5b506105de611209565b6040516105eb91906140b8565b60405180910390f35b34801561060057600080fd5b5061060961120f565b60405161061691906140b8565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906140d3565b611215565b005b34801561065457600080fd5b5061066f600480360381019061066a9190614100565b6112b0565b60405161067c9190613fa7565b60405180910390f35b34801561069157600080fd5b5061069a6112df565b6040516106a79190614162565b60405180910390f35b3480156106bc57600080fd5b506106c56112e5565b6040516106d291906140b8565b60405180910390f35b3480156106e757600080fd5b506106f06112eb565b6040516106fd9190614199565b60405180910390f35b34801561071257600080fd5b5061071b6112f4565b6040516107289190613fa7565b60405180910390f35b34801561073d57600080fd5b5061075860048036038101906107539190613f4c565b611307565b6040516107659190613fa7565b60405180910390f35b34801561077a57600080fd5b5061078361133e565b6040516107909190614162565b60405180910390f35b3480156107a557600080fd5b506107ae611362565b6040516107bb91906140b8565b60405180910390f35b3480156107d057600080fd5b506107d9611368565b6040516107e691906140b8565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190614002565b61136e565b6040516108239190613fa7565b60405180910390f35b34801561083857600080fd5b506108416113c4565b60405161084e91906140b8565b60405180910390f35b34801561086357600080fd5b5061087e60048036038101906108799190614002565b6113ca565b60405161088b91906140b8565b60405180910390f35b3480156108a057600080fd5b506108a9611412565b005b3480156108b757600080fd5b506108d260048036038101906108cd91906141e0565b611426565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190614233565b6114f2565b005b34801561090957600080fd5b50610912611555565b60405161091f9190614162565b60405180910390f35b34801561093457600080fd5b5061094f600480360381019061094a9190613fc2565b61157b565b005b34801561095d57600080fd5b506109666116a7565b60405161097391906140b8565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614273565b6116ad565b005b3480156109b157600080fd5b506109ba611738565b6040516109c79190614162565b60405180910390f35b3480156109dc57600080fd5b506109e5611762565b6040516109f29190614162565b60405180910390f35b348015610a0757600080fd5b50610a10611788565b604051610a1d91906140b8565b60405180910390f35b348015610a3257600080fd5b50610a4d6004803603810190610a4891906142c6565b61178e565b005b348015610a5b57600080fd5b50610a646117b3565b604051610a719190613e8c565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190614233565b611845565b005b348015610aaf57600080fd5b50610ab86118e9565b604051610ac591906140b8565b60405180910390f35b348015610ada57600080fd5b50610ae36118ef565b604051610af091906140b8565b60405180910390f35b348015610b0557600080fd5b50610b0e6118f5565b604051610b1b91906140b8565b60405180910390f35b348015610b3057600080fd5b50610b396118fb565b604051610b4691906140b8565b60405180910390f35b348015610b5b57600080fd5b50610b766004803603810190610b719190613f4c565b611901565b604051610b839190613fa7565b60405180910390f35b348015610b9857600080fd5b50610ba1611978565b604051610bae91906140b8565b60405180910390f35b348015610bc357600080fd5b50610bde6004803603810190610bd99190613f4c565b61197e565b604051610beb9190613fa7565b60405180910390f35b348015610c0057600080fd5b50610c1b6004803603810190610c169190614002565b6119a1565b005b348015610c2957600080fd5b50610c446004803603810190610c3f9190614002565b6119ed565b604051610c519190613fa7565b60405180910390f35b348015610c6657600080fd5b50610c816004803603810190610c7c91906140d3565b611a0d565b005b348015610c8f57600080fd5b50610caa6004803603810190610ca59190614233565b611aa8565b005b348015610cb857600080fd5b50610cd36004803603810190610cce9190614273565b611b0b565b005b348015610ce157600080fd5b50610cea611b96565b005b348015610cf857600080fd5b50610d01611bdd565b604051610d0e9190613fa7565b60405180910390f35b348015610d2357600080fd5b50610d2c611bf0565b604051610d399190613fa7565b60405180910390f35b348015610d4e57600080fd5b50610d696004803603810190610d649190614358565b611c03565b005b348015610d7757600080fd5b50610d80611cb0565b604051610d8d91906140b8565b60405180910390f35b348015610da257600080fd5b50610dbd6004803603810190610db891906140d3565b611cb6565b604051610dca9190613fa7565b60405180910390f35b348015610ddf57600080fd5b50610de8611d97565b604051610df59190613fa7565b60405180910390f35b348015610e0a57600080fd5b50610e13611daa565b604051610e209190613fa7565b60405180910390f35b348015610e3557600080fd5b50610e506004803603810190610e4b91906143b8565b611dd6565b604051610e5d91906140b8565b60405180910390f35b348015610e7257600080fd5b50610e7b611e5d565b604051610e8891906140b8565b60405180910390f35b348015610e9d57600080fd5b50610ea6611e63565b604051610eb391906140b8565b60405180910390f35b348015610ec857600080fd5b50610ee36004803603810190610ede9190614002565b611e69565b005b348015610ef157600080fd5b50610efa611eec565b604051610f0791906140b8565b60405180910390f35b348015610f1c57600080fd5b50610f25611ef2565b604051610f329190613fa7565b60405180910390f35b348015610f4757600080fd5b50610f50611f1e565b604051610f5d9190613fa7565b60405180910390f35b348015610f7257600080fd5b50610f8d6004803603810190610f8891906140d3565b611f31565b604051610f9a9190613fa7565b60405180910390f35b606060038054610fb290614427565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde90614427565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050905090565b600080611040612169565b905061104d818585612171565b600191505092915050565b61106061233a565b80601a8190555081601e81905550601a546019546018546110819190614487565b61108b9190614487565b601781905550601e54601d54601c546110a49190614487565b6110ae9190614487565b601b819055506019601b5411156110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614507565b60405180910390fd5b60636017541115611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790614573565b60405180910390fd5b5050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60216020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b6111b961233a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b60155481565b60145481565b61121d61233a565b670de0b6b3a76400006103e860016112336111a7565b61123d9190614593565b6112479190614604565b6112519190614604565b811015611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906146a7565b60405180910390fd5b670de0b6b3a7640000816112a79190614593565b60088190555050565b6000806112bb612169565b90506112c88582856123b8565b6112d3858585612444565b60019150509392505050565b61dead81565b600d5481565b60006012905090565b601160029054906101000a900460ff1681565b600080611312612169565b90506113338185856113248589611dd6565b61132e9190614487565b612171565b600191505092915050565b7f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494481565b60085481565b601b5481565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61141a61233a565b61142460006132bc565b565b61142e61233a565b610258831015611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90614739565b60405180910390fd5b6103e88211158015611486575060008210155b6114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc906147cb565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b6114fa61233a565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61158361233a565b670de0b6b3a76400006103e860016115996111a7565b6115a39190614593565b6115ad9190614604565b6115b79190614604565b8210156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906146a7565b60405180910390fd5b670de0b6b3a76400008261160d9190614593565b600881905550670de0b6b3a76400006103e860056116296111a7565b6116339190614593565b61163d9190614604565b6116479190614604565b811015611689576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116809061485d565b60405180910390fd5b670de0b6b3a76400008161169d9190614593565b600a819055505050565b601c5481565b6116b561233a565b82601c8190555081601d8190555080601e81905550601e54601d54601c546116dd9190614487565b6116e79190614487565b601b819055506019601b541115611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90614507565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60185481565b61179661233a565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546117c290614427565b80601f01602080910402602001604051908101604052809291908181526020018280546117ee90614427565b801561183b5780601f106118105761010080835404028352916020019161183b565b820191906000526020600020905b81548152906001019060200180831161181e57829003601f168201915b5050505050905090565b61184d61233a565b7f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906148ef565b60405180910390fd5b6118e58282613382565b5050565b601e5481565b60105481565b60165481565b601a5481565b60008061190c612169565b9050600061191a8286611dd6565b90508381101561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690614981565b60405180910390fd5b61196c8286868403612171565b60019250505092915050565b600e5481565b600080611989612169565b9050611996818585612444565b600191505092915050565b6119a961233a565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60226020528060005260406000206000915054906101000a900460ff1681565b611a1561233a565b670de0b6b3a76400006103e86005611a2b6111a7565b611a359190614593565b611a3f9190614604565b611a499190614604565b811015611a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a829061485d565b60405180910390fd5b670de0b6b3a764000081611a9f9190614593565b600a8190555050565b611ab061233a565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611b1361233a565b826018819055508160198190555080601a81905550601a54601954601854611b3b9190614487565b611b459190614487565b60178190555060636017541115611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614573565b60405180910390fd5b505050565b611b9e61233a565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b601160019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b611c0b61233a565b60005b83839050811015611caa578160216000868685818110611c3157611c306149a1565b5b9050602002016020810190611c469190614002565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611ca2906149d0565b915050611c0e565b50505050565b60175481565b6000611cc061233a565b620186a06001611cce6111a7565b611cd89190614593565b611ce29190614604565b821015611d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1b90614a8a565b60405180910390fd5b6103e8600a611d316111a7565b611d3b9190614593565b611d459190614604565b821115611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90614b1c565b60405180910390fd5b8160098190555060019050919050565b601160009054906101000a900460ff1681565b6000611db461233a565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b601d5481565b611e7161233a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed790614bae565b60405180910390fd5b611ee9816132bc565b50565b60195481565b6000611efc61233a565b6000601360006101000a81548160ff0219169083151502179055506001905090565b600c60009054906101000a900460ff1681565b6000611f3b61233a565b600f54601054611f4b9190614487565b4211611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614c1a565b60405180910390fd5b6103e8821115611fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc890614cac565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f4275249446040518263ffffffff1660e01b81526004016120339190614162565b602060405180830381865afa158015612050573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120749190614ce1565b9050600061209f61271061209186856133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060008111156120d8576120d77f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494461dead83613409565b5b60007f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494490508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561214557600080fd5b505af1158015612159573d6000803e3d6000fd5b5050505060019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790614d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614e12565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161232d91906140b8565b60405180910390a3505050565b612342612169565b73ffffffffffffffffffffffffffffffffffffffff16612360611738565b73ffffffffffffffffffffffffffffffffffffffff16146123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90614e7e565b60405180910390fd5b565b60006123c48484611dd6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461243e5781811015612430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242790614eea565b60405180910390fd5b61243d8484848403612171565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612522576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125199061500e565b60405180910390fd5b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156125c65750602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fc9061507a565b60405180910390fd5b6000810361261e5761261983836000613409565b6132b7565b601160009054906101000a900460ff1615612ce15761263b611738565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156126a95750612679611738565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156126e25750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561271c575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127355750600560149054906101000a900460ff16155b15612ce057601160019054906101000a900460ff1661282f57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806127ef5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61282e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612825906150e6565b60405180910390fd5b5b601360009054906101000a900460ff16156129f75761284c611738565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156128d357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561292b57507f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129f65743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106129b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a89061519e565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a9a5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b4157600854811115612ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612adb90615230565b60405180910390fd5b600a54612af0836113ca565b82612afb9190614487565b1115612b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b339061529c565b60405180910390fd5b612cdf565b602260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be45750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3357600854811115612c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c259061532e565b60405180910390fd5b612cde565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612cdd57600a54612c90836113ca565b82612c9b9190614487565b1115612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd39061529c565b60405180910390fd5b5b5b5b5b5b6000612cec306113ca565b905060006009548210159050808015612d115750601160029054906101000a900460ff165b8015612d2a5750600560149054906101000a900460ff16155b8015612d805750602260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612dd65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e2c5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e70576001600560146101000a81548160ff021916908315150217905550612e5461367f565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ed65750602260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612eee5750600c60009054906101000a900460ff165b8015612f095750600d54600e54612f059190614487565b4210155b8015612f5f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e57612f6c613929565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b600081156132a757602260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601754115b1561315e576130be60646130b0601754886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601754601954826130d19190614593565b6130db9190614604565b601560008282546130ec9190614487565b92505081905550601754601a54826131049190614593565b61310e9190614604565b6016600082825461311f9190614487565b92505081905550601754601854826131379190614593565b6131419190614604565b601460008282546131529190614487565b92505081905550613283565b602260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131b957506000601b54115b15613282576131e660646131d8601b54886133dd90919063ffffffff16565b6133f390919063ffffffff16565b9050601b54601d54826131f99190614593565b6132039190614604565b601560008282546132149190614487565b92505081905550601b54601e548261322c9190614593565b6132369190614604565b601660008282546132479190614487565b92505081905550601b54601c548261325f9190614593565b6132699190614604565b6014600082825461327a9190614487565b925050819055505b5b600081111561329857613297873083613409565b5b80856132a4919061534e565b94505b6132b2878787613409565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600081836133eb9190614593565b905092915050565b600081836134019190614604565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346f90614f7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de9061500e565b60405180910390fd5b6134f2838383613ac3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f906153f4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366691906140b8565b60405180910390a3613679848484613ac8565b50505050565b600061368a306113ca565b905060006016546014546015546136a19190614487565b6136ab9190614487565b90506000808314806136bd5750600082145b156136ca57505050613927565b60146009546136d99190614593565b8311156136f25760146009546136ef9190614593565b92505b6000600283601554866137059190614593565b61370f9190614604565b6137199190614604565b905060006137308286613acd90919063ffffffff16565b9050600047905061374082613ae3565b60006137558247613acd90919063ffffffff16565b9050600061378087613772601454856133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060006137ab8861379d601654866133dd90919063ffffffff16565b6133f390919063ffffffff16565b905060008183856137bc919061534e565b6137c6919061534e565b9050600060158190555060006014819055506000601681905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161382690615445565b60006040518083038185875af1925050503d8060008114613863576040519150601f19603f3d011682016040523d82523d6000602084013e613868565b606091505b50508098505060008711801561387e5750600081115b1561388e5761388d8782613d20565b5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516138d490615445565b60006040518083038185875af1925050503d8060008114613911576040519150601f19603f3d011682016040523d82523d6000602084013e613916565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f4275249446040518263ffffffff1660e01b815260040161398d9190614162565b602060405180830381865afa1580156139aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ce9190614ce1565b905060006139fb6127106139ed600b54856133dd90919063ffffffff16565b6133f390919063ffffffff16565b90506000811115613a3457613a337f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494461dead83613409565b5b60007f0000000000000000000000000edb01f2d5dfa31a75ebf062295f09f42752494490508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613aa157600080fd5b505af1158015613ab5573d6000803e3d6000fd5b505050506001935050505090565b505050565b505050565b60008183613adb919061534e565b905092915050565b6000600267ffffffffffffffff811115613b0057613aff61545a565b5b604051908082528060200260200182016040528015613b2e5781602001602082028036833780820191505090505b5090503081600081518110613b4657613b456149a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c0f919061549e565b81600181518110613c2357613c226149a1565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613cea9594939291906155c4565b600060405180830381600087803b158015613d0457600080fd5b505af1158015613d18573d6000803e3d6000fd5b505050505050565b613d4b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612171565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613db29695949392919061561e565b60606040518083038185885af1158015613dd0573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613df5919061567f565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e36578082015181840152602081019050613e1b565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e5e82613dfc565b613e688185613e07565b9350613e78818560208601613e18565b613e8181613e42565b840191505092915050565b60006020820190508181036000830152613ea68184613e53565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613ee382613eb8565b9050919050565b613ef381613ed8565b8114613efe57600080fd5b50565b600081359050613f1081613eea565b92915050565b6000819050919050565b613f2981613f16565b8114613f3457600080fd5b50565b600081359050613f4681613f20565b92915050565b60008060408385031215613f6357613f62613eae565b5b6000613f7185828601613f01565b9250506020613f8285828601613f37565b9150509250929050565b60008115159050919050565b613fa181613f8c565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b60008060408385031215613fd957613fd8613eae565b5b6000613fe785828601613f37565b9250506020613ff885828601613f37565b9150509250929050565b60006020828403121561401857614017613eae565b5b600061402684828501613f01565b91505092915050565b6000819050919050565b600061405461404f61404a84613eb8565b61402f565b613eb8565b9050919050565b600061406682614039565b9050919050565b60006140788261405b565b9050919050565b6140888161406d565b82525050565b60006020820190506140a3600083018461407f565b92915050565b6140b281613f16565b82525050565b60006020820190506140cd60008301846140a9565b92915050565b6000602082840312156140e9576140e8613eae565b5b60006140f784828501613f37565b91505092915050565b60008060006060848603121561411957614118613eae565b5b600061412786828701613f01565b935050602061413886828701613f01565b925050604061414986828701613f37565b9150509250925092565b61415c81613ed8565b82525050565b60006020820190506141776000830184614153565b92915050565b600060ff82169050919050565b6141938161417d565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6141bd81613f8c565b81146141c857600080fd5b50565b6000813590506141da816141b4565b92915050565b6000806000606084860312156141f9576141f8613eae565b5b600061420786828701613f37565b935050602061421886828701613f37565b9250506040614229868287016141cb565b9150509250925092565b6000806040838503121561424a57614249613eae565b5b600061425885828601613f01565b9250506020614269858286016141cb565b9150509250929050565b60008060006060848603121561428c5761428b613eae565b5b600061429a86828701613f37565b93505060206142ab86828701613f37565b92505060406142bc86828701613f37565b9150509250925092565b6000602082840312156142dc576142db613eae565b5b60006142ea848285016141cb565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112614318576143176142f3565b5b8235905067ffffffffffffffff811115614335576143346142f8565b5b602083019150836020820283011115614351576143506142fd565b5b9250929050565b60008060006040848603121561437157614370613eae565b5b600084013567ffffffffffffffff81111561438f5761438e613eb3565b5b61439b86828701614302565b935093505060206143ae868287016141cb565b9150509250925092565b600080604083850312156143cf576143ce613eae565b5b60006143dd85828601613f01565b92505060206143ee85828601613f01565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061443f57607f821691505b602082108103614452576144516143f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061449282613f16565b915061449d83613f16565b92508282019050808211156144b5576144b4614458565b5b92915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006144f1601d83613e07565b91506144fc826144bb565b602082019050919050565b60006020820190508181036000830152614520816144e4565b9050919050565b7f4d757374206b656570206665657320617420393925206f72206c657373000000600082015250565b600061455d601d83613e07565b915061456882614527565b602082019050919050565b6000602082019050818103600083015261458c81614550565b9050919050565b600061459e82613f16565b91506145a983613f16565b92508282026145b781613f16565b915082820484148315176145ce576145cd614458565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061460f82613f16565b915061461a83613f16565b92508261462a576146296145d5565b5b828204905092915050565b7f43616e6e6f7420736574206d61785065725472616e73616374696f6e206c6f7760008201527f6572207468616e20302e31250000000000000000000000000000000000000000602082015250565b6000614691602c83613e07565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614723603383613e07565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006147b5603083613e07565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f43616e6e6f7420736574206d6178416c6c6f77656450657257616c6c6574206c60008201527f6f776572207468616e20302e3525000000000000000000000000000000000000602082015250565b6000614847602e83613e07565b9150614852826147eb565b604082019050919050565b600060208201905081810360008301526148768161483a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006148d9603983613e07565b91506148e48261487d565b604082019050919050565b60006020820190508181036000830152614908816148cc565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061496b602583613e07565b91506149768261490f565b604082019050919050565b6000602082019050818103600083015261499a8161495e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006149db82613f16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a0d57614a0c614458565b5b600182019050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614a74603583613e07565b9150614a7f82614a18565b604082019050919050565b60006020820190508181036000830152614aa381614a67565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20312520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614b06603283613e07565b9150614b1182614aaa565b604082019050919050565b60006020820190508181036000830152614b3581614af9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614b98602683613e07565b9150614ba382614b3c565b604082019050919050565b60006020820190508181036000830152614bc781614b8b565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614c04602083613e07565b9150614c0f82614bce565b602082019050919050565b60006020820190508181036000830152614c3381614bf7565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614c96602a83613e07565b9150614ca182614c3a565b604082019050919050565b60006020820190508181036000830152614cc581614c89565b9050919050565b600081519050614cdb81613f20565b92915050565b600060208284031215614cf757614cf6613eae565b5b6000614d0584828501614ccc565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614d6a602483613e07565b9150614d7582614d0e565b604082019050919050565b60006020820190508181036000830152614d9981614d5d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614dfc602283613e07565b9150614e0782614da0565b604082019050919050565b60006020820190508181036000830152614e2b81614def565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e68602083613e07565b9150614e7382614e32565b602082019050919050565b60006020820190508181036000830152614e9781614e5b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614ed4601d83613e07565b9150614edf82614e9e565b602082019050919050565b60006020820190508181036000830152614f0381614ec7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f66602583613e07565b9150614f7182614f0a565b604082019050919050565b60006020820190508181036000830152614f9581614f59565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614ff8602383613e07565b915061500382614f9c565b604082019050919050565b6000602082019050818103600083015261502781614feb565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000615064600b83613e07565b915061506f8261502e565b602082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d0601683613e07565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000615188604983613e07565b915061519382615106565b606082019050919050565b600060208201905081810360008301526151b78161517b565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785065725472616e73616374696f6e2e0000000000000000000000000000602082015250565b600061521a603283613e07565b9150615225826151be565b604082019050919050565b600060208201905081810360008301526152498161520d565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615286601383613e07565b915061529182615250565b602082019050919050565b600060208201905081810360008301526152b581615279565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785065725472616e73616374696f6e2e00000000000000000000000000602082015250565b6000615318603383613e07565b9150615323826152bc565b604082019050919050565b600060208201905081810360008301526153478161530b565b9050919050565b600061535982613f16565b915061536483613f16565b925082820390508181111561537c5761537b614458565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153de602683613e07565b91506153e982615382565b604082019050919050565b6000602082019050818103600083015261540d816153d1565b9050919050565b600081905092915050565b50565b600061542f600083615414565b915061543a8261541f565b600082019050919050565b600061545082615422565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061549881613eea565b92915050565b6000602082840312156154b4576154b3613eae565b5b60006154c284828501615489565b91505092915050565b6000819050919050565b60006154f06154eb6154e6846154cb565b61402f565b613f16565b9050919050565b615500816154d5565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61553b81613ed8565b82525050565b600061554d8383615532565b60208301905092915050565b6000602082019050919050565b600061557182615506565b61557b8185615511565b935061558683615522565b8060005b838110156155b757815161559e8882615541565b97506155a983615559565b92505060018101905061558a565b5085935050505092915050565b600060a0820190506155d960008301886140a9565b6155e660208301876154f7565b81810360408301526155f88186615566565b90506156076060830185614153565b61561460808301846140a9565b9695505050505050565b600060c0820190506156336000830189614153565b61564060208301886140a9565b61564d60408301876154f7565b61565a60608301866154f7565b6156676080830185614153565b61567460a08301846140a9565b979650505050505050565b60008060006060848603121561569857615697613eae565b5b60006156a686828701614ccc565b93505060206156b786828701614ccc565b92505060406156c886828701614ccc565b915050925092509256fea26469706673582212209f697a386bb14fed58563228805bd298b94a3ab90cef67cbbc3fd7d6869bd30264736f6c63430008130033

Deployed Bytecode Sourcemap

38744:19192:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16548:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18965:226;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46353:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40179:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38817:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40269:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17668:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47504:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39388:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39202:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39770:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39730;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44602:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19771:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38920:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39289:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17510:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39570:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20475:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38875:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39080:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39985:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47615:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39159:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17839:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9907:103;;;;;;;;;;;;;:::i;:::-;;53980:560;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45171:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39010:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44058:536;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40013:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45546:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9259:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39047:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39875:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45436:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16767:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46895:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40087:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39445:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39810:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39951:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21241:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39350:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18188:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47347:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40469:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44881:282;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46755:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45945:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42677:158;;;;;;;;;;;;;:::i;:::-;;39529:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39682:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42880:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39846:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43570:480;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39489:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43181:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18469:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39119:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40050:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10165:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39913:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43366:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39244:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56923:1010;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16548:100;16602:13;16635:5;16628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16548:100;:::o;18965:226::-;19073:4;19090:13;19106:12;:10;:12::i;:::-;19090:28;;19129:32;19138:5;19145:7;19154:6;19129:8;:32::i;:::-;19179:4;19172:11;;;18965:226;;;;:::o;46353:394::-;9145:13;:11;:13::i;:::-;46444:4:::1;46431:10;:17;;;;46471:3;46459:9;:15;;;;46533:10;;46514:16;;46495;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;46485:7;:58;;;;46599:9;;46581:15;;46563;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;46554:6;:54;;;;46637:2;46627:6;;:12;;46619:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46703:2;46692:7;;:13;;46684:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46353:394:::0;;:::o;40179:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;38817:51::-;;;:::o;40269:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;17668:108::-;17729:7;17756:12;;17749:19;;17668:108;:::o;47504:103::-;9145:13;:11;:13::i;:::-;47590:9:::1;47578;;:21;;;;;;;;;;;;;;;;;;47504:103:::0;:::o;39388:50::-;;;;:::o;39202:35::-;;;;:::o;39770:33::-;;;;:::o;39730:::-;;;;:::o;44602:271::-;9145:13;:11;:13::i;:::-;44739:4:::1;44731;44726:1;44710:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44709:26;;;;:::i;:::-;44708:35;;;;:::i;:::-;44698:6;:45;;44676:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;44856:8;44846:6;:19;;;;:::i;:::-;44826:17;:39;;;;44602:271:::0;:::o;19771:295::-;19902:4;19919:15;19937:12;:10;:12::i;:::-;19919:30;;19960:38;19976:4;19982:7;19991:6;19960:15;:38::i;:::-;20009:27;20019:4;20025:2;20029:6;20009:9;:27::i;:::-;20054:4;20047:11;;;19771:295;;;;;:::o;38920:53::-;38966:6;38920:53;:::o;39289:54::-;;;;:::o;17510:93::-;17568:5;17593:2;17586:9;;17510:93;:::o;39570:32::-;;;;;;;;;;;;;:::o;20475:263::-;20588:4;20605:13;20621:12;:10;:12::i;:::-;20605:28;;20644:64;20653:5;20660:7;20697:10;20669:25;20679:5;20686:7;20669:9;:25::i;:::-;:38;;;;:::i;:::-;20644:8;:64::i;:::-;20726:4;20719:11;;;20475:263;;;;:::o;38875:38::-;;;:::o;39080:32::-;;;;:::o;39985:21::-;;;;:::o;47615:126::-;47681:4;47705:19;:28;47725:7;47705:28;;;;;;;;;;;;;;;;;;;;;;;;;47698:35;;47615:126;;;:::o;39159:34::-;;;;:::o;17839:143::-;17929:7;17956:9;:18;17966:7;17956:18;;;;;;;;;;;;;;;;17949:25;;17839:143;;;:::o;9907:103::-;9145:13;:11;:13::i;:::-;9972:30:::1;9999:1;9972:18;:30::i;:::-;9907:103::o:0;53980:560::-;9145:13;:11;:13::i;:::-;54182:3:::1;54159:19;:26;;54137:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;54309:4;54297:8;:16;;:33;;;;;54329:1;54317:8;:13;;54297:33;54275:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;54435:19;54417:15;:37;;;;54484:8;54465:16;:27;;;;54524:8;54503:18;;:29;;;;;;;;;;;;;;;;;;53980:560:::0;;;:::o;45171:169::-;9145:13;:11;:13::i;:::-;45328:4:::1;45286:31;:39;45318:6;45286:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;45171:169:::0;;:::o;39010:30::-;;;;;;;;;;;;;:::o;44058:536::-;9145:13;:11;:13::i;:::-;44240:4:::1;44232;44227:1;44211:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44210:26;;;;:::i;:::-;44209:35;;;;:::i;:::-;44197:8;:47;;44175:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;44359:8;44347;:21;;;;:::i;:::-;44327:17;:41;;;;44450:4;44442;44437:1;44421:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44420:26;;;;:::i;:::-;44419:35;;;;:::i;:::-;44403:12;:51;;44381:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;44577:8;44561:12;:25;;;;:::i;:::-;44539:19;:47;;;;44058:536:::0;;:::o;40013:30::-;;;;:::o;45546:391::-;9145:13;:11;:13::i;:::-;45714::::1;45696:15;:31;;;;45756:13;45738:15;:31;;;;45792:7;45780:9;:19;;;;45855:9;;45837:15;;45819;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;45810:6;:54;;;;45893:2;45883:6;;:12;;45875:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;45546:391:::0;;;:::o;9259:87::-;9305:7;9332:6;;;;;;;;;;;9325:13;;9259:87;:::o;39047:24::-;;;;;;;;;;;;;:::o;39875:31::-;;;;:::o;45436:102::-;9145:13;:11;:13::i;:::-;45523:7:::1;45507:13;;:23;;;;;;;;;;;;;;;;;;45436:102:::0;:::o;16767:104::-;16823:13;16856:7;16849:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16767:104;:::o;46895:306::-;9145:13;:11;:13::i;:::-;47041::::1;47033:21;;:4;:21;;::::0;47011:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;47152:41;47181:4;47187:5;47152:28;:41::i;:::-;46895:306:::0;;:::o;40087:24::-;;;;:::o;39445:35::-;;;;:::o;39810:27::-;;;;:::o;39951:25::-;;;;:::o;21241:498::-;21359:4;21376:13;21392:12;:10;:12::i;:::-;21376:28;;21415:24;21442:25;21452:5;21459:7;21442:9;:25::i;:::-;21415:52;;21520:15;21500:16;:35;;21478:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;21636:60;21645:5;21652:7;21680:15;21661:16;:34;21636:8;:60::i;:::-;21727:4;21720:11;;;;21241:498;;;;:::o;39350:29::-;;;;:::o;18188:218::-;18292:4;18309:13;18325:12;:10;:12::i;:::-;18309:28;;18348;18358:5;18365:2;18369:6;18348:9;:28::i;:::-;18394:4;18387:11;;;18188:218;;;;:::o;47347:149::-;9145:13;:11;:13::i;:::-;47470:18:::1;47452:15;;:36;;;;;;;;;;;;;;;;;;47347:149:::0;:::o;40469:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;44881:282::-;9145:13;:11;:13::i;:::-;45025:4:::1;45017;45012:1;44996:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44995:26;;;;:::i;:::-;44994:35;;;;:::i;:::-;44984:6;:45;;44962:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;45146:8;45136:6;:19;;;;:::i;:::-;45114;:41;;;;44881:282:::0;:::o;46755:132::-;9145:13;:11;:13::i;:::-;46871:8:::1;46840:19;:28;46860:7;46840:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;46755:132:::0;;:::o;45945:400::-;9145:13;:11;:13::i;:::-;46115::::1;46096:16;:32;;;;46158:13;46139:16;:32;;;;46195:7;46182:10;:20;;;;46261:10;;46242:16;;46223;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;46213:7;:58;;;;46301:2;46290:7;;:13;;46282:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45945:400:::0;;;:::o;42677:158::-;9145:13;:11;:13::i;:::-;42749:4:::1;42731:15;;:22;;;;;;;;;;;;;;;;;;42780:4;42764:13;;:20;;;;;;;;;;;;;;;;;;42812:15;42795:14;:32;;;;42677:158::o:0;39529:34::-;;;;;;;;;;;;;:::o;39682:39::-;;;;;;;;;;;;;:::o;42880:249::-;9145:13;:11;:13::i;:::-;43012:6:::1;43007:115;43028:10;;:17;;43024:1;:21;43007:115;;;43095:15;43067:10;:25;43078:10;;43089:1;43078:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43067:25;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;43047:3;;;;;:::i;:::-;;;;43007:115;;;;42880:249:::0;;;:::o;39846:22::-;;;;:::o;43570:480::-;43667:4;9145:13;:11;:13::i;:::-;43741:6:::1;43736:1;43720:13;:11;:13::i;:::-;:17;;;;:::i;:::-;43719:28;;;;:::i;:::-;43706:9;:41;;43684:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;43897:4;43891:2;43875:13;:11;:13::i;:::-;:18;;;;:::i;:::-;43874:27;;;;:::i;:::-;43861:9;:40;;43839:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44011:9;43990:18;:30;;;;44038:4;44031:11;;43570:480:::0;;;:::o;39489:33::-;;;;;;;;;;;;;:::o;43181:124::-;43236:4;9145:13;:11;:13::i;:::-;43270:5:::1;43253:14;;:22;;;;;;;;;;;;;;;;;;43293:4;43286:11;;43181:124:::0;:::o;18469:176::-;18583:7;18610:11;:18;18622:5;18610:18;;;;;;;;;;;;;;;:27;18629:7;18610:27;;;;;;;;;;;;;;;;18603:34;;18469:176;;;;:::o;39119:33::-;;;;:::o;40050:30::-;;;;:::o;10165:238::-;9145:13;:11;:13::i;:::-;10288:1:::1;10268:22;;:8;:22;;::::0;10246:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10367:28;10386:8;10367:18;:28::i;:::-;10165:238:::0;:::o;39913:31::-;;;;:::o;43366:134::-;43425:4;9145:13;:11;:13::i;:::-;43465:5:::1;43442:20;;:28;;;;;;;;;;;;;;;;;;43488:4;43481:11;;43366:134:::0;:::o;39244:38::-;;;;;;;;;;;;;:::o;56923:1010::-;57023:4;9145:13;:11;:13::i;:::-;57103:19:::1;;57080:20;;:42;;;;:::i;:::-;57062:15;:60;57040:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;57212:4;57201:7;:15;;57193:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;57297:15;57274:20;:38;;;;57367:28;57398:4;:14;;;57413:13;57398:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57367:60;;57477:20;57500:44;57538:5;57500:33;57525:7;57500:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;57477:67;;57664:1;57649:12;:16;57645:110;;;57682:61;57698:13;57721:6;57730:12;57682:15;:61::i;:::-;57645:110;57830:19;57867:13;57830:51;;57892:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;57921:4;57914:11;;;;;56923:1010:::0;;;:::o;7789:98::-;7842:7;7869:10;7862:17;;7789:98;:::o;25367:380::-;25520:1;25503:19;;:5;:19;;;25495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25601:1;25582:21;;:7;:21;;;25574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25685:6;25655:11;:18;25667:5;25655:18;;;;;;;;;;;;;;;:27;25674:7;25655:27;;;;;;;;;;;;;;;:36;;;;25723:7;25707:32;;25716:5;25707:32;;;25732:6;25707:32;;;;;;:::i;:::-;;;;;;;;25367:380;;;:::o;9424:132::-;9499:12;:10;:12::i;:::-;9488:23;;:7;:5;:7::i;:::-;:23;;;9480:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9424:132::o;26038:502::-;26173:24;26200:25;26210:5;26217:7;26200:9;:25::i;:::-;26173:52;;26260:17;26240:16;:37;26236:297;;26340:6;26320:16;:26;;26294:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;26455:51;26464:5;26471:7;26499:6;26480:16;:25;26455:8;:51::i;:::-;26236:297;26162:378;26038:502;;;:::o;47799:5051::-;47947:1;47931:18;;:4;:18;;;47923:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48024:1;48010:16;;:2;:16;;;48002:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48086:10;:14;48097:2;48086:14;;;;;;;;;;;;;;;;;;;;;;;;;48085:15;:36;;;;;48105:10;:16;48116:4;48105:16;;;;;;;;;;;;;;;;;;;;;;;;;48104:17;48085:36;48077:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48164:1;48154:6;:11;48150:93;;48182:28;48198:4;48204:2;48208:1;48182:15;:28::i;:::-;48225:7;;48150:93;48259:14;;;;;;;;;;;48255:2499;;;48320:7;:5;:7::i;:::-;48312:15;;:4;:15;;;;:49;;;;;48354:7;:5;:7::i;:::-;48348:13;;:2;:13;;;;48312:49;:86;;;;;48396:1;48382:16;;:2;:16;;;;48312:86;:128;;;;;48433:6;48419:21;;:2;:21;;;;48312:128;:160;;;;;48462:10;;;;;;;;;;;48461:11;48312:160;48290:2453;;;48512:15;;;;;;;;;;;48507:225;;48586:19;:25;48606:4;48586:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;48615:19;:23;48635:2;48615:23;;;;;;;;;;;;;;;;;;;;;;;;;48586:52;48552:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;48507:225;48888:20;;;;;;;;;;;48884:641;;;48969:7;:5;:7::i;:::-;48963:13;;:2;:13;;;;:72;;;;;49019:15;49005:30;;:2;:30;;;;48963:72;:129;;;;;49078:13;49064:28;;:2;:28;;;;48963:129;48933:573;;;49256:12;49181:28;:39;49210:9;49181:39;;;;;;;;;;;;;;;;:87;49143:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;49470:12;49428:28;:39;49457:9;49428:39;;;;;;;;;;;;;;;:54;;;;48933:573;48884:641;49599:25;:31;49625:4;49599:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;49656:31;:35;49688:2;49656:35;;;;;;;;;;;;;;;;;;;;;;;;;49655:36;49599:92;49573:1155;;;49778:17;;49768:6;:27;;49734:163;;;;;;;;;;;;:::i;:::-;;;;;;;;;49980:19;;49963:13;49973:2;49963:9;:13::i;:::-;49954:6;:22;;;;:::i;:::-;:45;;49920:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49573:1155;;;50168:25;:29;50194:2;50168:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;50223:31;:37;50255:4;50223:37;;;;;;;;;;;;;;;;;;;;;;;;;50222:38;50168:92;50142:586;;;50347:17;;50337:6;:27;;50303:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;50142:586;;;50498:31;:35;50530:2;50498:35;;;;;;;;;;;;;;;;;;;;;;;;;50493:235;;50618:19;;50601:13;50611:2;50601:9;:13::i;:::-;50592:6;:22;;;;:::i;:::-;:45;;50558:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;50493:235;50142:586;49573:1155;48290:2453;48255:2499;50766:28;50797:24;50815:4;50797:9;:24::i;:::-;50766:55;;50834:12;50873:18;;50849:20;:42;;50834:57;;50922:7;:37;;;;;50946:13;;;;;;;;;;;50922:37;:65;;;;;50977:10;;;;;;;;;;;50976:11;50922:65;:114;;;;;51005:25;:31;51031:4;51005:31;;;;;;;;;;;;;;;;;;;;;;;;;51004:32;50922:114;:157;;;;;51054:19;:25;51074:4;51054:25;;;;;;;;;;;;;;;;;;;;;;;;;51053:26;50922:157;:198;;;;;51097:19;:23;51117:2;51097:23;;;;;;;;;;;;;;;;;;;;;;;;;51096:24;50922:198;50904:334;;;51160:4;51147:10;;:17;;;;;;;;;;;;;;;;;;51181:10;:8;:10::i;:::-;51221:5;51208:10;;:18;;;;;;;;;;;;;;;;;;50904:334;51269:10;;;;;;;;;;;51268:11;:57;;;;;51296:25;:29;51322:2;51296:29;;;;;;;;;;;;;;;;;;;;;;;;;51268:57;:92;;;;;51342:18;;;;;;;;;;;51268:92;:160;;;;;51413:15;;51396:14;;:32;;;;:::i;:::-;51377:15;:51;;51268:160;:203;;;;;51446:19;:25;51466:4;51446:25;;;;;;;;;;;;;;;;;;;;;;;;;51445:26;51268:203;51250:289;;;51498:29;:27;:29::i;:::-;;51250:289;51551:12;51567:10;;;;;;;;;;;51566:11;51551:26;;51679:19;:25;51699:4;51679:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;51708:19;:23;51728:2;51708:23;;;;;;;;;;;;;;;;;;;;;;;;;51679:52;51675:100;;;51758:5;51748:15;;51675:100;51787:12;51892:7;51888:909;;;51944:25;:29;51970:2;51944:29;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;;51987:1;51977:7;;:11;51944:44;51940:708;;;52016:28;52040:3;52016:19;52027:7;;52016:6;:10;;:19;;;;:::i;:::-;:23;;:28;;;;:::i;:::-;52009:35;;52113:7;;52093:16;;52086:4;:23;;;;:::i;:::-;52085:35;;;;:::i;:::-;52063:18;;:57;;;;;;;:::i;:::-;;;;;;;;52177:7;;52163:10;;52156:4;:17;;;;:::i;:::-;52155:29;;;;:::i;:::-;52139:12;;:45;;;;;;;:::i;:::-;;;;;;;;52253:7;;52233:16;;52226:4;:23;;;;:::i;:::-;52225:35;;;;:::i;:::-;52203:18;;:57;;;;;;;:::i;:::-;;;;;;;;51940:708;;;52322:25;:31;52348:4;52322:31;;;;;;;;;;;;;;;;;;;;;;;;;:45;;;;;52366:1;52357:6;;:10;52322:45;52318:330;;;52395:27;52418:3;52395:18;52406:6;;52395;:10;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;52388:34;;52490:6;;52471:15;;52464:4;:22;;;;:::i;:::-;52463:33;;;;:::i;:::-;52441:18;;:55;;;;;;;:::i;:::-;;;;;;;;52552:6;;52539:9;;52532:4;:16;;;;:::i;:::-;52531:27;;;;:::i;:::-;52515:12;;:43;;;;;;;:::i;:::-;;;;;;;;52626:6;;52607:15;;52600:4;:22;;;;:::i;:::-;52599:33;;;;:::i;:::-;52577:18;;:55;;;;;;;:::i;:::-;;;;;;;;52318:330;51940:708;52675:1;52668:4;:8;52664:91;;;52697:42;52713:4;52727;52734;52697:15;:42::i;:::-;52664:91;52781:4;52771:14;;;;;:::i;:::-;;;51888:909;52809:33;52825:4;52831:2;52835:6;52809:15;:33::i;:::-;47912:4938;;;;47799:5051;;;;:::o;10563:191::-;10637:16;10656:6;;;;;;;;;;;10637:25;;10682:8;10673:6;;:17;;;;;;;;;;;;;;;;;;10737:8;10706:40;;10727:8;10706:40;;;;;;;;;;;;10626:128;10563:191;:::o;47209:130::-;47326:5;47292:25;:31;47318:4;47292:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;47209:130;;:::o;3685:98::-;3743:7;3774:1;3770;:5;;;;:::i;:::-;3763:12;;3685:98;;;;:::o;4084:::-;4142:7;4173:1;4169;:5;;;;:::i;:::-;4162:12;;4084:98;;;;:::o;22209:877::-;22356:1;22340:18;;:4;:18;;;22332:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22433:1;22419:16;;:2;:16;;;22411:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22488:38;22509:4;22515:2;22519:6;22488:20;:38::i;:::-;22539:19;22561:9;:15;22571:4;22561:15;;;;;;;;;;;;;;;;22539:37;;22624:6;22609:11;:21;;22587:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;22764:6;22750:11;:20;22732:9;:15;22742:4;22732:15;;;;;;;;;;;;;;;:38;;;;22967:6;22950:9;:13;22960:2;22950:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;23017:2;23002:26;;23011:4;23002:26;;;23021:6;23002:26;;;;;;:::i;:::-;;;;;;;;23041:37;23061:4;23067:2;23071:6;23041:19;:37::i;:::-;22321:765;22209:877;;;:::o;54548:1599::-;54587:23;54613:24;54631:4;54613:9;:24::i;:::-;54587:50;;54648:25;54744:12;;54710:18;;54676;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;54648:108;;54767:12;54815:1;54796:15;:20;:46;;;;54841:1;54820:17;:22;54796:46;54792:85;;;54859:7;;;;;54792:85;54932:2;54911:18;;:23;;;;:::i;:::-;54893:15;:41;54889:115;;;54990:2;54969:18;;:23;;;;:::i;:::-;54951:41;;54889:115;55065:23;55178:1;55145:17;55110:18;;55092:15;:36;;;;:::i;:::-;55091:71;;;;:::i;:::-;:88;;;;:::i;:::-;55065:114;;55190:26;55219:36;55239:15;55219;:19;;:36;;;;:::i;:::-;55190:65;;55268:25;55296:21;55268:49;;55330:36;55347:18;55330:16;:36::i;:::-;55379:18;55400:44;55426:17;55400:21;:25;;:44;;;;:::i;:::-;55379:65;;55457:23;55483:81;55536:17;55483:34;55498:18;;55483:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;55457:107;;55575:17;55595:51;55628:17;55595:28;55610:12;;55595:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;55575:71;;55659:23;55716:9;55698:15;55685:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;55659:66;;55759:1;55738:18;:22;;;;55792:1;55771:18;:22;;;;55819:1;55804:12;:16;;;;55855:9;;;;;;;;;;;55847:23;;55878:9;55847:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55833:59;;;;;55927:1;55909:15;:19;:42;;;;;55950:1;55932:15;:19;55909:42;55905:121;;;55968:46;55981:15;55998;55968:12;:46::i;:::-;55905:121;56060:15;;;;;;;;;;;56052:29;;56103:21;56052:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56038:101;;;;;54576:1571;;;;;;;;;;54548:1599;:::o;56155:760::-;56212:4;56246:15;56229:14;:32;;;;56316:28;56347:4;:14;;;56362:13;56347:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56316:60;;56426:20;56449:77;56510:5;56449:42;56474:16;;56449:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;56426:100;;56646:1;56631:12;:16;56627:110;;;56664:61;56680:13;56703:6;56712:12;56664:15;:61::i;:::-;56627:110;56812:19;56849:13;56812:51;;56874:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56903:4;56896:11;;;;;56155:760;:::o;27140:125::-;;;;:::o;27869:124::-;;;;:::o;3328:98::-;3386:7;3417:1;3413;:5;;;;:::i;:::-;3406:12;;3328:98;;;;:::o;52858:589::-;52984:21;53022:1;53008:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52984:40;;53053:4;53035;53040:1;53035:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;53079:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53069:4;53074:1;53069:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;53114:62;53131:4;53146:15;53164:11;53114:8;:62::i;:::-;53215:15;:66;;;53296:11;53322:1;53366:4;53393;53413:15;53215:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52913:534;52858:589;:::o;53455:517::-;53603:62;53620:4;53635:15;53653:11;53603:8;:62::i;:::-;53708:15;:31;;;53747:9;53780:4;53800:11;53826:1;53869;38966:6;53938:15;53708:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;53455:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:474::-;3514:6;3522;3571:2;3559:9;3550:7;3546:23;3542:32;3539:119;;;3577:79;;:::i;:::-;3539:119;3697:1;3722:53;3767:7;3758:6;3747:9;3743:22;3722:53;:::i;:::-;3712:63;;3668:117;3824:2;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3795:118;3446:474;;;;;:::o;3926:329::-;3985:6;4034:2;4022:9;4013:7;4009:23;4005:32;4002:119;;;4040:79;;:::i;:::-;4002:119;4160:1;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4131:117;3926:329;;;;:::o;4261:60::-;4289:3;4310:5;4303:12;;4261:60;;;:::o;4327:142::-;4377:9;4410:53;4428:34;4437:24;4455:5;4437:24;:::i;:::-;4428:34;:::i;:::-;4410:53;:::i;:::-;4397:66;;4327:142;;;:::o;4475:126::-;4525:9;4558:37;4589:5;4558:37;:::i;:::-;4545:50;;4475:126;;;:::o;4607:153::-;4684:9;4717:37;4748:5;4717:37;:::i;:::-;4704:50;;4607:153;;;:::o;4766:185::-;4880:64;4938:5;4880:64;:::i;:::-;4875:3;4868:77;4766:185;;:::o;4957:276::-;5077:4;5115:2;5104:9;5100:18;5092:26;;5128:98;5223:1;5212:9;5208:17;5199:6;5128:98;:::i;:::-;4957:276;;;;:::o;5239:118::-;5326:24;5344:5;5326:24;:::i;:::-;5321:3;5314:37;5239:118;;:::o;5363:222::-;5456:4;5494:2;5483:9;5479:18;5471:26;;5507:71;5575:1;5564:9;5560:17;5551:6;5507:71;:::i;:::-;5363:222;;;;:::o;5591:329::-;5650:6;5699:2;5687:9;5678:7;5674:23;5670:32;5667:119;;;5705:79;;:::i;:::-;5667:119;5825:1;5850:53;5895:7;5886:6;5875:9;5871:22;5850:53;:::i;:::-;5840:63;;5796:117;5591:329;;;;:::o;5926:619::-;6003:6;6011;6019;6068:2;6056:9;6047:7;6043:23;6039:32;6036:119;;;6074:79;;:::i;:::-;6036:119;6194:1;6219:53;6264:7;6255:6;6244:9;6240:22;6219:53;:::i;:::-;6209:63;;6165:117;6321:2;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6292:118;6449:2;6475:53;6520:7;6511:6;6500:9;6496:22;6475:53;:::i;:::-;6465:63;;6420:118;5926:619;;;;;:::o;6551:118::-;6638:24;6656:5;6638:24;:::i;:::-;6633:3;6626:37;6551:118;;:::o;6675:222::-;6768:4;6806:2;6795:9;6791:18;6783:26;;6819:71;6887:1;6876:9;6872:17;6863:6;6819:71;:::i;:::-;6675:222;;;;:::o;6903:86::-;6938:7;6978:4;6971:5;6967:16;6956:27;;6903:86;;;:::o;6995:112::-;7078:22;7094:5;7078:22;:::i;:::-;7073:3;7066:35;6995:112;;:::o;7113:214::-;7202:4;7240:2;7229:9;7225:18;7217:26;;7253:67;7317:1;7306:9;7302:17;7293:6;7253:67;:::i;:::-;7113:214;;;;:::o;7333:116::-;7403:21;7418:5;7403:21;:::i;:::-;7396:5;7393:32;7383:60;;7439:1;7436;7429:12;7383:60;7333:116;:::o;7455:133::-;7498:5;7536:6;7523:20;7514:29;;7552:30;7576:5;7552:30;:::i;:::-;7455:133;;;;:::o;7594:613::-;7668:6;7676;7684;7733:2;7721:9;7712:7;7708:23;7704:32;7701:119;;;7739:79;;:::i;:::-;7701:119;7859:1;7884:53;7929:7;7920:6;7909:9;7905:22;7884:53;:::i;:::-;7874:63;;7830:117;7986:2;8012:53;8057:7;8048:6;8037:9;8033:22;8012:53;:::i;:::-;8002:63;;7957:118;8114:2;8140:50;8182:7;8173:6;8162:9;8158:22;8140:50;:::i;:::-;8130:60;;8085:115;7594:613;;;;;:::o;8213:468::-;8278:6;8286;8335:2;8323:9;8314:7;8310:23;8306:32;8303:119;;;8341:79;;:::i;:::-;8303:119;8461:1;8486:53;8531:7;8522:6;8511:9;8507:22;8486:53;:::i;:::-;8476:63;;8432:117;8588:2;8614:50;8656:7;8647:6;8636:9;8632:22;8614:50;:::i;:::-;8604:60;;8559:115;8213:468;;;;;:::o;8687:619::-;8764:6;8772;8780;8829:2;8817:9;8808:7;8804:23;8800:32;8797:119;;;8835:79;;:::i;:::-;8797:119;8955:1;8980:53;9025:7;9016:6;9005:9;9001:22;8980:53;:::i;:::-;8970:63;;8926:117;9082:2;9108:53;9153:7;9144:6;9133:9;9129:22;9108:53;:::i;:::-;9098:63;;9053:118;9210:2;9236:53;9281:7;9272:6;9261:9;9257:22;9236:53;:::i;:::-;9226:63;;9181:118;8687:619;;;;;:::o;9312:323::-;9368:6;9417:2;9405:9;9396:7;9392:23;9388:32;9385:119;;;9423:79;;:::i;:::-;9385:119;9543:1;9568:50;9610:7;9601:6;9590:9;9586:22;9568:50;:::i;:::-;9558:60;;9514:114;9312:323;;;;:::o;9641:117::-;9750:1;9747;9740:12;9764:117;9873:1;9870;9863:12;9887:117;9996:1;9993;9986:12;10027:568;10100:8;10110:6;10160:3;10153:4;10145:6;10141:17;10137:27;10127:122;;10168:79;;:::i;:::-;10127:122;10281:6;10268:20;10258:30;;10311:18;10303:6;10300:30;10297:117;;;10333:79;;:::i;:::-;10297:117;10447:4;10439:6;10435:17;10423:29;;10501:3;10493:4;10485:6;10481:17;10471:8;10467:32;10464:41;10461:128;;;10508:79;;:::i;:::-;10461:128;10027:568;;;;;:::o;10601:698::-;10693:6;10701;10709;10758:2;10746:9;10737:7;10733:23;10729:32;10726:119;;;10764:79;;:::i;:::-;10726:119;10912:1;10901:9;10897:17;10884:31;10942:18;10934:6;10931:30;10928:117;;;10964:79;;:::i;:::-;10928:117;11077:80;11149:7;11140:6;11129:9;11125:22;11077:80;:::i;:::-;11059:98;;;;10855:312;11206:2;11232:50;11274:7;11265:6;11254:9;11250:22;11232:50;:::i;:::-;11222:60;;11177:115;10601:698;;;;;:::o;11305:474::-;11373:6;11381;11430:2;11418:9;11409:7;11405:23;11401:32;11398:119;;;11436:79;;:::i;:::-;11398:119;11556:1;11581:53;11626:7;11617:6;11606:9;11602:22;11581:53;:::i;:::-;11571:63;;11527:117;11683:2;11709:53;11754:7;11745:6;11734:9;11730:22;11709:53;:::i;:::-;11699:63;;11654:118;11305:474;;;;;:::o;11785:180::-;11833:77;11830:1;11823:88;11930:4;11927:1;11920:15;11954:4;11951:1;11944:15;11971:320;12015:6;12052:1;12046:4;12042:12;12032:22;;12099:1;12093:4;12089:12;12120:18;12110:81;;12176:4;12168:6;12164:17;12154:27;;12110:81;12238:2;12230:6;12227:14;12207:18;12204:38;12201:84;;12257:18;;:::i;:::-;12201:84;12022:269;11971:320;;;:::o;12297:180::-;12345:77;12342:1;12335:88;12442:4;12439:1;12432:15;12466:4;12463:1;12456:15;12483:191;12523:3;12542:20;12560:1;12542:20;:::i;:::-;12537:25;;12576:20;12594:1;12576:20;:::i;:::-;12571:25;;12619:1;12616;12612:9;12605:16;;12640:3;12637:1;12634:10;12631:36;;;12647:18;;:::i;:::-;12631:36;12483:191;;;;:::o;12680:179::-;12820:31;12816:1;12808:6;12804:14;12797:55;12680:179;:::o;12865:366::-;13007:3;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;12865:366;;;:::o;13237:419::-;13403:4;13441:2;13430:9;13426:18;13418:26;;13490:9;13484:4;13480:20;13476:1;13465:9;13461:17;13454:47;13518:131;13644:4;13518:131;:::i;:::-;13510:139;;13237:419;;;:::o;13662:179::-;13802:31;13798:1;13790:6;13786:14;13779:55;13662:179;:::o;13847:366::-;13989:3;14010:67;14074:2;14069:3;14010:67;:::i;:::-;14003:74;;14086:93;14175:3;14086:93;:::i;:::-;14204:2;14199:3;14195:12;14188:19;;13847:366;;;:::o;14219:419::-;14385:4;14423:2;14412:9;14408:18;14400:26;;14472:9;14466:4;14462:20;14458:1;14447:9;14443:17;14436:47;14500:131;14626:4;14500:131;:::i;:::-;14492:139;;14219:419;;;:::o;14644:410::-;14684:7;14707:20;14725:1;14707:20;:::i;:::-;14702:25;;14741:20;14759:1;14741:20;:::i;:::-;14736:25;;14796:1;14793;14789:9;14818:30;14836:11;14818:30;:::i;:::-;14807:41;;14997:1;14988:7;14984:15;14981:1;14978:22;14958:1;14951:9;14931:83;14908:139;;15027:18;;:::i;:::-;14908:139;14692:362;14644:410;;;;:::o;15060:180::-;15108:77;15105:1;15098:88;15205:4;15202:1;15195:15;15229:4;15226:1;15219:15;15246:185;15286:1;15303:20;15321:1;15303:20;:::i;:::-;15298:25;;15337:20;15355:1;15337:20;:::i;:::-;15332:25;;15376:1;15366:35;;15381:18;;:::i;:::-;15366:35;15423:1;15420;15416:9;15411:14;;15246:185;;;;:::o;15437:231::-;15577:34;15573:1;15565:6;15561:14;15554:58;15646:14;15641:2;15633:6;15629:15;15622:39;15437:231;:::o;15674:366::-;15816:3;15837:67;15901:2;15896:3;15837:67;:::i;:::-;15830:74;;15913:93;16002:3;15913:93;:::i;:::-;16031:2;16026:3;16022:12;16015:19;;15674:366;;;:::o;16046:419::-;16212:4;16250:2;16239:9;16235:18;16227:26;;16299:9;16293:4;16289:20;16285:1;16274:9;16270:17;16263:47;16327:131;16453:4;16327:131;:::i;:::-;16319:139;;16046:419;;;:::o;16471:238::-;16611:34;16607:1;16599:6;16595:14;16588:58;16680:21;16675:2;16667:6;16663:15;16656:46;16471:238;:::o;16715:366::-;16857:3;16878:67;16942:2;16937:3;16878:67;:::i;:::-;16871:74;;16954:93;17043:3;16954:93;:::i;:::-;17072:2;17067:3;17063:12;17056:19;;16715:366;;;:::o;17087:419::-;17253:4;17291:2;17280:9;17276:18;17268:26;;17340:9;17334:4;17330:20;17326:1;17315:9;17311:17;17304:47;17368:131;17494:4;17368:131;:::i;:::-;17360:139;;17087:419;;;:::o;17512:235::-;17652:34;17648:1;17640:6;17636:14;17629:58;17721:18;17716:2;17708:6;17704:15;17697:43;17512:235;:::o;17753:366::-;17895:3;17916:67;17980:2;17975:3;17916:67;:::i;:::-;17909:74;;17992:93;18081:3;17992:93;:::i;:::-;18110:2;18105:3;18101:12;18094:19;;17753:366;;;:::o;18125:419::-;18291:4;18329:2;18318:9;18314:18;18306:26;;18378:9;18372:4;18368:20;18364:1;18353:9;18349:17;18342:47;18406:131;18532:4;18406:131;:::i;:::-;18398:139;;18125:419;;;:::o;18550:233::-;18690:34;18686:1;18678:6;18674:14;18667:58;18759:16;18754:2;18746:6;18742:15;18735:41;18550:233;:::o;18789:366::-;18931:3;18952:67;19016:2;19011:3;18952:67;:::i;:::-;18945:74;;19028:93;19117:3;19028:93;:::i;:::-;19146:2;19141:3;19137:12;19130:19;;18789:366;;;:::o;19161:419::-;19327:4;19365:2;19354:9;19350:18;19342:26;;19414:9;19408:4;19404:20;19400:1;19389:9;19385:17;19378:47;19442:131;19568:4;19442:131;:::i;:::-;19434:139;;19161:419;;;:::o;19586:244::-;19726:34;19722:1;19714:6;19710:14;19703:58;19795:27;19790:2;19782:6;19778:15;19771:52;19586:244;:::o;19836:366::-;19978:3;19999:67;20063:2;20058:3;19999:67;:::i;:::-;19992:74;;20075:93;20164:3;20075:93;:::i;:::-;20193:2;20188:3;20184:12;20177:19;;19836:366;;;:::o;20208:419::-;20374:4;20412:2;20401:9;20397:18;20389:26;;20461:9;20455:4;20451:20;20447:1;20436:9;20432:17;20425:47;20489:131;20615:4;20489:131;:::i;:::-;20481:139;;20208:419;;;:::o;20633:224::-;20773:34;20769:1;20761:6;20757:14;20750:58;20842:7;20837:2;20829:6;20825:15;20818:32;20633:224;:::o;20863:366::-;21005:3;21026:67;21090:2;21085:3;21026:67;:::i;:::-;21019:74;;21102:93;21191:3;21102:93;:::i;:::-;21220:2;21215:3;21211:12;21204:19;;20863:366;;;:::o;21235:419::-;21401:4;21439:2;21428:9;21424:18;21416:26;;21488:9;21482:4;21478:20;21474:1;21463:9;21459:17;21452:47;21516:131;21642:4;21516:131;:::i;:::-;21508:139;;21235:419;;;:::o;21660:180::-;21708:77;21705:1;21698:88;21805:4;21802:1;21795:15;21829:4;21826:1;21819:15;21846:233;21885:3;21908:24;21926:5;21908:24;:::i;:::-;21899:33;;21954:66;21947:5;21944:77;21941:103;;22024:18;;:::i;:::-;21941:103;22071:1;22064:5;22060:13;22053:20;;21846:233;;;:::o;22085:240::-;22225:34;22221:1;22213:6;22209:14;22202:58;22294:23;22289:2;22281:6;22277:15;22270:48;22085:240;:::o;22331:366::-;22473:3;22494:67;22558:2;22553:3;22494:67;:::i;:::-;22487:74;;22570:93;22659:3;22570:93;:::i;:::-;22688:2;22683:3;22679:12;22672:19;;22331:366;;;:::o;22703:419::-;22869:4;22907:2;22896:9;22892:18;22884:26;;22956:9;22950:4;22946:20;22942:1;22931:9;22927:17;22920:47;22984:131;23110:4;22984:131;:::i;:::-;22976:139;;22703:419;;;:::o;23128:237::-;23268:34;23264:1;23256:6;23252:14;23245:58;23337:20;23332:2;23324:6;23320:15;23313:45;23128:237;:::o;23371:366::-;23513:3;23534:67;23598:2;23593:3;23534:67;:::i;:::-;23527:74;;23610:93;23699:3;23610:93;:::i;:::-;23728:2;23723:3;23719:12;23712:19;;23371:366;;;:::o;23743:419::-;23909:4;23947:2;23936:9;23932:18;23924:26;;23996:9;23990:4;23986:20;23982:1;23971:9;23967:17;23960:47;24024:131;24150:4;24024:131;:::i;:::-;24016:139;;23743:419;;;:::o;24168:225::-;24308:34;24304:1;24296:6;24292:14;24285:58;24377:8;24372:2;24364:6;24360:15;24353:33;24168:225;:::o;24399:366::-;24541:3;24562:67;24626:2;24621:3;24562:67;:::i;:::-;24555:74;;24638:93;24727:3;24638:93;:::i;:::-;24756:2;24751:3;24747:12;24740:19;;24399:366;;;:::o;24771:419::-;24937:4;24975:2;24964:9;24960:18;24952:26;;25024:9;25018:4;25014:20;25010:1;24999:9;24995:17;24988:47;25052:131;25178:4;25052:131;:::i;:::-;25044:139;;24771:419;;;:::o;25196:182::-;25336:34;25332:1;25324:6;25320:14;25313:58;25196:182;:::o;25384:366::-;25526:3;25547:67;25611:2;25606:3;25547:67;:::i;:::-;25540:74;;25623:93;25712:3;25623:93;:::i;:::-;25741:2;25736:3;25732:12;25725:19;;25384:366;;;:::o;25756:419::-;25922:4;25960:2;25949:9;25945:18;25937:26;;26009:9;26003:4;25999:20;25995:1;25984:9;25980:17;25973:47;26037:131;26163:4;26037:131;:::i;:::-;26029:139;;25756:419;;;:::o;26181:229::-;26321:34;26317:1;26309:6;26305:14;26298:58;26390:12;26385:2;26377:6;26373:15;26366:37;26181:229;:::o;26416:366::-;26558:3;26579:67;26643:2;26638:3;26579:67;:::i;:::-;26572:74;;26655:93;26744:3;26655:93;:::i;:::-;26773:2;26768:3;26764:12;26757:19;;26416:366;;;:::o;26788:419::-;26954:4;26992:2;26981:9;26977:18;26969:26;;27041:9;27035:4;27031:20;27027:1;27016:9;27012:17;27005:47;27069:131;27195:4;27069:131;:::i;:::-;27061:139;;26788:419;;;:::o;27213:143::-;27270:5;27301:6;27295:13;27286:22;;27317:33;27344:5;27317:33;:::i;:::-;27213:143;;;;:::o;27362:351::-;27432:6;27481:2;27469:9;27460:7;27456:23;27452:32;27449:119;;;27487:79;;:::i;:::-;27449:119;27607:1;27632:64;27688:7;27679:6;27668:9;27664:22;27632:64;:::i;:::-;27622:74;;27578:128;27362:351;;;;:::o;27719:223::-;27859:34;27855:1;27847:6;27843:14;27836:58;27928:6;27923:2;27915:6;27911:15;27904:31;27719:223;:::o;27948:366::-;28090:3;28111:67;28175:2;28170:3;28111:67;:::i;:::-;28104:74;;28187:93;28276:3;28187:93;:::i;:::-;28305:2;28300:3;28296:12;28289:19;;27948:366;;;:::o;28320:419::-;28486:4;28524:2;28513:9;28509:18;28501:26;;28573:9;28567:4;28563:20;28559:1;28548:9;28544:17;28537:47;28601:131;28727:4;28601:131;:::i;:::-;28593:139;;28320:419;;;:::o;28745:221::-;28885:34;28881:1;28873:6;28869:14;28862:58;28954:4;28949:2;28941:6;28937:15;28930:29;28745:221;:::o;28972:366::-;29114:3;29135:67;29199:2;29194:3;29135:67;:::i;:::-;29128:74;;29211:93;29300:3;29211:93;:::i;:::-;29329:2;29324:3;29320:12;29313:19;;28972:366;;;:::o;29344:419::-;29510:4;29548:2;29537:9;29533:18;29525:26;;29597:9;29591:4;29587:20;29583:1;29572:9;29568:17;29561:47;29625:131;29751:4;29625:131;:::i;:::-;29617:139;;29344:419;;;:::o;29769:182::-;29909:34;29905:1;29897:6;29893:14;29886:58;29769:182;:::o;29957:366::-;30099:3;30120:67;30184:2;30179:3;30120:67;:::i;:::-;30113:74;;30196:93;30285:3;30196:93;:::i;:::-;30314:2;30309:3;30305:12;30298:19;;29957:366;;;:::o;30329:419::-;30495:4;30533:2;30522:9;30518:18;30510:26;;30582:9;30576:4;30572:20;30568:1;30557:9;30553:17;30546:47;30610:131;30736:4;30610:131;:::i;:::-;30602:139;;30329:419;;;:::o;30754:179::-;30894:31;30890:1;30882:6;30878:14;30871:55;30754:179;:::o;30939:366::-;31081:3;31102:67;31166:2;31161:3;31102:67;:::i;:::-;31095:74;;31178:93;31267:3;31178:93;:::i;:::-;31296:2;31291:3;31287:12;31280:19;;30939:366;;;:::o;31311:419::-;31477:4;31515:2;31504:9;31500:18;31492:26;;31564:9;31558:4;31554:20;31550:1;31539:9;31535:17;31528:47;31592:131;31718:4;31592:131;:::i;:::-;31584:139;;31311:419;;;:::o;31736:224::-;31876:34;31872:1;31864:6;31860:14;31853:58;31945:7;31940:2;31932:6;31928:15;31921:32;31736:224;:::o;31966:366::-;32108:3;32129:67;32193:2;32188:3;32129:67;:::i;:::-;32122:74;;32205:93;32294:3;32205:93;:::i;:::-;32323:2;32318:3;32314:12;32307:19;;31966:366;;;:::o;32338:419::-;32504:4;32542:2;32531:9;32527:18;32519:26;;32591:9;32585:4;32581:20;32577:1;32566:9;32562:17;32555:47;32619:131;32745:4;32619:131;:::i;:::-;32611:139;;32338:419;;;:::o;32763:222::-;32903:34;32899:1;32891:6;32887:14;32880:58;32972:5;32967:2;32959:6;32955:15;32948:30;32763:222;:::o;32991:366::-;33133:3;33154:67;33218:2;33213:3;33154:67;:::i;:::-;33147:74;;33230:93;33319:3;33230:93;:::i;:::-;33348:2;33343:3;33339:12;33332:19;;32991:366;;;:::o;33363:419::-;33529:4;33567:2;33556:9;33552:18;33544:26;;33616:9;33610:4;33606:20;33602:1;33591:9;33587:17;33580:47;33644:131;33770:4;33644:131;:::i;:::-;33636:139;;33363:419;;;:::o;33788:161::-;33928:13;33924:1;33916:6;33912:14;33905:37;33788:161;:::o;33955:366::-;34097:3;34118:67;34182:2;34177:3;34118:67;:::i;:::-;34111:74;;34194:93;34283:3;34194:93;:::i;:::-;34312:2;34307:3;34303:12;34296:19;;33955:366;;;:::o;34327:419::-;34493:4;34531:2;34520:9;34516:18;34508:26;;34580:9;34574:4;34570:20;34566:1;34555:9;34551:17;34544:47;34608:131;34734:4;34608:131;:::i;:::-;34600:139;;34327:419;;;:::o;34752:172::-;34892:24;34888:1;34880:6;34876:14;34869:48;34752:172;:::o;34930:366::-;35072:3;35093:67;35157:2;35152:3;35093:67;:::i;:::-;35086:74;;35169:93;35258:3;35169:93;:::i;:::-;35287:2;35282:3;35278:12;35271:19;;34930:366;;;:::o;35302:419::-;35468:4;35506:2;35495:9;35491:18;35483:26;;35555:9;35549:4;35545:20;35541:1;35530:9;35526:17;35519:47;35583:131;35709:4;35583:131;:::i;:::-;35575:139;;35302:419;;;:::o;35727:297::-;35867:34;35863:1;35855:6;35851:14;35844:58;35936:34;35931:2;35923:6;35919:15;35912:59;36005:11;36000:2;35992:6;35988:15;35981:36;35727:297;:::o;36030:366::-;36172:3;36193:67;36257:2;36252:3;36193:67;:::i;:::-;36186:74;;36269:93;36358:3;36269:93;:::i;:::-;36387:2;36382:3;36378:12;36371:19;;36030:366;;;:::o;36402:419::-;36568:4;36606:2;36595:9;36591:18;36583:26;;36655:9;36649:4;36645:20;36641:1;36630:9;36626:17;36619:47;36683:131;36809:4;36683:131;:::i;:::-;36675:139;;36402:419;;;:::o;36827:237::-;36967:34;36963:1;36955:6;36951:14;36944:58;37036:20;37031:2;37023:6;37019:15;37012:45;36827:237;:::o;37070:366::-;37212:3;37233:67;37297:2;37292:3;37233:67;:::i;:::-;37226:74;;37309:93;37398:3;37309:93;:::i;:::-;37427:2;37422:3;37418:12;37411:19;;37070:366;;;:::o;37442:419::-;37608:4;37646:2;37635:9;37631:18;37623:26;;37695:9;37689:4;37685:20;37681:1;37670:9;37666:17;37659:47;37723:131;37849:4;37723:131;:::i;:::-;37715:139;;37442:419;;;:::o;37867:169::-;38007:21;38003:1;37995:6;37991:14;37984:45;37867:169;:::o;38042:366::-;38184:3;38205:67;38269:2;38264:3;38205:67;:::i;:::-;38198:74;;38281:93;38370:3;38281:93;:::i;:::-;38399:2;38394:3;38390:12;38383:19;;38042:366;;;:::o;38414:419::-;38580:4;38618:2;38607:9;38603:18;38595:26;;38667:9;38661:4;38657:20;38653:1;38642:9;38638:17;38631:47;38695:131;38821:4;38695:131;:::i;:::-;38687:139;;38414:419;;;:::o;38839:238::-;38979:34;38975:1;38967:6;38963:14;38956:58;39048:21;39043:2;39035:6;39031:15;39024:46;38839:238;:::o;39083:366::-;39225:3;39246:67;39310:2;39305:3;39246:67;:::i;:::-;39239:74;;39322:93;39411:3;39322:93;:::i;:::-;39440:2;39435:3;39431:12;39424:19;;39083:366;;;:::o;39455:419::-;39621:4;39659:2;39648:9;39644:18;39636:26;;39708:9;39702:4;39698:20;39694:1;39683:9;39679:17;39672:47;39736:131;39862:4;39736:131;:::i;:::-;39728:139;;39455:419;;;:::o;39880:194::-;39920:4;39940:20;39958:1;39940:20;:::i;:::-;39935:25;;39974:20;39992:1;39974:20;:::i;:::-;39969:25;;40018:1;40015;40011:9;40003:17;;40042:1;40036:4;40033:11;40030:37;;;40047:18;;:::i;:::-;40030:37;39880:194;;;;:::o;40080:225::-;40220:34;40216:1;40208:6;40204:14;40197:58;40289:8;40284:2;40276:6;40272:15;40265:33;40080:225;:::o;40311:366::-;40453:3;40474:67;40538:2;40533:3;40474:67;:::i;:::-;40467:74;;40550:93;40639:3;40550:93;:::i;:::-;40668:2;40663:3;40659:12;40652:19;;40311:366;;;:::o;40683:419::-;40849:4;40887:2;40876:9;40872:18;40864:26;;40936:9;40930:4;40926:20;40922:1;40911:9;40907:17;40900:47;40964:131;41090:4;40964:131;:::i;:::-;40956:139;;40683:419;;;:::o;41108:147::-;41209:11;41246:3;41231:18;;41108:147;;;;:::o;41261:114::-;;:::o;41381:398::-;41540:3;41561:83;41642:1;41637:3;41561:83;:::i;:::-;41554:90;;41653:93;41742:3;41653:93;:::i;:::-;41771:1;41766:3;41762:11;41755:18;;41381:398;;;:::o;41785:379::-;41969:3;41991:147;42134:3;41991:147;:::i;:::-;41984:154;;42155:3;42148:10;;41785:379;;;:::o;42170:180::-;42218:77;42215:1;42208:88;42315:4;42312:1;42305:15;42339:4;42336:1;42329:15;42356:143;42413:5;42444:6;42438:13;42429:22;;42460:33;42487:5;42460:33;:::i;:::-;42356:143;;;;:::o;42505:351::-;42575:6;42624:2;42612:9;42603:7;42599:23;42595:32;42592:119;;;42630:79;;:::i;:::-;42592:119;42750:1;42775:64;42831:7;42822:6;42811:9;42807:22;42775:64;:::i;:::-;42765:74;;42721:128;42505:351;;;;:::o;42862:85::-;42907:7;42936:5;42925:16;;42862:85;;;:::o;42953:158::-;43011:9;43044:61;43062:42;43071:32;43097:5;43071:32;:::i;:::-;43062:42;:::i;:::-;43044:61;:::i;:::-;43031:74;;42953:158;;;:::o;43117:147::-;43212:45;43251:5;43212:45;:::i;:::-;43207:3;43200:58;43117:147;;:::o;43270:114::-;43337:6;43371:5;43365:12;43355:22;;43270:114;;;:::o;43390:184::-;43489:11;43523:6;43518:3;43511:19;43563:4;43558:3;43554:14;43539:29;;43390:184;;;;:::o;43580:132::-;43647:4;43670:3;43662:11;;43700:4;43695:3;43691:14;43683:22;;43580:132;;;:::o;43718:108::-;43795:24;43813:5;43795:24;:::i;:::-;43790:3;43783:37;43718:108;;:::o;43832:179::-;43901:10;43922:46;43964:3;43956:6;43922:46;:::i;:::-;44000:4;43995:3;43991:14;43977:28;;43832:179;;;;:::o;44017:113::-;44087:4;44119;44114:3;44110:14;44102:22;;44017:113;;;:::o;44166:732::-;44285:3;44314:54;44362:5;44314:54;:::i;:::-;44384:86;44463:6;44458:3;44384:86;:::i;:::-;44377:93;;44494:56;44544:5;44494:56;:::i;:::-;44573:7;44604:1;44589:284;44614:6;44611:1;44608:13;44589:284;;;44690:6;44684:13;44717:63;44776:3;44761:13;44717:63;:::i;:::-;44710:70;;44803:60;44856:6;44803:60;:::i;:::-;44793:70;;44649:224;44636:1;44633;44629:9;44624:14;;44589:284;;;44593:14;44889:3;44882:10;;44290:608;;;44166:732;;;;:::o;44904:831::-;45167:4;45205:3;45194:9;45190:19;45182:27;;45219:71;45287:1;45276:9;45272:17;45263:6;45219:71;:::i;:::-;45300:80;45376:2;45365:9;45361:18;45352:6;45300:80;:::i;:::-;45427:9;45421:4;45417:20;45412:2;45401:9;45397:18;45390:48;45455:108;45558:4;45549:6;45455:108;:::i;:::-;45447:116;;45573:72;45641:2;45630:9;45626:18;45617:6;45573:72;:::i;:::-;45655:73;45723:3;45712:9;45708:19;45699:6;45655:73;:::i;:::-;44904:831;;;;;;;;:::o;45741:807::-;45990:4;46028:3;46017:9;46013:19;46005:27;;46042:71;46110:1;46099:9;46095:17;46086:6;46042:71;:::i;:::-;46123:72;46191:2;46180:9;46176:18;46167:6;46123:72;:::i;:::-;46205:80;46281:2;46270:9;46266:18;46257:6;46205:80;:::i;:::-;46295;46371:2;46360:9;46356:18;46347:6;46295:80;:::i;:::-;46385:73;46453:3;46442:9;46438:19;46429:6;46385:73;:::i;:::-;46468;46536:3;46525:9;46521:19;46512:6;46468:73;:::i;:::-;45741:807;;;;;;;;;:::o;46554:663::-;46642:6;46650;46658;46707:2;46695:9;46686:7;46682:23;46678:32;46675:119;;;46713:79;;:::i;:::-;46675:119;46833:1;46858:64;46914:7;46905:6;46894:9;46890:22;46858:64;:::i;:::-;46848:74;;46804:128;46971:2;46997:64;47053:7;47044:6;47033:9;47029:22;46997:64;:::i;:::-;46987:74;;46942:129;47110:2;47136:64;47192:7;47183:6;47172:9;47168:22;47136:64;:::i;:::-;47126:74;;47081:129;46554:663;;;;;:::o

Swarm Source

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