ETH Price: $2,685.92 (-2.50%)

Token

Cyborg Cramer (CYBCRAMER)
 

Overview

Max Total Supply

1,000,000,000 CYBCRAMER

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,306,000 CYBCRAMER

Value
$0.00
0x8cB6d46adB980e59934dA2be57f8ee5d1aB3836F
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:
CYBORGCRAMER

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

/*
Cyborg Cramer is coming back from another dimension to inverse all his trades.

$CRAMER to 100m - Cyborg Cramer will follow

6% tax 
max tx: 1%
max wallet: 2%
$cramer fork

https://t.me/cyborgcramerportal

*/

// SPDX-License-Identifier: UNLICENSED

// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the 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.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev 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.10 < 0.9;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

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

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

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

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Cyborg Cramer", "CYBCRAMER") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 2;
        uint256 _buyDevFee = 1;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 2;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 10000000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = totalSupply / 10000; // 0.01% swap wallet

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

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

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

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(0x64Df3aAB3b21cC275bB76c4A581Cf8B726478ee0);
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethForDev}(0, path, devWallet, block.timestamp);

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600d81526020017f4379626f7267204372616d6572000000000000000000000000000000000000008152506040518060400160405280600981526020017f4359424352414d4552000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000aa4565b5080600490805190602001906200014792919062000aa4565b5050506200016a6200015e620005d160201b60201c565b620005d960201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069f60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000bbe565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000bbe565b6040518363ffffffff1660e01b8152600401620002e992919062000c01565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000bbe565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069f60201b60201c565b6200038c60a05160016200070a60201b60201c565b60006003905060006002905060006001905060006003905060006002905060006001905060006b033b2e3c9fd0803ce800000090506a084595161401484a0000006008819055506a108b2a2c28029094000000600a8190555061271081620003f5919062000c96565b60098190555086601581905550856016819055508460178190555060175460165460155462000425919062000cce565b62000431919062000cce565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000461919062000cce565b6200046d919062000cce565b60188190555073e155ce946777defd8b3d08512dc6252676f8e223600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735bb3e0339aafc6ec3239237438044bdbb920df7c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053f62000531620007ab60201b60201c565b6001620007d560201b60201c565b62000552306001620007d560201b60201c565b6200056761dead6001620007d560201b60201c565b620005896200057b620007ab60201b60201c565b60016200069f60201b60201c565b6200059c3060016200069f60201b60201c565b620005b161dead60016200069f60201b60201c565b620005c333826200089060201b60201c565b505050505050505062000eed565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006af62000a0960201b60201c565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e562000a0960201b60201c565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000884919062000d48565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000903576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008fa9062000dc6565b60405180910390fd5b620009176000838362000a9a60201b60201c565b80600260008282546200092b919062000cce565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000982919062000cce565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e9919062000df9565b60405180910390a362000a056000838362000a9f60201b60201c565b5050565b62000a19620005d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a3f620007ab60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8f9062000e66565b60405180910390fd5b565b505050565b505050565b82805462000ab29062000eb7565b90600052602060002090601f01602090048101928262000ad6576000855562000b22565b82601f1062000af157805160ff191683800117855562000b22565b8280016001018555821562000b22579182015b8281111562000b2157825182559160200191906001019062000b04565b5b50905062000b31919062000b35565b5090565b5b8082111562000b5057600081600090555060010162000b36565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b868262000b59565b9050919050565b62000b988162000b79565b811462000ba457600080fd5b50565b60008151905062000bb88162000b8d565b92915050565b60006020828403121562000bd75762000bd662000b54565b5b600062000be78482850162000ba7565b91505092915050565b62000bfb8162000b79565b82525050565b600060408201905062000c18600083018562000bf0565b62000c27602083018462000bf0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ca38262000c2e565b915062000cb08362000c2e565b92508262000cc35762000cc262000c38565b5b828204905092915050565b600062000cdb8262000c2e565b915062000ce88362000c2e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d205762000d1f62000c67565b5b828201905092915050565b60008115159050919050565b62000d428162000d2b565b82525050565b600060208201905062000d5f600083018462000d37565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000dae601f8362000d65565b915062000dbb8262000d76565b602082019050919050565b6000602082019050818103600083015262000de18162000d9f565b9050919050565b62000df38162000c2e565b82525050565b600060208201905062000e10600083018462000de8565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4e60208362000d65565b915062000e5b8262000e16565b602082019050919050565b6000602082019050818103600083015262000e818162000e3f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ed057607f821691505b6020821081141562000ee75762000ee662000e88565b5b50919050565b60805160a05161550262000f83600039600081816111cc0152818161163c01528181611d7701528181611e2e01528181611e5b015281816125a9015281816138630152818161391c0152613949015260008181610f95015281816125510152818161354e0152818161368e01528181613abf01528181613ba001528181613bc701528181613c630152613c8a01526155026000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613df2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613ead565b610f51565b60405161041c9190613f08565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f23565b610f74565b6040516104599190613f08565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613faf565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613fd9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613f23565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613fd9565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613fd9565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613fd9565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613fd9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613ff4565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614021565b61113c565b6040516105ea9190613f08565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190614083565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613fd9565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613f08565b60405180910390f35b34801561068057600080fd5b5061068961118a565b60405161069691906140ba565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613ead565b611193565b6040516106d39190613f08565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190614083565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613f08565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f23565b611201565b6040516107669190613f08565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613fd9565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613f08565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f23565b611270565b6040516107f99190613fd9565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b9190614101565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613f08565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614154565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190614083565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613fd9565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614194565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190614083565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190614083565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613fd9565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906141e7565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613df2565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614154565b611632565b005b348015610a3657600080fd5b50610a3f6116d7565b604051610a4c9190613fd9565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dd565b604051610a779190613fd9565b60405180910390f35b348015610a8c57600080fd5b50610a956116e3565b604051610aa29190613fd9565b60405180910390f35b348015610ab757600080fd5b50610ac06116e9565b604051610acd9190613fd9565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613ead565b6116ef565b604051610b0a9190613f08565b60405180910390f35b348015610b1f57600080fd5b50610b28611766565b604051610b359190613fd9565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613ead565b61176c565b604051610b729190613f08565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f23565b61178f565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613f23565b611857565b604051610bd89190613f08565b60405180910390f35b348015610bed57600080fd5b50610bf6611877565b604051610c039190613f08565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614154565b61188a565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614194565b61193b565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613ff4565b6119c6565b005b348015610c9357600080fd5b50610c9c611a61565b604051610ca99190613f08565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a74565b604051610cd49190613fd9565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613ff4565b611a7a565b604051610d119190613f08565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5b565b604051610d3c9190613fd9565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614214565b611b61565b604051610d799190613fd9565b60405180910390f35b348015610d8e57600080fd5b50610d97611be8565b604051610da49190613fd9565b60405180910390f35b348015610db957600080fd5b50610dc2611bee565b604051610dcf9190613f08565b60405180910390f35b348015610de457600080fd5b50610ded611c1a565b604051610dfa9190613fd9565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613f23565b611c20565b005b348015610e3857600080fd5b50610e41611ca4565b604051610e4e9190613fd9565b60405180910390f35b348015610e6357600080fd5b50610e6c611caa565b604051610e799190613fd9565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613ff4565b611cb0565b604051610eb69190613f08565b60405180910390f35b606060038054610ece90614283565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614283565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f14565b9050610f69818585611f1c565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc96120e7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e7565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906142e4565b6110d3919061436d565b6110dd919061436d565b81101561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690614410565b60405180910390fd5b670de0b6b3a76400008161113391906142e4565b60088190555050565b600080611147611f14565b9050611154858285612165565b61115f8585856121f1565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f14565b90506111bf8185856111b08589611b61565b6111ba9190614430565b611f1c565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e7565b6112ca6000612f89565b565b6112d46120e7565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906144f8565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061458a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e7565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e7565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e7565b8260158190555081601681905550806017819055506017546016546015546114839190614430565b61148d9190614430565b601481905550600c60145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906145f6565b60405180910390fd5b505050565b6114e66120e7565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e7565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af90614283565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90614283565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614688565b60405180910390fd5b6116d3828261304f565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116fa611f14565b905060006117088286611b61565b90508381101561174d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117449061471a565b60405180910390fd5b61175a8286868403611f1c565b60019250505092915050565b600e5481565b600080611777611f14565b90506117848185856121f1565b600191505092915050565b6117976120e7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118926120e7565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192f9190613f08565b60405180910390a25050565b6119436120e7565b8260198190555081601a8190555080601b81905550601b54601a5460195461196b9190614430565b6119759190614430565b601881905550600c60185411156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906145f6565b60405180910390fd5b505050565b6119ce6120e7565b670de0b6b3a76400006103e860056119e4610fb7565b6119ee91906142e4565b6119f8919061436d565b611a02919061436d565b811015611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906147ac565b60405180910390fd5b670de0b6b3a764000081611a5891906142e4565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a846120e7565b629896806001611a92610fb7565b611a9c91906142e4565b611aa6919061436d565b821015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061483e565b60405180910390fd5b6103e86005611af5610fb7565b611aff91906142e4565b611b09919061436d565b821115611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b42906148d0565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf86120e7565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c286120e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614962565b60405180910390fd5b611ca181612f89565b50565b601a5481565b600a5481565b6000611cba6120e7565b600f54601054611cca9190614430565b4211611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906149ce565b60405180910390fd5b6103e8821115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614a60565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611db29190614083565b602060405180830381865afa158015611dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df39190614a95565b90506000611e1e612710611e1086856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115611e5757611e567f000000000000000000000000000000000000000000000000000000000000000061dead8361311c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec457600080fd5b505af1158015611ed8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614b34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff390614bc6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120da9190613fd9565b60405180910390a3505050565b6120ef611f14565b73ffffffffffffffffffffffffffffffffffffffff1661210d611525565b73ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a90614c32565b60405180910390fd5b565b60006121718484611b61565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121eb57818110156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614c9e565b60405180910390fd5b6121ea8484848403611f1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614d30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614dc2565b60405180910390fd5b60008114156122eb576122e68383600061311c565b612f84565b601160009054906101000a900460ff16156129ae57612308611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123765750612346611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123af5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124025750600560149054906101000a900460ff16155b156129ad57601160019054906101000a900460ff166124fc57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124bc5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f290614e2e565b60405180910390fd5b5b601360009054906101000a900460ff16156126c457612519611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125a057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126c35743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590614ee6565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127675750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561280e576008548111156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614f78565b60405180910390fd5b600a546127bd83611270565b826127c89190614430565b1115612809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280090614fe4565b60405180910390fd5b6129ac565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b15750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612900576008548111156128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290615076565b60405180910390fd5b6129ab565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129aa57600a5461295d83611270565b826129689190614430565b11156129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090614fe4565b60405180910390fd5b5b5b5b5b5b60006129b930611270565b9050600060095482101590508080156129de5750601160029054906101000a900460ff165b80156129f75750600560149054906101000a900460ff16155b8015612a4d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aa35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af95750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3d576001600560146101000a81548160ff021916908315150217905550612b2161339d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ba35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bbb5750600c60009054906101000a900460ff165b8015612bd65750600d54600e54612bd29190614430565b4210155b8015612c2c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57612c3961383a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cf15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cfb57600090505b60008115612f7457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5e57506000601854115b15612e2b57612d8b6064612d7d601854886130f090919063ffffffff16565b61310690919063ffffffff16565b9050601854601a5482612d9e91906142e4565b612da8919061436d565b601d6000828254612db99190614430565b92505081905550601854601b5482612dd191906142e4565b612ddb919061436d565b601e6000828254612dec9190614430565b9250508190555060185460195482612e0491906142e4565b612e0e919061436d565b601c6000828254612e1f9190614430565b92505081905550612f50565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e8657506000601454115b15612f4f57612eb36064612ea5601454886130f090919063ffffffff16565b61310690919063ffffffff16565b905060145460165482612ec691906142e4565b612ed0919061436d565b601d6000828254612ee19190614430565b9250508190555060145460175482612ef991906142e4565b612f03919061436d565b601e6000828254612f149190614430565b9250508190555060145460155482612f2c91906142e4565b612f36919061436d565b601c6000828254612f479190614430565b925050819055505b5b6000811115612f6557612f6487308361311c565b5b8085612f719190615096565b94505b612f7f87878761311c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130fe91906142e4565b905092915050565b60008183613114919061436d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318390614d30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f390614dc2565b60405180910390fd5b613207838383613a00565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561328d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132849061513c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614430565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133849190613fd9565b60405180910390a3613397848484613a05565b50505050565b60006133a830611270565b90506000601e54601c54601d546133bf9190614430565b6133c99190614430565b90506000808314806133db5750600082145b156133e857505050613838565b60146009546133f791906142e4565b83111561341057601460095461340d91906142e4565b92505b6000600283601d548661342391906142e4565b61342d919061436d565b613437919061436d565b9050600061344e8286613a0a90919063ffffffff16565b9050600047905061345e82613a20565b60006134738247613a0a90919063ffffffff16565b9050600061349e87613490601c54856130f090919063ffffffff16565b61310690919063ffffffff16565b905060006134c9886134bb601e54866130f090919063ffffffff16565b61310690919063ffffffff16565b905060008183856134da9190615096565b6134e49190615096565b90506000601d819055506000601c819055506000601e819055506000600267ffffffffffffffff81111561351b5761351a61515c565b5b6040519080825280602002602001820160405280156135495781602001602082028036833780820191505090505b5090507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135db91906151a0565b816000815181106135ef576135ee6151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507364df3aab3b21cc275bb76c4a581cf8b726478ee081600181518110613652576136516151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663b6f9de9584600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161370f94939291906152f5565b6000604051808303818588803b15801561372857600080fd5b505af115801561373c573d6000803e3d6000fd5b50505050506000881180156137515750600082115b1561379e576137608883613c5d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601d5460405161379593929190615341565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137e4906153a9565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508099505050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161389e9190614083565b602060405180830381865afa1580156138bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138df9190614a95565b9050600061390c6127106138fe600b54856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115613945576139447f000000000000000000000000000000000000000000000000000000000000000061dead8361311c565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139b257600080fd5b505af11580156139c6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a189190615096565b905092915050565b6000600267ffffffffffffffff811115613a3d57613a3c61515c565b5b604051908082528060200260200182016040528015613a6b5781602001602082028036833780820191505090505b5090503081600081518110613a8357613a826151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b4c91906151a0565b81600181518110613b6057613b5f6151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bc5307f000000000000000000000000000000000000000000000000000000000000000084611f1c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c279594939291906153be565b600060405180830381600087803b158015613c4157600080fd5b505af1158015613c55573d6000803e3d6000fd5b505050505050565b613c88307f000000000000000000000000000000000000000000000000000000000000000084611f1c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d0f96959493929190615418565b60606040518083038185885af1158015613d2d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d529190615479565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d93578082015181840152602081019050613d78565b83811115613da2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dc482613d59565b613dce8185613d64565b9350613dde818560208601613d75565b613de781613da8565b840191505092915050565b60006020820190508181036000830152613e0c8184613db9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4482613e19565b9050919050565b613e5481613e39565b8114613e5f57600080fd5b50565b600081359050613e7181613e4b565b92915050565b6000819050919050565b613e8a81613e77565b8114613e9557600080fd5b50565b600081359050613ea781613e81565b92915050565b60008060408385031215613ec457613ec3613e14565b5b6000613ed285828601613e62565b9250506020613ee385828601613e98565b9150509250929050565b60008115159050919050565b613f0281613eed565b82525050565b6000602082019050613f1d6000830184613ef9565b92915050565b600060208284031215613f3957613f38613e14565b5b6000613f4784828501613e62565b91505092915050565b6000819050919050565b6000613f75613f70613f6b84613e19565b613f50565b613e19565b9050919050565b6000613f8782613f5a565b9050919050565b6000613f9982613f7c565b9050919050565b613fa981613f8e565b82525050565b6000602082019050613fc46000830184613fa0565b92915050565b613fd381613e77565b82525050565b6000602082019050613fee6000830184613fca565b92915050565b60006020828403121561400a57614009613e14565b5b600061401884828501613e98565b91505092915050565b60008060006060848603121561403a57614039613e14565b5b600061404886828701613e62565b935050602061405986828701613e62565b925050604061406a86828701613e98565b9150509250925092565b61407d81613e39565b82525050565b60006020820190506140986000830184614074565b92915050565b600060ff82169050919050565b6140b48161409e565b82525050565b60006020820190506140cf60008301846140ab565b92915050565b6140de81613eed565b81146140e957600080fd5b50565b6000813590506140fb816140d5565b92915050565b60008060006060848603121561411a57614119613e14565b5b600061412886828701613e98565b935050602061413986828701613e98565b925050604061414a868287016140ec565b9150509250925092565b6000806040838503121561416b5761416a613e14565b5b600061417985828601613e62565b925050602061418a858286016140ec565b9150509250929050565b6000806000606084860312156141ad576141ac613e14565b5b60006141bb86828701613e98565b93505060206141cc86828701613e98565b92505060406141dd86828701613e98565b9150509250925092565b6000602082840312156141fd576141fc613e14565b5b600061420b848285016140ec565b91505092915050565b6000806040838503121561422b5761422a613e14565b5b600061423985828601613e62565b925050602061424a85828601613e62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061429b57607f821691505b602082108114156142af576142ae614254565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ef82613e77565b91506142fa83613e77565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614333576143326142b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061437882613e77565b915061438383613e77565b9250826143935761439261433e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143fa602f83613d64565b91506144058261439e565b604082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b600061443b82613e77565b915061444683613e77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561447b5761447a6142b5565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006144e2603383613d64565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614574603083613d64565b915061457f82614518565b604082019050919050565b600060208201905081810360008301526145a381614567565b9050919050565b7f4d757374206b656570206665657320617420313225206f72206c657373000000600082015250565b60006145e0601d83613d64565b91506145eb826145aa565b602082019050919050565b6000602082019050818103600083015261460f816145d3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614672603983613d64565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614704602583613d64565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614796602483613d64565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30303030312520746f74616c20737570706c792e000000000000000000602082015250565b6000614828603783613d64565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148ba603483613d64565b91506148c58261485e565b604082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061494c602683613d64565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006149b8602083613d64565b91506149c382614982565b602082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614a4a602a83613d64565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b600081519050614a8f81613e81565b92915050565b600060208284031215614aab57614aaa613e14565b5b6000614ab984828501614a80565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b1e602483613d64565b9150614b2982614ac2565b604082019050919050565b60006020820190508181036000830152614b4d81614b11565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bb0602283613d64565b9150614bbb82614b54565b604082019050919050565b60006020820190508181036000830152614bdf81614ba3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c1c602083613d64565b9150614c2782614be6565b602082019050919050565b60006020820190508181036000830152614c4b81614c0f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c88601d83613d64565b9150614c9382614c52565b602082019050919050565b60006020820190508181036000830152614cb781614c7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d1a602583613d64565b9150614d2582614cbe565b604082019050919050565b60006020820190508181036000830152614d4981614d0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614dac602383613d64565b9150614db782614d50565b604082019050919050565b60006020820190508181036000830152614ddb81614d9f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e18601683613d64565b9150614e2382614de2565b602082019050919050565b60006020820190508181036000830152614e4781614e0b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ed0604983613d64565b9150614edb82614e4e565b606082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f62603583613d64565b9150614f6d82614f06565b604082019050919050565b60006020820190508181036000830152614f9181614f55565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614fce601383613d64565b9150614fd982614f98565b602082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615060603683613d64565b915061506b82615004565b604082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b60006150a182613e77565b91506150ac83613e77565b9250828210156150bf576150be6142b5565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615126602683613d64565b9150615131826150ca565b604082019050919050565b6000602082019050818103600083015261515581615119565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061519a81613e4b565b92915050565b6000602082840312156151b6576151b5613e14565b5b60006151c48482850161518b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061522161521c615217846151fc565b613f50565b613e77565b9050919050565b61523181615206565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61526c81613e39565b82525050565b600061527e8383615263565b60208301905092915050565b6000602082019050919050565b60006152a282615237565b6152ac8185615242565b93506152b783615253565b8060005b838110156152e85781516152cf8882615272565b97506152da8361528a565b9250506001810190506152bb565b5085935050505092915050565b600060808201905061530a6000830187615228565b818103602083015261531c8186615297565b905061532b6040830185614074565b6153386060830184613fca565b95945050505050565b60006060820190506153566000830186613fca565b6153636020830185613fca565b6153706040830184613fca565b949350505050565b600081905092915050565b50565b6000615393600083615378565b915061539e82615383565b600082019050919050565b60006153b482615386565b9150819050919050565b600060a0820190506153d36000830188613fca565b6153e06020830187615228565b81810360408301526153f28186615297565b90506154016060830185614074565b61540e6080830184613fca565b9695505050505050565b600060c08201905061542d6000830189614074565b61543a6020830188613fca565b6154476040830187615228565b6154546060830186615228565b6154616080830185614074565b61546e60a0830184613fca565b979650505050505050565b60008060006060848603121561549257615491613e14565b5b60006154a086828701614a80565b93505060206154b186828701614a80565b92505060406154c286828701614a80565b915050925092509256fea264697066735822122032fb0d42c3517ee33ce08f6470ba0495a3058f72b456e1bec4050d8ba642cb8a64736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df9190613df2565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a9190613ead565b610f51565b60405161041c9190613f08565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f23565b610f74565b6040516104599190613f08565b60405180910390f35b34801561046e57600080fd5b50610477610f93565b6040516104849190613faf565b60405180910390f35b34801561049957600080fd5b506104a2610fb7565b6040516104af9190613fd9565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190613f23565b610fc1565b005b3480156104ed57600080fd5b506104f6611089565b6040516105039190613fd9565b60405180910390f35b34801561051857600080fd5b5061052161108f565b60405161052e9190613fd9565b60405180910390f35b34801561054357600080fd5b5061054c611095565b6040516105599190613fd9565b60405180910390f35b34801561056e57600080fd5b5061057761109b565b6040516105849190613fd9565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613ff4565b6110a1565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614021565b61113c565b6040516105ea9190613f08565b60405180910390f35b3480156105ff57600080fd5b5061060861116b565b6040516106159190614083565b60405180910390f35b34801561062a57600080fd5b50610633611171565b6040516106409190613fd9565b60405180910390f35b34801561065557600080fd5b5061065e611177565b60405161066b9190613f08565b60405180910390f35b34801561068057600080fd5b5061068961118a565b60405161069691906140ba565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613ead565b611193565b6040516106d39190613f08565b60405180910390f35b3480156106e857600080fd5b506106f16111ca565b6040516106fe9190614083565b60405180910390f35b34801561071357600080fd5b5061071c6111ee565b6040516107299190613f08565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f23565b611201565b6040516107669190613f08565b60405180910390f35b34801561077b57600080fd5b50610784611257565b6040516107919190613fd9565b60405180910390f35b3480156107a657600080fd5b506107af61125d565b6040516107bc9190613f08565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190613f23565b611270565b6040516107f99190613fd9565b60405180910390f35b34801561080e57600080fd5b506108176112b8565b005b34801561082557600080fd5b50610840600480360381019061083b9190614101565b6112cc565b005b34801561084e57600080fd5b50610857611398565b6040516108649190613f08565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614154565b6113c4565b005b3480156108a257600080fd5b506108ab611427565b6040516108b89190614083565b60405180910390f35b3480156108cd57600080fd5b506108d661144d565b6040516108e39190613fd9565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614194565b611453565b005b34801561092157600080fd5b5061092a6114de565b005b34801561093857600080fd5b50610941611525565b60405161094e9190614083565b60405180910390f35b34801561096357600080fd5b5061096c61154f565b6040516109799190614083565b60405180910390f35b34801561098e57600080fd5b50610997611575565b6040516109a49190613fd9565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906141e7565b61157b565b005b3480156109e257600080fd5b506109eb6115a0565b6040516109f89190613df2565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614154565b611632565b005b348015610a3657600080fd5b50610a3f6116d7565b604051610a4c9190613fd9565b60405180910390f35b348015610a6157600080fd5b50610a6a6116dd565b604051610a779190613fd9565b60405180910390f35b348015610a8c57600080fd5b50610a956116e3565b604051610aa29190613fd9565b60405180910390f35b348015610ab757600080fd5b50610ac06116e9565b604051610acd9190613fd9565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af89190613ead565b6116ef565b604051610b0a9190613f08565b60405180910390f35b348015610b1f57600080fd5b50610b28611766565b604051610b359190613fd9565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b609190613ead565b61176c565b604051610b729190613f08565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f23565b61178f565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613f23565b611857565b604051610bd89190613f08565b60405180910390f35b348015610bed57600080fd5b50610bf6611877565b604051610c039190613f08565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614154565b61188a565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614194565b61193b565b005b348015610c6a57600080fd5b50610c856004803603810190610c809190613ff4565b6119c6565b005b348015610c9357600080fd5b50610c9c611a61565b604051610ca99190613f08565b60405180910390f35b348015610cbe57600080fd5b50610cc7611a74565b604051610cd49190613fd9565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613ff4565b611a7a565b604051610d119190613f08565b60405180910390f35b348015610d2657600080fd5b50610d2f611b5b565b604051610d3c9190613fd9565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614214565b611b61565b604051610d799190613fd9565b60405180910390f35b348015610d8e57600080fd5b50610d97611be8565b604051610da49190613fd9565b60405180910390f35b348015610db957600080fd5b50610dc2611bee565b604051610dcf9190613f08565b60405180910390f35b348015610de457600080fd5b50610ded611c1a565b604051610dfa9190613fd9565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190613f23565b611c20565b005b348015610e3857600080fd5b50610e41611ca4565b604051610e4e9190613fd9565b60405180910390f35b348015610e6357600080fd5b50610e6c611caa565b604051610e799190613fd9565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea49190613ff4565b611cb0565b604051610eb69190613f08565b60405180910390f35b606060038054610ece90614283565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614283565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b600080610f5c611f14565b9050610f69818585611f1c565b600191505092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc96120e7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6110a96120e7565b670de0b6b3a76400006103e860016110bf610fb7565b6110c991906142e4565b6110d3919061436d565b6110dd919061436d565b81101561111f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111690614410565b60405180910390fd5b670de0b6b3a76400008161113391906142e4565b60088190555050565b600080611147611f14565b9050611154858285612165565b61115f8585856121f1565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60008061119e611f14565b90506111bf8185856111b08589611b61565b6111ba9190614430565b611f1c565b600191505092915050565b7f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c06120e7565b6112ca6000612f89565b565b6112d46120e7565b610258831015611319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611310906144f8565b60405180910390fd5b6103e8821115801561132c575060008210155b61136b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113629061458a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006113a26120e7565b6000601160006101000a81548160ff0219169083151502179055506001905090565b6113cc6120e7565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61145b6120e7565b8260158190555081601681905550806017819055506017546016546015546114839190614430565b61148d9190614430565b601481905550600c60145411156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906145f6565b60405180910390fd5b505050565b6114e66120e7565b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6115836120e7565b80601160026101000a81548160ff02191690831515021790555050565b6060600480546115af90614283565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90614283565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b5050505050905090565b61163a6120e7565b7f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090614688565b60405180910390fd5b6116d3828261304f565b5050565b60175481565b60105481565b601e5481565b601b5481565b6000806116fa611f14565b905060006117088286611b61565b90508381101561174d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117449061471a565b60405180910390fd5b61175a8286868403611f1c565b60019250505092915050565b600e5481565b600080611777611f14565b90506117848185856121f1565b600191505092915050565b6117976120e7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6118926120e7565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161192f9190613f08565b60405180910390a25050565b6119436120e7565b8260198190555081601a8190555080601b81905550601b54601a5460195461196b9190614430565b6119759190614430565b601881905550600c60185411156119c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b8906145f6565b60405180910390fd5b505050565b6119ce6120e7565b670de0b6b3a76400006103e860056119e4610fb7565b6119ee91906142e4565b6119f8919061436d565b611a02919061436d565b811015611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906147ac565b60405180910390fd5b670de0b6b3a764000081611a5891906142e4565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b6000611a846120e7565b629896806001611a92610fb7565b611a9c91906142e4565b611aa6919061436d565b821015611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf9061483e565b60405180910390fd5b6103e86005611af5610fb7565b611aff91906142e4565b611b09919061436d565b821115611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b42906148d0565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611bf86120e7565b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b611c286120e7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614962565b60405180910390fd5b611ca181612f89565b50565b601a5481565b600a5481565b6000611cba6120e7565b600f54601054611cca9190614430565b4211611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d02906149ce565b60405180910390fd5b6103e8821115611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614a60565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a6040518263ffffffff1660e01b8152600401611db29190614083565b602060405180830381865afa158015611dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df39190614a95565b90506000611e1e612710611e1086856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115611e5757611e567f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a61dead8361311c565b5b60007f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ec457600080fd5b505af1158015611ed8573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8390614b34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff390614bc6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516120da9190613fd9565b60405180910390a3505050565b6120ef611f14565b73ffffffffffffffffffffffffffffffffffffffff1661210d611525565b73ffffffffffffffffffffffffffffffffffffffff1614612163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215a90614c32565b60405180910390fd5b565b60006121718484611b61565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121eb57818110156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614c9e565b60405180910390fd5b6121ea8484848403611f1c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614d30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890614dc2565b60405180910390fd5b60008114156122eb576122e68383600061311c565b612f84565b601160009054906101000a900460ff16156129ae57612308611525565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123765750612346611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123af5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123e9575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124025750600560149054906101000a900460ff16155b156129ad57601160019054906101000a900460ff166124fc57601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124bc5750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6124fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f290614e2e565b60405180910390fd5b5b601360009054906101000a900460ff16156126c457612519611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156125a057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125f857507f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126c35743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061267e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267590614ee6565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156127675750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561280e576008548111156127b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a890614f78565b60405180910390fd5b600a546127bd83611270565b826127c89190614430565b1115612809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280090614fe4565b60405180910390fd5b6129ac565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128b15750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612900576008548111156128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290615076565b60405180910390fd5b6129ab565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166129aa57600a5461295d83611270565b826129689190614430565b11156129a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a090614fe4565b60405180910390fd5b5b5b5b5b5b60006129b930611270565b9050600060095482101590508080156129de5750601160029054906101000a900460ff165b80156129f75750600560149054906101000a900460ff16155b8015612a4d5750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aa35750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612af95750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612b3d576001600560146101000a81548160ff021916908315150217905550612b2161339d565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612ba35750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612bbb5750600c60009054906101000a900460ff165b8015612bd65750600d54600e54612bd29190614430565b4210155b8015612c2c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3b57612c3961383a565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612cf15750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612cfb57600090505b60008115612f7457602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d5e57506000601854115b15612e2b57612d8b6064612d7d601854886130f090919063ffffffff16565b61310690919063ffffffff16565b9050601854601a5482612d9e91906142e4565b612da8919061436d565b601d6000828254612db99190614430565b92505081905550601854601b5482612dd191906142e4565b612ddb919061436d565b601e6000828254612dec9190614430565b9250508190555060185460195482612e0491906142e4565b612e0e919061436d565b601c6000828254612e1f9190614430565b92505081905550612f50565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e8657506000601454115b15612f4f57612eb36064612ea5601454886130f090919063ffffffff16565b61310690919063ffffffff16565b905060145460165482612ec691906142e4565b612ed0919061436d565b601d6000828254612ee19190614430565b9250508190555060145460175482612ef991906142e4565b612f03919061436d565b601e6000828254612f149190614430565b9250508190555060145460155482612f2c91906142e4565b612f36919061436d565b601c6000828254612f479190614430565b925050819055505b5b6000811115612f6557612f6487308361311c565b5b8085612f719190615096565b94505b612f7f87878761311c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836130fe91906142e4565b905092915050565b60008183613114919061436d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561318c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318390614d30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f390614dc2565b60405180910390fd5b613207838383613a00565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561328d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132849061513c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133209190614430565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133849190613fd9565b60405180910390a3613397848484613a05565b50505050565b60006133a830611270565b90506000601e54601c54601d546133bf9190614430565b6133c99190614430565b90506000808314806133db5750600082145b156133e857505050613838565b60146009546133f791906142e4565b83111561341057601460095461340d91906142e4565b92505b6000600283601d548661342391906142e4565b61342d919061436d565b613437919061436d565b9050600061344e8286613a0a90919063ffffffff16565b9050600047905061345e82613a20565b60006134738247613a0a90919063ffffffff16565b9050600061349e87613490601c54856130f090919063ffffffff16565b61310690919063ffffffff16565b905060006134c9886134bb601e54866130f090919063ffffffff16565b61310690919063ffffffff16565b905060008183856134da9190615096565b6134e49190615096565b90506000601d819055506000601c819055506000601e819055506000600267ffffffffffffffff81111561351b5761351a61515c565b5b6040519080825280602002602001820160405280156135495781602001602082028036833780820191505090505b5090507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156135b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135db91906151a0565b816000815181106135ef576135ee6151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507364df3aab3b21cc275bb76c4a581cf8b726478ee081600181518110613652576136516151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663b6f9de9584600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161370f94939291906152f5565b6000604051808303818588803b15801561372857600080fd5b505af115801561373c573d6000803e3d6000fd5b50505050506000881180156137515750600082115b1561379e576137608883613c5d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618783601d5460405161379593929190615341565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137e4906153a9565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508099505050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a6040518263ffffffff1660e01b815260040161389e9190614083565b602060405180830381865afa1580156138bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138df9190614a95565b9050600061390c6127106138fe600b54856130f090919063ffffffff16565b61310690919063ffffffff16565b90506000811115613945576139447f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a61dead8361311c565b5b60007f000000000000000000000000858980c8afef45de598487b88628da8d9ba5a42a90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156139b257600080fd5b505af11580156139c6573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613a189190615096565b905092915050565b6000600267ffffffffffffffff811115613a3d57613a3c61515c565b5b604051908082528060200260200182016040528015613a6b5781602001602082028036833780820191505090505b5090503081600081518110613a8357613a826151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b4c91906151a0565b81600181518110613b6057613b5f6151cd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bc5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c279594939291906153be565b600060405180830381600087803b158015613c4157600080fd5b505af1158015613c55573d6000803e3d6000fd5b505050505050565b613c88307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611f1c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d0f96959493929190615418565b60606040518083038185885af1158015613d2d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d529190615479565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d93578082015181840152602081019050613d78565b83811115613da2576000848401525b50505050565b6000601f19601f8301169050919050565b6000613dc482613d59565b613dce8185613d64565b9350613dde818560208601613d75565b613de781613da8565b840191505092915050565b60006020820190508181036000830152613e0c8184613db9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e4482613e19565b9050919050565b613e5481613e39565b8114613e5f57600080fd5b50565b600081359050613e7181613e4b565b92915050565b6000819050919050565b613e8a81613e77565b8114613e9557600080fd5b50565b600081359050613ea781613e81565b92915050565b60008060408385031215613ec457613ec3613e14565b5b6000613ed285828601613e62565b9250506020613ee385828601613e98565b9150509250929050565b60008115159050919050565b613f0281613eed565b82525050565b6000602082019050613f1d6000830184613ef9565b92915050565b600060208284031215613f3957613f38613e14565b5b6000613f4784828501613e62565b91505092915050565b6000819050919050565b6000613f75613f70613f6b84613e19565b613f50565b613e19565b9050919050565b6000613f8782613f5a565b9050919050565b6000613f9982613f7c565b9050919050565b613fa981613f8e565b82525050565b6000602082019050613fc46000830184613fa0565b92915050565b613fd381613e77565b82525050565b6000602082019050613fee6000830184613fca565b92915050565b60006020828403121561400a57614009613e14565b5b600061401884828501613e98565b91505092915050565b60008060006060848603121561403a57614039613e14565b5b600061404886828701613e62565b935050602061405986828701613e62565b925050604061406a86828701613e98565b9150509250925092565b61407d81613e39565b82525050565b60006020820190506140986000830184614074565b92915050565b600060ff82169050919050565b6140b48161409e565b82525050565b60006020820190506140cf60008301846140ab565b92915050565b6140de81613eed565b81146140e957600080fd5b50565b6000813590506140fb816140d5565b92915050565b60008060006060848603121561411a57614119613e14565b5b600061412886828701613e98565b935050602061413986828701613e98565b925050604061414a868287016140ec565b9150509250925092565b6000806040838503121561416b5761416a613e14565b5b600061417985828601613e62565b925050602061418a858286016140ec565b9150509250929050565b6000806000606084860312156141ad576141ac613e14565b5b60006141bb86828701613e98565b93505060206141cc86828701613e98565b92505060406141dd86828701613e98565b9150509250925092565b6000602082840312156141fd576141fc613e14565b5b600061420b848285016140ec565b91505092915050565b6000806040838503121561422b5761422a613e14565b5b600061423985828601613e62565b925050602061424a85828601613e62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061429b57607f821691505b602082108114156142af576142ae614254565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006142ef82613e77565b91506142fa83613e77565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614333576143326142b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061437882613e77565b915061438383613e77565b9250826143935761439261433e565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006143fa602f83613d64565b91506144058261439e565b604082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b600061443b82613e77565b915061444683613e77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561447b5761447a6142b5565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b60006144e2603383613d64565b91506144ed82614486565b604082019050919050565b60006020820190508181036000830152614511816144d5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614574603083613d64565b915061457f82614518565b604082019050919050565b600060208201905081810360008301526145a381614567565b9050919050565b7f4d757374206b656570206665657320617420313225206f72206c657373000000600082015250565b60006145e0601d83613d64565b91506145eb826145aa565b602082019050919050565b6000602082019050818103600083015261460f816145d3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614672603983613d64565b915061467d82614616565b604082019050919050565b600060208201905081810360008301526146a181614665565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614704602583613d64565b915061470f826146a8565b604082019050919050565b60006020820190508181036000830152614733816146f7565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614796602483613d64565b91506147a18261473a565b604082019050919050565b600060208201905081810360008301526147c581614789565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e30303030312520746f74616c20737570706c792e000000000000000000602082015250565b6000614828603783613d64565b9150614833826147cc565b604082019050919050565b600060208201905081810360008301526148578161481b565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148ba603483613d64565b91506148c58261485e565b604082019050919050565b600060208201905081810360008301526148e9816148ad565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061494c602683613d64565b9150614957826148f0565b604082019050919050565b6000602082019050818103600083015261497b8161493f565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006149b8602083613d64565b91506149c382614982565b602082019050919050565b600060208201905081810360008301526149e7816149ab565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000614a4a602a83613d64565b9150614a55826149ee565b604082019050919050565b60006020820190508181036000830152614a7981614a3d565b9050919050565b600081519050614a8f81613e81565b92915050565b600060208284031215614aab57614aaa613e14565b5b6000614ab984828501614a80565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b1e602483613d64565b9150614b2982614ac2565b604082019050919050565b60006020820190508181036000830152614b4d81614b11565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bb0602283613d64565b9150614bbb82614b54565b604082019050919050565b60006020820190508181036000830152614bdf81614ba3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c1c602083613d64565b9150614c2782614be6565b602082019050919050565b60006020820190508181036000830152614c4b81614c0f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c88601d83613d64565b9150614c9382614c52565b602082019050919050565b60006020820190508181036000830152614cb781614c7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d1a602583613d64565b9150614d2582614cbe565b604082019050919050565b60006020820190508181036000830152614d4981614d0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614dac602383613d64565b9150614db782614d50565b604082019050919050565b60006020820190508181036000830152614ddb81614d9f565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e18601683613d64565b9150614e2382614de2565b602082019050919050565b60006020820190508181036000830152614e4781614e0b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ed0604983613d64565b9150614edb82614e4e565b606082019050919050565b60006020820190508181036000830152614eff81614ec3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614f62603583613d64565b9150614f6d82614f06565b604082019050919050565b60006020820190508181036000830152614f9181614f55565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614fce601383613d64565b9150614fd982614f98565b602082019050919050565b60006020820190508181036000830152614ffd81614fc1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615060603683613d64565b915061506b82615004565b604082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b60006150a182613e77565b91506150ac83613e77565b9250828210156150bf576150be6142b5565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615126602683613d64565b9150615131826150ca565b604082019050919050565b6000602082019050818103600083015261515581615119565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061519a81613e4b565b92915050565b6000602082840312156151b6576151b5613e14565b5b60006151c48482850161518b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061522161521c615217846151fc565b613f50565b613e77565b9050919050565b61523181615206565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61526c81613e39565b82525050565b600061527e8383615263565b60208301905092915050565b6000602082019050919050565b60006152a282615237565b6152ac8185615242565b93506152b783615253565b8060005b838110156152e85781516152cf8882615272565b97506152da8361528a565b9250506001810190506152bb565b5085935050505092915050565b600060808201905061530a6000830187615228565b818103602083015261531c8186615297565b905061532b6040830185614074565b6153386060830184613fca565b95945050505050565b60006060820190506153566000830186613fca565b6153636020830185613fca565b6153706040830184613fca565b949350505050565b600081905092915050565b50565b6000615393600083615378565b915061539e82615383565b600082019050919050565b60006153b482615386565b9150819050919050565b600060a0820190506153d36000830188613fca565b6153e06020830187615228565b81810360408301526153f28186615297565b90506154016060830185614074565b61540e6080830184613fca565b9695505050505050565b600060c08201905061542d6000830189614074565b61543a6020830188613fca565b6154476040830187615228565b6154546060830186615228565b6154616080830185614074565b61546e60a0830184613fca565b979650505050505050565b60008060006060848603121561549257615491613e14565b5b60006154a086828701614a80565b93505060206154b186828701614a80565b92505060406154c286828701614a80565b915050925092509256fea264697066735822122032fb0d42c3517ee33ce08f6470ba0495a3058f72b456e1bec4050d8ba642cb8a64736f6c634300080a0033

Deployed Bytecode Sourcemap

32737:19678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16659:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19010:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34370:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32819:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17779:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41513:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33384:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33199:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34154:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38827:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19791:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32922:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33294:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33255:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17621:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20495:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32877:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33482:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41678:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33969:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33562:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17950:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10082:103;;;;;;;;;;;;;:::i;:::-;;49997:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37931:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39374:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33014:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33862;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39745:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37724:155;;;;;;;;;;;;;:::i;:::-;;9434:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33051:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34004:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39637:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16878:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40766:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33936:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33438:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34194:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34080:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21236:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33346:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18283:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41274:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34591:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33522:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40576:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40156:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39110:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33780:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33084:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38318:501;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33828:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18539:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33126:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38113:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33899:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10340:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34042:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33166:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51356:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16659:100;16713:13;16746:5;16739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16659:100;:::o;19010:201::-;19093:4;19110:13;19126:12;:10;:12::i;:::-;19110:28;;19149:32;19158:5;19165:7;19174:6;19149:8;:32::i;:::-;19199:4;19192:11;;;19010:201;;;;:::o;34370:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32819:51::-;;;:::o;17779:108::-;17840:7;17867:12;;17860:19;;17779:108;:::o;41513:157::-;9320:13;:11;:13::i;:::-;41620:9:::1;;;;;;;;;;;41592:38;;41609:9;41592:38;;;;;;;;;;;;41653:9;41641;;:21;;;;;;;;;;;;;;;;;;41513:157:::0;:::o;33384:47::-;;;;:::o;33199:36::-;;;;:::o;34154:33::-;;;;:::o;34114:::-;;;;:::o;38827:275::-;9320:13;:11;:13::i;:::-;38964:4:::1;38956;38951:1;38935:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38934:26;;;;:::i;:::-;38933:35;;;;:::i;:::-;38923:6;:45;;38901:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39087:6;39077;:17;;;;:::i;:::-;39054:20;:40;;;;38827:275:::0;:::o;19791:295::-;19922:4;19939:15;19957:12;:10;:12::i;:::-;19939:30;;19980:38;19996:4;20002:7;20011:6;19980:15;:38::i;:::-;20029:27;20039:4;20045:2;20049:6;20029:9;:27::i;:::-;20074:4;20067:11;;;19791:295;;;;;:::o;32922:53::-;32968:6;32922:53;:::o;33294:45::-;;;;:::o;33255:32::-;;;;;;;;;;;;;:::o;17621:93::-;17679:5;17704:2;17697:9;;17621:93;:::o;20495:238::-;20583:4;20600:13;20616:12;:10;:12::i;:::-;20600:28;;20639:64;20648:5;20655:7;20692:10;20664:25;20674:5;20681:7;20664:9;:25::i;:::-;:38;;;;:::i;:::-;20639:8;:64::i;:::-;20721:4;20714:11;;;20495:238;;;;:::o;32877:38::-;;;:::o;33482:33::-;;;;;;;;;;;;;:::o;41678:126::-;41744:4;41768:19;:28;41788:7;41768:28;;;;;;;;;;;;;;;;;;;;;;;;;41761:35;;41678:126;;;:::o;33969:28::-;;;;:::o;33562:31::-;;;;;;;;;;;;;:::o;17950:127::-;18024:7;18051:9;:18;18061:7;18051:18;;;;;;;;;;;;;;;;18044:25;;17950:127;;;:::o;10082:103::-;9320:13;:11;:13::i;:::-;10147:30:::1;10174:1;10147:18;:30::i;:::-;10082:103::o:0;49997:555::-;9320:13;:11;:13::i;:::-;50199:3:::1;50176:19;:26;;50154:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50326:4;50314:8;:16;;:33;;;;;50346:1;50334:8;:13;;50314:33;50292:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50452:19;50434:15;:37;;;;50501:8;50482:16;:27;;;;50536:8;50520:13;;:24;;;;;;;;;;;;;;;;;;49997:555:::0;;;:::o;37931:121::-;37983:4;9320:13;:11;:13::i;:::-;38017:5:::1;38000:14;;:22;;;;;;;;;;;;;;;;;;38040:4;38033:11;;37931:121:::0;:::o;39374:167::-;9320:13;:11;:13::i;:::-;39529:4:::1;39487:31;:39;39519:6;39487:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39374:167:::0;;:::o;33014:30::-;;;;;;;;;;;;;:::o;33862:::-;;;;:::o;39745:403::-;9320:13;:11;:13::i;:::-;39913::::1;39895:15;:31;;;;39955:13;39937:15;:31;;;;39991:7;39979:9;:19;;;;40060:9;;40042:15;;40024;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40009:12;:60;;;;40104:2;40088:12;;:18;;40080:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39745:403:::0;;;:::o;37724:155::-;9320:13;:11;:13::i;:::-;37795:4:::1;37779:13;;:20;;;;;;;;;;;;;;;;;;37824:4;37810:11;;:18;;;;;;;;;;;;;;;;;;37856:15;37839:14;:32;;;;37724:155::o:0;9434:87::-;9480:7;9507:6;;;;;;;;;;;9500:13;;9434:87;:::o;33051:24::-;;;;;;;;;;;;;:::o;34004:31::-;;;;:::o;39637:100::-;9320:13;:11;:13::i;:::-;39722:7:::1;39708:11;;:21;;;;;;;;;;;;;;;;;;39637:100:::0;:::o;16878:104::-;16934:13;16967:7;16960:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16878:104;:::o;40766:304::-;9320:13;:11;:13::i;:::-;40910::::1;40902:21;;:4;:21;;;;40880:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41021:41;41050:4;41056:5;41021:28;:41::i;:::-;40766:304:::0;;:::o;33936:24::-;;;;:::o;33438:35::-;;;;:::o;34194:27::-;;;;:::o;34080:25::-;;;;:::o;21236:436::-;21329:4;21346:13;21362:12;:10;:12::i;:::-;21346:28;;21385:24;21412:25;21422:5;21429:7;21412:9;:25::i;:::-;21385:52;;21476:15;21456:16;:35;;21448:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21569:60;21578:5;21585:7;21613:15;21594:16;:34;21569:8;:60::i;:::-;21660:4;21653:11;;;;21236:436;;;;:::o;33346:29::-;;;;:::o;18283:193::-;18362:4;18379:13;18395:12;:10;:12::i;:::-;18379:28;;18418;18428:5;18435:2;18439:6;18418:9;:28::i;:::-;18464:4;18457:11;;;18283:193;;;;:::o;41274:231::-;9320:13;:11;:13::i;:::-;41434:15:::1;;;;;;;;;;;41391:59;;41414:18;41391:59;;;;;;;;;;;;41479:18;41461:15;;:36;;;;;;;;;;;;;;;;;;41274:231:::0;:::o;34591:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33522:33::-;;;;;;;;;;;;;:::o;40576:182::-;9320:13;:11;:13::i;:::-;40692:8:::1;40661:19;:28;40681:7;40661:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40732:7;40716:34;;;40741:8;40716:34;;;;;;:::i;:::-;;;;;;;;40576:182:::0;;:::o;40156:412::-;9320:13;:11;:13::i;:::-;40326::::1;40307:16;:32;;;;40369:13;40350:16;:32;;;;40406:7;40393:10;:20;;;;40478:10;;40459:16;;40440;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40424:13;:64;;;;40524:2;40507:13;;:19;;40499:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40156:412:::0;;;:::o;39110:256::-;9320:13;:11;:13::i;:::-;39250:4:::1;39242;39237:1;39221:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39220:26;;;;:::i;:::-;39219:35;;;;:::i;:::-;39209:6;:45;;39187:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39351:6;39341;:17;;;;:::i;:::-;39329:9;:29;;;;39110:256:::0;:::o;33780:39::-;;;;;;;;;;;;;:::o;33084:35::-;;;;:::o;38318:501::-;38426:4;9320:13;:11;:13::i;:::-;38505:8:::1;38500:1;38484:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38483:30;;;;:::i;:::-;38470:9;:43;;38448:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38664:4;38659:1;38643:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38642:26;;;;:::i;:::-;38629:9;:39;;38607:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38780:9;38759:18;:30;;;;38807:4;38800:11;;38318:501:::0;;;:::o;33828:27::-;;;;:::o;18539:151::-;18628:7;18655:11;:18;18667:5;18655:18;;;;;;;;;;;;;;;:27;18674:7;18655:27;;;;;;;;;;;;;;;;18648:34;;18539:151;;;;:::o;33126:33::-;;;;:::o;38113:135::-;38173:4;9320:13;:11;:13::i;:::-;38213:5:::1;38190:20;;:28;;;;;;;;;;;;;;;;;;38236:4;38229:11;;38113:135:::0;:::o;33899:30::-;;;;:::o;10340:201::-;9320:13;:11;:13::i;:::-;10449:1:::1;10429:22;;:8;:22;;;;10421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10505:28;10524:8;10505:18;:28::i;:::-;10340:201:::0;:::o;34042:31::-;;;;:::o;33166:24::-;;;;:::o;51356:1056::-;51467:4;9320:13;:11;:13::i;:::-;51552:19:::1;;51529:20;;:42;;;;:::i;:::-;51511:15;:60;51489:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51661:4;51650:7;:15;;51642:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51746:15;51723:20;:38;;;;51816:28;51847:4;:14;;;51862:13;51847:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51816:60;;51926:20;51949:44;51987:5;51949:33;51974:7;51949:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51926:67;;52113:1;52098:12;:16;52094:110;;;52131:61;52147:13;52170:6;52179:12;52131:15;:61::i;:::-;52094:110;52279:19;52316:13;52279:51;;52341:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52368:14;;;;;;;;;;52400:4;52393:11;;;;;51356:1056:::0;;;:::o;7985:98::-;8038:7;8065:10;8058:17;;7985:98;:::o;24861:380::-;25014:1;24997:19;;:5;:19;;;;24989:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25095:1;25076:21;;:7;:21;;;;25068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25179:6;25149:11;:18;25161:5;25149:18;;;;;;;;;;;;;;;:27;25168:7;25149:27;;;;;;;;;;;;;;;:36;;;;25217:7;25201:32;;25210:5;25201:32;;;25226:6;25201:32;;;;;;:::i;:::-;;;;;;;;24861:380;;;:::o;9599:132::-;9674:12;:10;:12::i;:::-;9663:23;;:7;:5;:7::i;:::-;:23;;;9655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9599:132::o;25532:453::-;25667:24;25694:25;25704:5;25711:7;25694:9;:25::i;:::-;25667:52;;25754:17;25734:16;:37;25730:248;;25816:6;25796:16;:26;;25788:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25900:51;25909:5;25916:7;25944:6;25925:16;:25;25900:8;:51::i;:::-;25730:248;25656:329;25532:453;;;:::o;41862:5011::-;42010:1;41994:18;;:4;:18;;;;41986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42087:1;42073:16;;:2;:16;;;;42065:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42156:1;42146:6;:11;42142:93;;;42174:28;42190:4;42196:2;42200:1;42174:15;:28::i;:::-;42217:7;;42142:93;42251:14;;;;;;;;;;;42247:2487;;;42312:7;:5;:7::i;:::-;42304:15;;:4;:15;;;;:49;;;;;42346:7;:5;:7::i;:::-;42340:13;;:2;:13;;;;42304:49;:86;;;;;42388:1;42374:16;;:2;:16;;;;42304:86;:128;;;;;42425:6;42411:21;;:2;:21;;;;42304:128;:158;;;;;42454:8;;;;;;;;;;;42453:9;42304:158;42282:2441;;;42502:13;;;;;;;;;;;42497:223;;42574:19;:25;42594:4;42574:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42603:19;:23;42623:2;42603:23;;;;;;;;;;;;;;;;;;;;;;;;;42574:52;42540:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42497:223;42876:20;;;;;;;;;;;42872:641;;;42957:7;:5;:7::i;:::-;42951:13;;:2;:13;;;;:72;;;;;43007:15;42993:30;;:2;:30;;;;42951:72;:129;;;;;43066:13;43052:28;;:2;:28;;;;42951:129;42921:573;;;43244:12;43169:28;:39;43198:9;43169:39;;;;;;;;;;;;;;;;:87;43131:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43458:12;43416:28;:39;43445:9;43416:39;;;;;;;;;;;;;;;:54;;;;42921:573;42872:641;43587:25;:31;43613:4;43587:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43644:31;:35;43676:2;43644:35;;;;;;;;;;;;;;;;;;;;;;;;;43643:36;43587:92;43561:1147;;;43766:20;;43756:6;:30;;43722:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43974:9;;43957:13;43967:2;43957:9;:13::i;:::-;43948:6;:22;;;;:::i;:::-;:35;;43914:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43561:1147;;;44152:25;:29;44178:2;44152:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44207:31;:37;44239:4;44207:37;;;;;;;;;;;;;;;;;;;;;;;;;44206:38;44152:92;44126:582;;;44331:20;;44321:6;:30;;44287:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44126:582;;;44488:31;:35;44520:2;44488:35;;;;;;;;;;;;;;;;;;;;;;;;;44483:225;;44608:9;;44591:13;44601:2;44591:9;:13::i;:::-;44582:6;:22;;;;:::i;:::-;:35;;44548:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44483:225;44126:582;43561:1147;42282:2441;42247:2487;44746:28;44777:24;44795:4;44777:9;:24::i;:::-;44746:55;;44814:12;44853:18;;44829:20;:42;;44814:57;;44902:7;:35;;;;;44926:11;;;;;;;;;;;44902:35;:61;;;;;44955:8;;;;;;;;;;;44954:9;44902:61;:110;;;;;44981:25;:31;45007:4;44981:31;;;;;;;;;;;;;;;;;;;;;;;;;44980:32;44902:110;:153;;;;;45030:19;:25;45050:4;45030:25;;;;;;;;;;;;;;;;;;;;;;;;;45029:26;44902:153;:194;;;;;45073:19;:23;45093:2;45073:23;;;;;;;;;;;;;;;;;;;;;;;;;45072:24;44902:194;44884:326;;;45134:4;45123:8;;:15;;;;;;;;;;;;;;;;;;45155:10;:8;:10::i;:::-;45193:5;45182:8;;:16;;;;;;;;;;;;;;;;;;44884:326;45241:8;;;;;;;;;;;45240:9;:55;;;;;45266:25;:29;45292:2;45266:29;;;;;;;;;;;;;;;;;;;;;;;;;45240:55;:85;;;;;45312:13;;;;;;;;;;;45240:85;:153;;;;;45378:15;;45361:14;;:32;;;;:::i;:::-;45342:15;:51;;45240:153;:196;;;;;45411:19;:25;45431:4;45411:25;;;;;;;;;;;;;;;;;;;;;;;;;45410:26;45240:196;45222:282;;;45463:29;:27;:29::i;:::-;;45222:282;45516:12;45532:8;;;;;;;;;;;45531:9;45516:24;;45642:19;:25;45662:4;45642:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45671:19;:23;45691:2;45671:23;;;;;;;;;;;;;;;;;;;;;;;;;45642:52;45638:100;;;45721:5;45711:15;;45638:100;45750:12;45855:7;45851:969;;;45907:25;:29;45933:2;45907:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45956:1;45940:13;;:17;45907:50;45903:768;;;45985:34;46015:3;45985:25;45996:13;;45985:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45978:41;;46088:13;;46068:16;;46061:4;:23;;;;:::i;:::-;46060:41;;;;:::i;:::-;46038:18;;:63;;;;;;;:::i;:::-;;;;;;;;46158:13;;46144:10;;46137:4;:17;;;;:::i;:::-;46136:35;;;;:::i;:::-;46120:12;;:51;;;;;;;:::i;:::-;;;;;;;;46240:13;;46220:16;;46213:4;:23;;;;:::i;:::-;46212:41;;;;:::i;:::-;46190:18;;:63;;;;;;;:::i;:::-;;;;;;;;45903:768;;;46315:25;:31;46341:4;46315:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46365:1;46350:12;;:16;46315:51;46311:360;;;46394:33;46423:3;46394:24;46405:12;;46394:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46387:40;;46495:12;;46476:15;;46469:4;:22;;;;:::i;:::-;46468:39;;;;:::i;:::-;46446:18;;:61;;;;;;;:::i;:::-;;;;;;;;46563:12;;46550:9;;46543:4;:16;;;;:::i;:::-;46542:33;;;;:::i;:::-;46526:12;;:49;;;;;;;:::i;:::-;;;;;;;;46643:12;;46624:15;;46617:4;:22;;;;:::i;:::-;46616:39;;;;:::i;:::-;46594:18;;:61;;;;;;;:::i;:::-;;;;;;;;46311:360;45903:768;46698:1;46691:4;:8;46687:91;;;46720:42;46736:4;46750;46757;46720:15;:42::i;:::-;46687:91;46804:4;46794:14;;;;;:::i;:::-;;;45851:969;46832:33;46848:4;46854:2;46858:6;46832:15;:33::i;:::-;41975:4898;;;;41862:5011;;;;:::o;10701:191::-;10775:16;10794:6;;;;;;;;;;;10775:25;;10820:8;10811:6;;:17;;;;;;;;;;;;;;;;;;10875:8;10844:40;;10865:8;10844:40;;;;;;;;;;;;10764:128;10701:191;:::o;41078:188::-;41195:5;41161:25;:31;41187:4;41161:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41252:5;41218:40;;41246:4;41218:40;;;;;;;;;;;;41078:188;;:::o;3879:98::-;3937:7;3968:1;3964;:5;;;;:::i;:::-;3957:12;;3879:98;;;;:::o;4278:::-;4336:7;4367:1;4363;:5;;;;:::i;:::-;4356:12;;4278:98;;;;:::o;22142:671::-;22289:1;22273:18;;:4;:18;;;;22265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22366:1;22352:16;;:2;:16;;;;22344:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22421:38;22442:4;22448:2;22452:6;22421:20;:38::i;:::-;22472:19;22494:9;:15;22504:4;22494:15;;;;;;;;;;;;;;;;22472:37;;22543:6;22528:11;:21;;22520:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22660:6;22646:11;:20;22628:9;:15;22638:4;22628:15;;;;;;;;;;;;;;;:38;;;;22705:6;22688:9;:13;22698:2;22688:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;22744:2;22729:26;;22738:4;22729:26;;;22748:6;22729:26;;;;;;:::i;:::-;;;;;;;;22768:37;22788:4;22794:2;22798:6;22768:19;:37::i;:::-;22254:559;22142:671;;;:::o;48005:1984::-;48044:23;48070:24;48088:4;48070:9;:24::i;:::-;48044:50;;48105:25;48201:12;;48167:18;;48133;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48105:108;;48224:12;48272:1;48253:15;:20;:46;;;;48298:1;48277:17;:22;48253:46;48249:85;;;48316:7;;;;;48249:85;48389:2;48368:18;;:23;;;;:::i;:::-;48350:15;:41;48346:115;;;48447:2;48426:18;;:23;;;;:::i;:::-;48408:41;;48346:115;48522:23;48635:1;48602:17;48567:18;;48549:15;:36;;;;:::i;:::-;48548:71;;;;:::i;:::-;:88;;;;:::i;:::-;48522:114;;48647:26;48676:36;48696:15;48676;:19;;:36;;;;:::i;:::-;48647:65;;48725:25;48753:21;48725:49;;48787:36;48804:18;48787:16;:36::i;:::-;48836:18;48857:44;48883:17;48857:21;:25;;:44;;;;:::i;:::-;48836:65;;48914:23;48940:81;48993:17;48940:34;48955:18;;48940:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48914:107;;49032:17;49052:51;49085:17;49052:28;49067:12;;49052:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49032:71;;49116:23;49173:9;49155:15;49142:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49116:66;;49216:1;49195:18;:22;;;;49249:1;49228:18;:22;;;;49276:1;49261:12;:16;;;;49290:21;49328:1;49314:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49290:40;;49351:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49341:4;49346:1;49341:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;49402:42;49384:4;49389:1;49384:7;;;;;;;;:::i;:::-;;;;;;;:61;;;;;;;;;;;49456:15;:66;;;49530:9;49541:1;49544:4;49550:9;;;;;;;;;;;49561:15;49456:121;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49612:1;49594:15;:19;:42;;;;;49635:1;49617:15;:19;49594:42;49590:278;;;49653:46;49666:15;49683;49653:12;:46::i;:::-;49719:137;49752:18;49789:15;49823:18;;49719:137;;;;;;;;:::i;:::-;;;;;;;;49590:278;49902:15;;;;;;;;;;;49894:29;;49945:21;49894:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49880:101;;;;;48033:1956;;;;;;;;;;;48005:1984;:::o;50560:788::-;50617:4;50651:15;50634:14;:32;;;;50721:28;50752:4;:14;;;50767:13;50752:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50721:60;;50831:20;50854:77;50915:5;50854:42;50879:16;;50854:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50831:100;;51051:1;51036:12;:16;51032:110;;;51069:61;51085:13;51108:6;51117:12;51069:15;:61::i;:::-;51032:110;51217:19;51254:13;51217:51;;51279:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51306:12;;;;;;;;;;51336:4;51329:11;;;;;50560:788;:::o;26585:125::-;;;;:::o;27314:124::-;;;;:::o;3522:98::-;3580:7;3611:1;3607;:5;;;;:::i;:::-;3600:12;;3522:98;;;;:::o;46881:589::-;47007:21;47045:1;47031:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47007:40;;47076:4;47058;47063:1;47058:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47102:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47092:4;47097:1;47092:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47137:62;47154:4;47169:15;47187:11;47137:8;:62::i;:::-;47238:15;:66;;;47319:11;47345:1;47389:4;47416;47436:15;47238:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46936:534;46881:589;:::o;47478:519::-;47626:62;47643:4;47658:15;47676:11;47626:8;:62::i;:::-;47731:15;:31;;;47770:9;47803:4;47823:11;47849:1;47892;47935:9;;;;;;;;;;;47963:15;47731:258;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47478:519;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:180::-;10249:77;10246:1;10239:88;10346:4;10343:1;10336:15;10370:4;10367:1;10360:15;10387:348;10427:7;10450:20;10468:1;10450:20;:::i;:::-;10445:25;;10484:20;10502:1;10484:20;:::i;:::-;10479:25;;10672:1;10604:66;10600:74;10597:1;10594:81;10589:1;10582:9;10575:17;10571:105;10568:131;;;10679:18;;:::i;:::-;10568:131;10727:1;10724;10720:9;10709:20;;10387:348;;;;:::o;10741:180::-;10789:77;10786:1;10779:88;10886:4;10883:1;10876:15;10910:4;10907:1;10900:15;10927:185;10967:1;10984:20;11002:1;10984:20;:::i;:::-;10979:25;;11018:20;11036:1;11018:20;:::i;:::-;11013:25;;11057:1;11047:35;;11062:18;;:::i;:::-;11047:35;11104:1;11101;11097:9;11092:14;;10927:185;;;;:::o;11118:234::-;11258:34;11254:1;11246:6;11242:14;11235:58;11327:17;11322:2;11314:6;11310:15;11303:42;11118:234;:::o;11358:366::-;11500:3;11521:67;11585:2;11580:3;11521:67;:::i;:::-;11514:74;;11597:93;11686:3;11597:93;:::i;:::-;11715:2;11710:3;11706:12;11699:19;;11358:366;;;:::o;11730:419::-;11896:4;11934:2;11923:9;11919:18;11911:26;;11983:9;11977:4;11973:20;11969:1;11958:9;11954:17;11947:47;12011:131;12137:4;12011:131;:::i;:::-;12003:139;;11730:419;;;:::o;12155:305::-;12195:3;12214:20;12232:1;12214:20;:::i;:::-;12209:25;;12248:20;12266:1;12248:20;:::i;:::-;12243:25;;12402:1;12334:66;12330:74;12327:1;12324:81;12321:107;;;12408:18;;:::i;:::-;12321:107;12452:1;12449;12445:9;12438:16;;12155:305;;;;:::o;12466:238::-;12606:34;12602:1;12594:6;12590:14;12583:58;12675:21;12670:2;12662:6;12658:15;12651:46;12466:238;:::o;12710:366::-;12852:3;12873:67;12937:2;12932:3;12873:67;:::i;:::-;12866:74;;12949:93;13038:3;12949:93;:::i;:::-;13067:2;13062:3;13058:12;13051:19;;12710:366;;;:::o;13082:419::-;13248:4;13286:2;13275:9;13271:18;13263:26;;13335:9;13329:4;13325:20;13321:1;13310:9;13306:17;13299:47;13363:131;13489:4;13363:131;:::i;:::-;13355:139;;13082:419;;;:::o;13507:235::-;13647:34;13643:1;13635:6;13631:14;13624:58;13716:18;13711:2;13703:6;13699:15;13692:43;13507:235;:::o;13748:366::-;13890:3;13911:67;13975:2;13970:3;13911:67;:::i;:::-;13904:74;;13987:93;14076:3;13987:93;:::i;:::-;14105:2;14100:3;14096:12;14089:19;;13748:366;;;:::o;14120:419::-;14286:4;14324:2;14313:9;14309:18;14301:26;;14373:9;14367:4;14363:20;14359:1;14348:9;14344:17;14337:47;14401:131;14527:4;14401:131;:::i;:::-;14393:139;;14120:419;;;:::o;14545:179::-;14685:31;14681:1;14673:6;14669:14;14662:55;14545:179;:::o;14730:366::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:419::-;15268:4;15306:2;15295:9;15291:18;15283:26;;15355:9;15349:4;15345:20;15341:1;15330:9;15326:17;15319:47;15383:131;15509:4;15383:131;:::i;:::-;15375:139;;15102:419;;;:::o;15527:244::-;15667:34;15663:1;15655:6;15651:14;15644:58;15736:27;15731:2;15723:6;15719:15;15712:52;15527:244;:::o;15777:366::-;15919:3;15940:67;16004:2;15999:3;15940:67;:::i;:::-;15933:74;;16016:93;16105:3;16016:93;:::i;:::-;16134:2;16129:3;16125:12;16118:19;;15777:366;;;:::o;16149:419::-;16315:4;16353:2;16342:9;16338:18;16330:26;;16402:9;16396:4;16392:20;16388:1;16377:9;16373:17;16366:47;16430:131;16556:4;16430:131;:::i;:::-;16422:139;;16149:419;;;:::o;16574:224::-;16714:34;16710:1;16702:6;16698:14;16691:58;16783:7;16778:2;16770:6;16766:15;16759:32;16574:224;:::o;16804:366::-;16946:3;16967:67;17031:2;17026:3;16967:67;:::i;:::-;16960:74;;17043:93;17132:3;17043:93;:::i;:::-;17161:2;17156:3;17152:12;17145:19;;16804:366;;;:::o;17176:419::-;17342:4;17380:2;17369:9;17365:18;17357:26;;17429:9;17423:4;17419:20;17415:1;17404:9;17400:17;17393:47;17457:131;17583:4;17457:131;:::i;:::-;17449:139;;17176:419;;;:::o;17601:223::-;17741:34;17737:1;17729:6;17725:14;17718:58;17810:6;17805:2;17797:6;17793:15;17786:31;17601:223;:::o;17830:366::-;17972:3;17993:67;18057:2;18052:3;17993:67;:::i;:::-;17986:74;;18069:93;18158:3;18069:93;:::i;:::-;18187:2;18182:3;18178:12;18171:19;;17830:366;;;:::o;18202:419::-;18368:4;18406:2;18395:9;18391:18;18383:26;;18455:9;18449:4;18445:20;18441:1;18430:9;18426:17;18419:47;18483:131;18609:4;18483:131;:::i;:::-;18475:139;;18202:419;;;:::o;18627:242::-;18767:34;18763:1;18755:6;18751:14;18744:58;18836:25;18831:2;18823:6;18819:15;18812:50;18627:242;:::o;18875:366::-;19017:3;19038:67;19102:2;19097:3;19038:67;:::i;:::-;19031:74;;19114:93;19203:3;19114:93;:::i;:::-;19232:2;19227:3;19223:12;19216:19;;18875:366;;;:::o;19247:419::-;19413:4;19451:2;19440:9;19436:18;19428:26;;19500:9;19494:4;19490:20;19486:1;19475:9;19471:17;19464:47;19528:131;19654:4;19528:131;:::i;:::-;19520:139;;19247:419;;;:::o;19672:239::-;19812:34;19808:1;19800:6;19796:14;19789:58;19881:22;19876:2;19868:6;19864:15;19857:47;19672:239;:::o;19917:366::-;20059:3;20080:67;20144:2;20139:3;20080:67;:::i;:::-;20073:74;;20156:93;20245:3;20156:93;:::i;:::-;20274:2;20269:3;20265:12;20258:19;;19917:366;;;:::o;20289:419::-;20455:4;20493:2;20482:9;20478:18;20470:26;;20542:9;20536:4;20532:20;20528:1;20517:9;20513:17;20506:47;20570:131;20696:4;20570:131;:::i;:::-;20562:139;;20289:419;;;:::o;20714:225::-;20854:34;20850:1;20842:6;20838:14;20831:58;20923:8;20918:2;20910:6;20906:15;20899:33;20714:225;:::o;20945:366::-;21087:3;21108:67;21172:2;21167:3;21108:67;:::i;:::-;21101:74;;21184:93;21273:3;21184:93;:::i;:::-;21302:2;21297:3;21293:12;21286:19;;20945:366;;;:::o;21317:419::-;21483:4;21521:2;21510:9;21506:18;21498:26;;21570:9;21564:4;21560:20;21556:1;21545:9;21541:17;21534:47;21598:131;21724:4;21598:131;:::i;:::-;21590:139;;21317:419;;;:::o;21742:182::-;21882:34;21878:1;21870:6;21866:14;21859:58;21742:182;:::o;21930:366::-;22072:3;22093:67;22157:2;22152:3;22093:67;:::i;:::-;22086:74;;22169:93;22258:3;22169:93;:::i;:::-;22287:2;22282:3;22278:12;22271:19;;21930:366;;;:::o;22302:419::-;22468:4;22506:2;22495:9;22491:18;22483:26;;22555:9;22549:4;22545:20;22541:1;22530:9;22526:17;22519:47;22583:131;22709:4;22583:131;:::i;:::-;22575:139;;22302:419;;;:::o;22727:229::-;22867:34;22863:1;22855:6;22851:14;22844:58;22936:12;22931:2;22923:6;22919:15;22912:37;22727:229;:::o;22962:366::-;23104:3;23125:67;23189:2;23184:3;23125:67;:::i;:::-;23118:74;;23201:93;23290:3;23201:93;:::i;:::-;23319:2;23314:3;23310:12;23303:19;;22962:366;;;:::o;23334:419::-;23500:4;23538:2;23527:9;23523:18;23515:26;;23587:9;23581:4;23577:20;23573:1;23562:9;23558:17;23551:47;23615:131;23741:4;23615:131;:::i;:::-;23607:139;;23334:419;;;:::o;23759:143::-;23816:5;23847:6;23841:13;23832:22;;23863:33;23890:5;23863:33;:::i;:::-;23759:143;;;;:::o;23908:351::-;23978:6;24027:2;24015:9;24006:7;24002:23;23998:32;23995:119;;;24033:79;;:::i;:::-;23995:119;24153:1;24178:64;24234:7;24225:6;24214:9;24210:22;24178:64;:::i;:::-;24168:74;;24124:128;23908:351;;;;:::o;24265:223::-;24405:34;24401:1;24393:6;24389:14;24382:58;24474:6;24469:2;24461:6;24457:15;24450:31;24265:223;:::o;24494:366::-;24636:3;24657:67;24721:2;24716:3;24657:67;:::i;:::-;24650:74;;24733:93;24822:3;24733:93;:::i;:::-;24851:2;24846:3;24842:12;24835:19;;24494:366;;;:::o;24866:419::-;25032:4;25070:2;25059:9;25055:18;25047:26;;25119:9;25113:4;25109:20;25105:1;25094:9;25090:17;25083:47;25147:131;25273:4;25147:131;:::i;:::-;25139:139;;24866:419;;;:::o;25291:221::-;25431:34;25427:1;25419:6;25415:14;25408:58;25500:4;25495:2;25487:6;25483:15;25476:29;25291:221;:::o;25518:366::-;25660:3;25681:67;25745:2;25740:3;25681:67;:::i;:::-;25674:74;;25757:93;25846:3;25757:93;:::i;:::-;25875:2;25870:3;25866:12;25859:19;;25518:366;;;:::o;25890:419::-;26056:4;26094:2;26083:9;26079:18;26071:26;;26143:9;26137:4;26133:20;26129:1;26118:9;26114:17;26107:47;26171:131;26297:4;26171:131;:::i;:::-;26163:139;;25890:419;;;:::o;26315:182::-;26455:34;26451:1;26443:6;26439:14;26432:58;26315:182;:::o;26503:366::-;26645:3;26666:67;26730:2;26725:3;26666:67;:::i;:::-;26659:74;;26742:93;26831:3;26742:93;:::i;:::-;26860:2;26855:3;26851:12;26844:19;;26503:366;;;:::o;26875:419::-;27041:4;27079:2;27068:9;27064:18;27056:26;;27128:9;27122:4;27118:20;27114:1;27103:9;27099:17;27092:47;27156:131;27282:4;27156:131;:::i;:::-;27148:139;;26875:419;;;:::o;27300:179::-;27440:31;27436:1;27428:6;27424:14;27417:55;27300:179;:::o;27485:366::-;27627:3;27648:67;27712:2;27707:3;27648:67;:::i;:::-;27641:74;;27724:93;27813:3;27724:93;:::i;:::-;27842:2;27837:3;27833:12;27826:19;;27485:366;;;:::o;27857:419::-;28023:4;28061:2;28050:9;28046:18;28038:26;;28110:9;28104:4;28100:20;28096:1;28085:9;28081:17;28074:47;28138:131;28264:4;28138:131;:::i;:::-;28130:139;;27857:419;;;:::o;28282:224::-;28422:34;28418:1;28410:6;28406:14;28399:58;28491:7;28486:2;28478:6;28474:15;28467:32;28282:224;:::o;28512:366::-;28654:3;28675:67;28739:2;28734:3;28675:67;:::i;:::-;28668:74;;28751:93;28840:3;28751:93;:::i;:::-;28869:2;28864:3;28860:12;28853:19;;28512:366;;;:::o;28884:419::-;29050:4;29088:2;29077:9;29073:18;29065:26;;29137:9;29131:4;29127:20;29123:1;29112:9;29108:17;29101:47;29165:131;29291:4;29165:131;:::i;:::-;29157:139;;28884:419;;;:::o;29309:222::-;29449:34;29445:1;29437:6;29433:14;29426:58;29518:5;29513:2;29505:6;29501:15;29494:30;29309:222;:::o;29537:366::-;29679:3;29700:67;29764:2;29759:3;29700:67;:::i;:::-;29693:74;;29776:93;29865:3;29776:93;:::i;:::-;29894:2;29889:3;29885:12;29878:19;;29537:366;;;:::o;29909:419::-;30075:4;30113:2;30102:9;30098:18;30090:26;;30162:9;30156:4;30152:20;30148:1;30137:9;30133:17;30126:47;30190:131;30316:4;30190:131;:::i;:::-;30182:139;;29909:419;;;:::o;30334:172::-;30474:24;30470:1;30462:6;30458:14;30451:48;30334:172;:::o;30512:366::-;30654:3;30675:67;30739:2;30734:3;30675:67;:::i;:::-;30668:74;;30751:93;30840:3;30751:93;:::i;:::-;30869:2;30864:3;30860:12;30853:19;;30512:366;;;:::o;30884:419::-;31050:4;31088:2;31077:9;31073:18;31065:26;;31137:9;31131:4;31127:20;31123:1;31112:9;31108:17;31101:47;31165:131;31291:4;31165:131;:::i;:::-;31157:139;;30884:419;;;:::o;31309:297::-;31449:34;31445:1;31437:6;31433:14;31426:58;31518:34;31513:2;31505:6;31501:15;31494:59;31587:11;31582:2;31574:6;31570:15;31563:36;31309:297;:::o;31612:366::-;31754:3;31775:67;31839:2;31834:3;31775:67;:::i;:::-;31768:74;;31851:93;31940:3;31851:93;:::i;:::-;31969:2;31964:3;31960:12;31953:19;;31612:366;;;:::o;31984:419::-;32150:4;32188:2;32177:9;32173:18;32165:26;;32237:9;32231:4;32227:20;32223:1;32212:9;32208:17;32201:47;32265:131;32391:4;32265:131;:::i;:::-;32257:139;;31984:419;;;:::o;32409:240::-;32549:34;32545:1;32537:6;32533:14;32526:58;32618:23;32613:2;32605:6;32601:15;32594:48;32409:240;:::o;32655:366::-;32797:3;32818:67;32882:2;32877:3;32818:67;:::i;:::-;32811:74;;32894:93;32983:3;32894:93;:::i;:::-;33012:2;33007:3;33003:12;32996:19;;32655:366;;;:::o;33027:419::-;33193:4;33231:2;33220:9;33216:18;33208:26;;33280:9;33274:4;33270:20;33266:1;33255:9;33251:17;33244:47;33308:131;33434:4;33308:131;:::i;:::-;33300:139;;33027:419;;;:::o;33452:169::-;33592:21;33588:1;33580:6;33576:14;33569:45;33452:169;:::o;33627:366::-;33769:3;33790:67;33854:2;33849:3;33790:67;:::i;:::-;33783:74;;33866:93;33955:3;33866:93;:::i;:::-;33984:2;33979:3;33975:12;33968:19;;33627:366;;;:::o;33999:419::-;34165:4;34203:2;34192:9;34188:18;34180:26;;34252:9;34246:4;34242:20;34238:1;34227:9;34223:17;34216:47;34280:131;34406:4;34280:131;:::i;:::-;34272:139;;33999:419;;;:::o;34424:241::-;34564:34;34560:1;34552:6;34548:14;34541:58;34633:24;34628:2;34620:6;34616:15;34609:49;34424:241;:::o;34671:366::-;34813:3;34834:67;34898:2;34893:3;34834:67;:::i;:::-;34827:74;;34910:93;34999:3;34910:93;:::i;:::-;35028:2;35023:3;35019:12;35012:19;;34671:366;;;:::o;35043:419::-;35209:4;35247:2;35236:9;35232:18;35224:26;;35296:9;35290:4;35286:20;35282:1;35271:9;35267:17;35260:47;35324:131;35450:4;35324:131;:::i;:::-;35316:139;;35043:419;;;:::o;35468:191::-;35508:4;35528:20;35546:1;35528:20;:::i;:::-;35523:25;;35562:20;35580:1;35562:20;:::i;:::-;35557:25;;35601:1;35598;35595:8;35592:34;;;35606:18;;:::i;:::-;35592:34;35651:1;35648;35644:9;35636:17;;35468:191;;;;:::o;35665:225::-;35805:34;35801:1;35793:6;35789:14;35782:58;35874:8;35869:2;35861:6;35857:15;35850:33;35665:225;:::o;35896:366::-;36038:3;36059:67;36123:2;36118:3;36059:67;:::i;:::-;36052:74;;36135:93;36224:3;36135:93;:::i;:::-;36253:2;36248:3;36244:12;36237:19;;35896:366;;;:::o;36268:419::-;36434:4;36472:2;36461:9;36457:18;36449:26;;36521:9;36515:4;36511:20;36507:1;36496:9;36492:17;36485:47;36549:131;36675:4;36549:131;:::i;:::-;36541:139;;36268:419;;;:::o;36693:180::-;36741:77;36738:1;36731:88;36838:4;36835:1;36828:15;36862:4;36859:1;36852:15;36879:143;36936:5;36967:6;36961:13;36952:22;;36983:33;37010:5;36983:33;:::i;:::-;36879:143;;;;:::o;37028:351::-;37098:6;37147:2;37135:9;37126:7;37122:23;37118:32;37115:119;;;37153:79;;:::i;:::-;37115:119;37273:1;37298:64;37354:7;37345:6;37334:9;37330:22;37298:64;:::i;:::-;37288:74;;37244:128;37028:351;;;;:::o;37385:180::-;37433:77;37430:1;37423:88;37530:4;37527:1;37520:15;37554:4;37551:1;37544:15;37571:85;37616:7;37645:5;37634:16;;37571:85;;;:::o;37662:158::-;37720:9;37753:61;37771:42;37780:32;37806:5;37780:32;:::i;:::-;37771:42;:::i;:::-;37753:61;:::i;:::-;37740:74;;37662:158;;;:::o;37826:147::-;37921:45;37960:5;37921:45;:::i;:::-;37916:3;37909:58;37826:147;;:::o;37979:114::-;38046:6;38080:5;38074:12;38064:22;;37979:114;;;:::o;38099:184::-;38198:11;38232:6;38227:3;38220:19;38272:4;38267:3;38263:14;38248:29;;38099:184;;;;:::o;38289:132::-;38356:4;38379:3;38371:11;;38409:4;38404:3;38400:14;38392:22;;38289:132;;;:::o;38427:108::-;38504:24;38522:5;38504:24;:::i;:::-;38499:3;38492:37;38427:108;;:::o;38541:179::-;38610:10;38631:46;38673:3;38665:6;38631:46;:::i;:::-;38709:4;38704:3;38700:14;38686:28;;38541:179;;;;:::o;38726:113::-;38796:4;38828;38823:3;38819:14;38811:22;;38726:113;;;:::o;38875:732::-;38994:3;39023:54;39071:5;39023:54;:::i;:::-;39093:86;39172:6;39167:3;39093:86;:::i;:::-;39086:93;;39203:56;39253:5;39203:56;:::i;:::-;39282:7;39313:1;39298:284;39323:6;39320:1;39317:13;39298:284;;;39399:6;39393:13;39426:63;39485:3;39470:13;39426:63;:::i;:::-;39419:70;;39512:60;39565:6;39512:60;:::i;:::-;39502:70;;39358:224;39345:1;39342;39338:9;39333:14;;39298:284;;;39302:14;39598:3;39591:10;;38999:608;;;38875:732;;;;:::o;39613:720::-;39848:4;39886:3;39875:9;39871:19;39863:27;;39900:79;39976:1;39965:9;39961:17;39952:6;39900:79;:::i;:::-;40026:9;40020:4;40016:20;40011:2;40000:9;39996:18;39989:48;40054:108;40157:4;40148:6;40054:108;:::i;:::-;40046:116;;40172:72;40240:2;40229:9;40225:18;40216:6;40172:72;:::i;:::-;40254;40322:2;40311:9;40307:18;40298:6;40254:72;:::i;:::-;39613:720;;;;;;;:::o;40339:442::-;40488:4;40526:2;40515:9;40511:18;40503:26;;40539:71;40607:1;40596:9;40592:17;40583:6;40539:71;:::i;:::-;40620:72;40688:2;40677:9;40673:18;40664:6;40620:72;:::i;:::-;40702;40770:2;40759:9;40755:18;40746:6;40702:72;:::i;:::-;40339:442;;;;;;:::o;40787:147::-;40888:11;40925:3;40910:18;;40787:147;;;;:::o;40940:114::-;;:::o;41060:398::-;41219:3;41240:83;41321:1;41316:3;41240:83;:::i;:::-;41233:90;;41332:93;41421:3;41332:93;:::i;:::-;41450:1;41445:3;41441:11;41434:18;;41060:398;;;:::o;41464:379::-;41648:3;41670:147;41813:3;41670:147;:::i;:::-;41663:154;;41834:3;41827:10;;41464:379;;;:::o;41849:831::-;42112:4;42150:3;42139:9;42135:19;42127:27;;42164:71;42232:1;42221:9;42217:17;42208:6;42164:71;:::i;:::-;42245:80;42321:2;42310:9;42306:18;42297:6;42245:80;:::i;:::-;42372:9;42366:4;42362:20;42357:2;42346:9;42342:18;42335:48;42400:108;42503:4;42494:6;42400:108;:::i;:::-;42392:116;;42518:72;42586:2;42575:9;42571:18;42562:6;42518:72;:::i;:::-;42600:73;42668:3;42657:9;42653:19;42644:6;42600:73;:::i;:::-;41849:831;;;;;;;;:::o;42686:807::-;42935:4;42973:3;42962:9;42958:19;42950:27;;42987:71;43055:1;43044:9;43040:17;43031:6;42987:71;:::i;:::-;43068:72;43136:2;43125:9;43121:18;43112:6;43068:72;:::i;:::-;43150:80;43226:2;43215:9;43211:18;43202:6;43150:80;:::i;:::-;43240;43316:2;43305:9;43301:18;43292:6;43240:80;:::i;:::-;43330:73;43398:3;43387:9;43383:19;43374:6;43330:73;:::i;:::-;43413;43481:3;43470:9;43466:19;43457:6;43413:73;:::i;:::-;42686:807;;;;;;;;;:::o;43499:663::-;43587:6;43595;43603;43652:2;43640:9;43631:7;43627:23;43623:32;43620:119;;;43658:79;;:::i;:::-;43620:119;43778:1;43803:64;43859:7;43850:6;43839:9;43835:22;43803:64;:::i;:::-;43793:74;;43749:128;43916:2;43942:64;43998:7;43989:6;43978:9;43974:22;43942:64;:::i;:::-;43932:74;;43887:129;44055:2;44081:64;44137:7;44128:6;44117:9;44113:22;44081:64;:::i;:::-;44071:74;;44026:129;43499:663;;;;;:::o

Swarm Source

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