ETH Price: $3,282.44 (+0.08%)
Gas: 5 Gwei

Token

Shibarium Cash (SHIBCASH)
 

Overview

Max Total Supply

1,000,000,000 SHIBCASH

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
camelinhaler.eth
Balance
4,800,000 SHIBCASH

Value
$0.00
0x6daedc4ae50216670857629294f918a70d7f87c6
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:
ShibariumCash

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-08
*/

// File: ShibariumCash.sol





/* 
  Shibarium Cash is a crypto mixer built on the Shibarium network. 

    https://shibarium.cash

    t.me/ShibariumCash

*/

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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/
/* pragma solidity >=0.8.10; */

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

contract ShibariumCash 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("Shibarium Cash", "SHIBCASH") {
        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 = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 2;

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

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

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

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

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

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

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

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

    receive() external payable {}

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

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

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

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

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
      
        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;
       
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        
    }

    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
            deadAddress,
            block.timestamp
        );
    }

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600e81526020017f53686962617269756d20436173680000000000000000000000000000000000008152506040518060400160405280600881526020017f534849424341534800000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b15565b5080600490805190602001906200014792919062000b15565b5050506200016a6200015e620005d560201b60201c565b620005dd60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c2f565b6040518363ffffffff1660e01b8152600401620002e992919062000c72565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a360201b60201c565b6200038c60a05160016200078d60201b60201c565b600060029050600080600290506000602390506000806002905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600582620003ed919062000cd8565b620003f9919062000d68565b60098190555086601581905550856016819055508460178190555060175460165460155462000429919062000da0565b62000435919062000da0565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000465919062000da0565b62000471919062000da0565b60188190555073e36b840be7125995aeccc5b8c1fd7f3a6bf5da1e600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e36b840be7125995aeccc5b8c1fd7f3a6bf5da1e600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000543620005356200082e60201b60201c565b60016200085860201b60201c565b620005563060016200085860201b60201c565b6200056b61dead60016200085860201b60201c565b6200058d6200057f6200082e60201b60201c565b6001620006a360201b60201c565b620005a0306001620006a360201b60201c565b620005b561dead6001620006a360201b60201c565b620005c733826200099260201b60201c565b505050505050505062000fbf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b3620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d96200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000e5e565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000868620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088e6200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de9062000e5e565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000986919062000e9d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fc9062000f0a565b60405180910390fd5b62000a196000838362000b0b60201b60201c565b806002600082825462000a2d919062000da0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a84919062000da0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aeb919062000f3d565b60405180910390a362000b076000838362000b1060201b60201c565b5050565b505050565b505050565b82805462000b239062000f89565b90600052602060002090601f01602090048101928262000b47576000855562000b93565b82601f1062000b6257805160ff191683800117855562000b93565b8280016001018555821562000b93579182015b8281111562000b9257825182559160200191906001019062000b75565b5b50905062000ba2919062000ba6565b5090565b5b8082111562000bc157600081600090555060010162000ba7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf78262000bca565b9050919050565b62000c098162000bea565b811462000c1557600080fd5b50565b60008151905062000c298162000bfe565b92915050565b60006020828403121562000c485762000c4762000bc5565b5b600062000c588482850162000c18565b91505092915050565b62000c6c8162000bea565b82525050565b600060408201905062000c89600083018562000c61565b62000c98602083018462000c61565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce58262000c9f565b915062000cf28362000c9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2e5762000d2d62000ca9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d758262000c9f565b915062000d828362000c9f565b92508262000d955762000d9462000d39565b5b828204905092915050565b600062000dad8262000c9f565b915062000dba8362000c9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df25762000df162000ca9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4660208362000dfd565b915062000e538262000e0e565b602082019050919050565b6000602082019050818103600083015262000e798162000e37565b9050919050565b60008115159050919050565b62000e978162000e80565b82525050565b600060208201905062000eb4600083018462000e8c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef2601f8362000dfd565b915062000eff8262000eba565b602082019050919050565b6000602082019050818103600083015262000f258162000ee3565b9050919050565b62000f378162000c9f565b82525050565b600060208201905062000f54600083018462000f2c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa257607f821691505b6020821081141562000fb95762000fb862000f5a565b5b50919050565b60805160a0516159cc620010476000396000818161137701528181611b4101528181612645015281816126fc0152818161272901528181612d6d01528181613e7101528181613f2a0152613f57015260008181610f9001528181612d15015281816140cd015281816141ae015281816141d501528181614271015261429801526159cc6000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143e0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061449b565b610f51565b60405161041c91906144f6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614511565b610f6f565b60405161045991906144f6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061459d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145c7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614511565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145c7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145c7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145c7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145c7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145e2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061460f565b6111a9565b6040516105ea91906144f6565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b6040516106159190614671565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b60405161064091906145c7565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b91906144f6565b60405180910390f35b34801561068057600080fd5b506106896112c0565b60405161069691906146a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061449b565b6112c9565b6040516106d391906144f6565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe9190614671565b60405180910390f35b34801561071357600080fd5b5061071c611399565b60405161072991906144f6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614511565b6113ac565b60405161076691906144f6565b60405180910390f35b34801561077b57600080fd5b50610784611402565b60405161079191906145c7565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc91906144f6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614511565b61141b565b6040516107f991906145c7565b60405180910390f35b34801561080e57600080fd5b50610817611463565b005b34801561082557600080fd5b50610840600480360381019061083b91906146ef565b6114eb565b005b34801561084e57600080fd5b5061085761162b565b60405161086491906144f6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614742565b6116cb565b005b3480156108a257600080fd5b506108ab6117a2565b6040516108b89190614671565b60405180910390f35b3480156108cd57600080fd5b506108d66117c8565b6040516108e391906145c7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614782565b6117ce565b005b34801561092157600080fd5b5061092a611887565b005b34801561093857600080fd5b50610941611942565b60405161094e9190614671565b60405180910390f35b34801561096357600080fd5b5061096c61196c565b6040516109799190614671565b60405180910390f35b34801561098e57600080fd5b50610997611992565b6040516109a491906145c7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906147d5565b611998565b005b3480156109e257600080fd5b506109eb611a31565b6040516109f891906143e0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614742565b611ac3565b005b348015610a3657600080fd5b50610a3f611bdc565b604051610a4c91906145c7565b60405180910390f35b348015610a6157600080fd5b50610a6a611be2565b604051610a7791906145c7565b60405180910390f35b348015610a8c57600080fd5b50610a95611be8565b604051610aa291906145c7565b60405180910390f35b348015610ab757600080fd5b50610ac0611bee565b604051610acd91906145c7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061449b565b611bf4565b604051610b0a91906144f6565b60405180910390f35b348015610b1f57600080fd5b50610b28611cdf565b604051610b3591906145c7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061449b565b611ce5565b604051610b7291906144f6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614511565b611d03565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614511565b611e3f565b604051610bd891906144f6565b60405180910390f35b348015610bed57600080fd5b50610bf6611e5f565b604051610c0391906144f6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614742565b611e72565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614782565b611f97565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145e2565b612050565b005b348015610c9357600080fd5b50610c9c61215f565b604051610ca991906144f6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612172565b604051610cd491906145c7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145e2565b612178565b604051610d1191906144f6565b60405180910390f35b348015610d2657600080fd5b50610d2f6122cd565b604051610d3c91906145c7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614802565b6122d3565b604051610d7991906145c7565b60405180910390f35b348015610d8e57600080fd5b50610d9761235a565b604051610da491906145c7565b60405180910390f35b348015610db957600080fd5b50610dc2612360565b604051610dcf91906144f6565b60405180910390f35b348015610de457600080fd5b50610ded612400565b604051610dfa91906145c7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614511565b612406565b005b348015610e3857600080fd5b50610e416124fe565b604051610e4e91906145c7565b60405180910390f35b348015610e6357600080fd5b50610e6c612504565b604051610e7991906145c7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145e2565b61250a565b604051610eb691906144f6565b60405180910390f35b606060038054610ece90614871565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614871565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127e2565b84846127ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46127e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611942565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906148ef565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186127e2565b73ffffffffffffffffffffffffffffffffffffffff16611136611942565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906148ef565b60405180910390fd5b670de0b6b3a7640000816111a0919061493e565b60088190555050565b60006111b68484846129b5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112016127e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a0a565b60405180910390fd5b6112958561128d6127e2565b8584036127ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d66127e2565b8484600160006112e46127e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614a2a565b6127ea565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611489611942565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906148ef565b60405180910390fd5b6114e9600061374d565b565b6114f36127e2565b73ffffffffffffffffffffffffffffffffffffffff16611511611942565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906148ef565b60405180910390fd5b6102588310156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614af2565b60405180910390fd5b6103e882111580156115bf575060008210155b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614b84565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116356127e2565b73ffffffffffffffffffffffffffffffffffffffff16611653611942565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906148ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116d36127e2565b73ffffffffffffffffffffffffffffffffffffffff166116f1611942565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e906148ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117d66127e2565b73ffffffffffffffffffffffffffffffffffffffff166117f4611942565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906148ef565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118729190614a2a565b61187c9190614a2a565b601481905550505050565b61188f6127e2565b73ffffffffffffffffffffffffffffffffffffffff166118ad611942565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa906148ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119a06127e2565b73ffffffffffffffffffffffffffffffffffffffff166119be611942565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b906148ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a4090614871565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6c90614871565b8015611ab95780601f10611a8e57610100808354040283529160200191611ab9565b820191906000526020600020905b815481529060010190602001808311611a9c57829003601f168201915b5050505050905090565b611acb6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611ae9611942565b73ffffffffffffffffffffffffffffffffffffffff1614611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b36906148ef565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590614c16565b60405180910390fd5b611bd88282613813565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c036127e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614ca8565b60405180910390fd5b611cd4611ccb6127e2565b858584036127ea565b600191505092915050565b600e5481565b6000611cf9611cf26127e2565b84846129b5565b6001905092915050565b611d0b6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611d29611942565b73ffffffffffffffffffffffffffffffffffffffff1614611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d76906148ef565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e7a6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611e98611942565b73ffffffffffffffffffffffffffffffffffffffff1614611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee5906148ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8b91906144f6565b60405180910390a25050565b611f9f6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611942565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906148ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461203b9190614a2a565b6120459190614a2a565b601881905550505050565b6120586127e2565b73ffffffffffffffffffffffffffffffffffffffff16612076611942565b73ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c3906148ef565b60405180910390fd5b670de0b6b3a76400006103e860056120e2610fb2565b6120ec919061493e565b6120f69190614cf7565b6121009190614cf7565b811015612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614d9a565b60405180910390fd5b670de0b6b3a764000081612156919061493e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121826127e2565b73ffffffffffffffffffffffffffffffffffffffff166121a0611942565b73ffffffffffffffffffffffffffffffffffffffff16146121f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ed906148ef565b60405180910390fd5b620186a06001612204610fb2565b61220e919061493e565b6122189190614cf7565b82101561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614e2c565b60405180910390fd5b6103e86005612267610fb2565b612271919061493e565b61227b9190614cf7565b8211156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490614ebe565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061236a6127e2565b73ffffffffffffffffffffffffffffffffffffffff16612388611942565b73ffffffffffffffffffffffffffffffffffffffff16146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d5906148ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61240e6127e2565b73ffffffffffffffffffffffffffffffffffffffff1661242c611942565b73ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612479906148ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e990614f50565b60405180910390fd5b6124fb8161374d565b50565b601a5481565b600a5481565b60006125146127e2565b73ffffffffffffffffffffffffffffffffffffffff16612532611942565b73ffffffffffffffffffffffffffffffffffffffff1614612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f906148ef565b60405180910390fd5b600f546010546125989190614a2a565b42116125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090614fbc565b60405180910390fd5b6103e882111561261e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126159061504e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126809190614671565b602060405180830381865afa15801561269d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c19190615083565b905060006126ec6127106126de86856138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000811115612725576127247f000000000000000000000000000000000000000000000000000000000000000061dead836138e0565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561279257600080fd5b505af11580156127a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561285a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285190615122565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c1906151b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129a891906145c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c906152d8565b60405180910390fd5b6000811415612aaf57612aaa838360006138e0565b613748565b601160009054906101000a900460ff161561317257612acc611942565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b3a5750612b0a611942565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b735750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bad575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc65750600560149054906101000a900460ff16155b1561317157601160019054906101000a900460ff16612cc057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c805750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb690615344565b60405180910390fd5b5b601360009054906101000a900460ff1615612e8857612cdd611942565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d6457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dbc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e875743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e39906153fc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f2b5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd257600854811115612f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6c9061548e565b60405180910390fd5b600a54612f818361141b565b82612f8c9190614a2a565b1115612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906154fa565b60405180910390fd5b613170565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130755750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130c4576008548111156130bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b69061558c565b60405180910390fd5b61316f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661316e57600a546131218361141b565b8261312c9190614a2a565b111561316d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613164906154fa565b60405180910390fd5b5b5b5b5b5b600061317d3061141b565b9050600060095482101590508080156131a25750601160029054906101000a900460ff165b80156131bb5750600560149054906101000a900460ff16155b80156132115750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132675750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132bd5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613301576001600560146101000a81548160ff0219169083151502179055506132e5613b61565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133675750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561337f5750600c60009054906101000a900460ff165b801561339a5750600d54600e546133969190614a2a565b4210155b80156133f05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133ff576133fd613e48565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134bf57600090505b6000811561373857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561352257506000601854115b156135ef5761354f6064613541601854886138b490919063ffffffff16565b6138ca90919063ffffffff16565b9050601854601a5482613562919061493e565b61356c9190614cf7565b601d600082825461357d9190614a2a565b92505081905550601854601b5482613595919061493e565b61359f9190614cf7565b601e60008282546135b09190614a2a565b92505081905550601854601954826135c8919061493e565b6135d29190614cf7565b601c60008282546135e39190614a2a565b92505081905550613714565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561364a57506000601454115b15613713576136776064613669601454886138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506014546016548261368a919061493e565b6136949190614cf7565b601d60008282546136a59190614a2a565b92505081905550601454601754826136bd919061493e565b6136c79190614cf7565b601e60008282546136d89190614a2a565b92505081905550601454601554826136f0919061493e565b6136fa9190614cf7565b601c600082825461370b9190614a2a565b925050819055505b5b6000811115613729576137288730836138e0565b5b808561373591906155ac565b94505b6137438787876138e0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138c2919061493e565b905092915050565b600081836138d89190614cf7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394790615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b7906152d8565b60405180910390fd5b6139cb83838361400e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4890615652565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ae49190614a2a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4891906145c7565b60405180910390a3613b5b848484614013565b50505050565b6000613b6c3061141b565b90506000601e54601c54601d54613b839190614a2a565b613b8d9190614a2a565b9050600080831480613b9f5750600082145b15613bac57505050613e46565b6014600954613bbb919061493e565b831115613bd4576014600954613bd1919061493e565b92505b6000600283601d5486613be7919061493e565b613bf19190614cf7565b613bfb9190614cf7565b90506000613c12828661401890919063ffffffff16565b90506000479050613c228261402e565b6000613c37824761401890919063ffffffff16565b90506000613c6287613c54601c54856138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000613c8d88613c7f601e54866138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000818385613c9e91906155ac565b613ca891906155ac565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d08906156a3565b60006040518083038185875af1925050503d8060008114613d45576040519150601f19603f3d011682016040523d82523d6000602084013e613d4a565b606091505b505080985050600087118015613d605750600081115b15613dad57613d6f878261426b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613da4939291906156b8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613df3906156a3565b60006040518083038185875af1925050503d8060008114613e30576040519150601f19603f3d011682016040523d82523d6000602084013e613e35565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613eac9190614671565b602060405180830381865afa158015613ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eed9190615083565b90506000613f1a612710613f0c600b54856138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000811115613f5357613f527f000000000000000000000000000000000000000000000000000000000000000061dead836138e0565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fc057600080fd5b505af1158015613fd4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361402691906155ac565b905092915050565b6000600267ffffffffffffffff81111561404b5761404a6156ef565b5b6040519080825280602002602001820160405280156140795781602001602082028036833780820191505090505b50905030816000815181106140915761409061571e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061415a9190615762565b8160018151811061416e5761416d61571e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141d3307f0000000000000000000000000000000000000000000000000000000000000000846127ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614235959493929190615888565b600060405180830381600087803b15801561424f57600080fd5b505af1158015614263573d6000803e3d6000fd5b505050505050565b614296307f0000000000000000000000000000000000000000000000000000000000000000846127ea565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142fd969594939291906158e2565b60606040518083038185885af115801561431b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143409190615943565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614381578082015181840152602081019050614366565b83811115614390576000848401525b50505050565b6000601f19601f8301169050919050565b60006143b282614347565b6143bc8185614352565b93506143cc818560208601614363565b6143d581614396565b840191505092915050565b600060208201905081810360008301526143fa81846143a7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061443282614407565b9050919050565b61444281614427565b811461444d57600080fd5b50565b60008135905061445f81614439565b92915050565b6000819050919050565b61447881614465565b811461448357600080fd5b50565b6000813590506144958161446f565b92915050565b600080604083850312156144b2576144b1614402565b5b60006144c085828601614450565b92505060206144d185828601614486565b9150509250929050565b60008115159050919050565b6144f0816144db565b82525050565b600060208201905061450b60008301846144e7565b92915050565b60006020828403121561452757614526614402565b5b600061453584828501614450565b91505092915050565b6000819050919050565b600061456361455e61455984614407565b61453e565b614407565b9050919050565b600061457582614548565b9050919050565b60006145878261456a565b9050919050565b6145978161457c565b82525050565b60006020820190506145b2600083018461458e565b92915050565b6145c181614465565b82525050565b60006020820190506145dc60008301846145b8565b92915050565b6000602082840312156145f8576145f7614402565b5b600061460684828501614486565b91505092915050565b60008060006060848603121561462857614627614402565b5b600061463686828701614450565b935050602061464786828701614450565b925050604061465886828701614486565b9150509250925092565b61466b81614427565b82525050565b60006020820190506146866000830184614662565b92915050565b600060ff82169050919050565b6146a28161468c565b82525050565b60006020820190506146bd6000830184614699565b92915050565b6146cc816144db565b81146146d757600080fd5b50565b6000813590506146e9816146c3565b92915050565b60008060006060848603121561470857614707614402565b5b600061471686828701614486565b935050602061472786828701614486565b9250506040614738868287016146da565b9150509250925092565b6000806040838503121561475957614758614402565b5b600061476785828601614450565b9250506020614778858286016146da565b9150509250929050565b60008060006060848603121561479b5761479a614402565b5b60006147a986828701614486565b93505060206147ba86828701614486565b92505060406147cb86828701614486565b9150509250925092565b6000602082840312156147eb576147ea614402565b5b60006147f9848285016146da565b91505092915050565b6000806040838503121561481957614818614402565b5b600061482785828601614450565b925050602061483885828601614450565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061488957607f821691505b6020821081141561489d5761489c614842565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148d9602083614352565b91506148e4826148a3565b602082019050919050565b60006020820190508181036000830152614908816148cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061494982614465565b915061495483614465565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498d5761498c61490f565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006149f4602883614352565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a3582614465565b9150614a4083614465565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7557614a7461490f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614adc603383614352565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b6e603083614352565b9150614b7982614b12565b604082019050919050565b60006020820190508181036000830152614b9d81614b61565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c00603983614352565b9150614c0b82614ba4565b604082019050919050565b60006020820190508181036000830152614c2f81614bf3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c92602583614352565b9150614c9d82614c36565b604082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d0282614465565b9150614d0d83614465565b925082614d1d57614d1c614cc8565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614d84602483614352565b9150614d8f82614d28565b604082019050919050565b60006020820190508181036000830152614db381614d77565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e16603583614352565b9150614e2182614dba565b604082019050919050565b60006020820190508181036000830152614e4581614e09565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614ea8603483614352565b9150614eb382614e4c565b604082019050919050565b60006020820190508181036000830152614ed781614e9b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f3a602683614352565b9150614f4582614ede565b604082019050919050565b60006020820190508181036000830152614f6981614f2d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fa6602083614352565b9150614fb182614f70565b602082019050919050565b60006020820190508181036000830152614fd581614f99565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615038602a83614352565b915061504382614fdc565b604082019050919050565b600060208201905081810360008301526150678161502b565b9050919050565b60008151905061507d8161446f565b92915050565b60006020828403121561509957615098614402565b5b60006150a78482850161506e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061510c602483614352565b9150615117826150b0565b604082019050919050565b6000602082019050818103600083015261513b816150ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061519e602283614352565b91506151a982615142565b604082019050919050565b600060208201905081810360008301526151cd81615191565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615230602583614352565b915061523b826151d4565b604082019050919050565b6000602082019050818103600083015261525f81615223565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152c2602383614352565b91506152cd82615266565b604082019050919050565b600060208201905081810360008301526152f1816152b5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061532e601683614352565b9150615339826152f8565b602082019050919050565b6000602082019050818103600083015261535d81615321565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153e6604983614352565b91506153f182615364565b606082019050919050565b60006020820190508181036000830152615415816153d9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615478603583614352565b91506154838261541c565b604082019050919050565b600060208201905081810360008301526154a78161546b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154e4601383614352565b91506154ef826154ae565b602082019050919050565b60006020820190508181036000830152615513816154d7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615576603683614352565b91506155818261551a565b604082019050919050565b600060208201905081810360008301526155a581615569565b9050919050565b60006155b782614465565b91506155c283614465565b9250828210156155d5576155d461490f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061563c602683614352565b9150615647826155e0565b604082019050919050565b6000602082019050818103600083015261566b8161562f565b9050919050565b600081905092915050565b50565b600061568d600083615672565b91506156988261567d565b600082019050919050565b60006156ae82615680565b9150819050919050565b60006060820190506156cd60008301866145b8565b6156da60208301856145b8565b6156e760408301846145b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061575c81614439565b92915050565b60006020828403121561577857615777614402565b5b60006157868482850161574d565b91505092915050565b6000819050919050565b60006157b46157af6157aa8461578f565b61453e565b614465565b9050919050565b6157c481615799565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ff81614427565b82525050565b600061581183836157f6565b60208301905092915050565b6000602082019050919050565b6000615835826157ca565b61583f81856157d5565b935061584a836157e6565b8060005b8381101561587b5781516158628882615805565b975061586d8361581d565b92505060018101905061584e565b5085935050505092915050565b600060a08201905061589d60008301886145b8565b6158aa60208301876157bb565b81810360408301526158bc818661582a565b90506158cb6060830185614662565b6158d860808301846145b8565b9695505050505050565b600060c0820190506158f76000830189614662565b61590460208301886145b8565b61591160408301876157bb565b61591e60608301866157bb565b61592b6080830185614662565b61593860a08301846145b8565b979650505050505050565b60008060006060848603121561595c5761595b614402565b5b600061596a8682870161506e565b935050602061597b8682870161506e565b925050604061598c8682870161506e565b915050925092509256fea2646970667358221220cda874b16f559f0d6d580ca727fc06d03e66c3d2a7d6348e5dec938298f7e80864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639ec22c0e14610a555780639fccce3214610a80578063a0d82dc514610aab578063a457c2d714610ad6576103b8565b8063924de9b7116101c1578063924de9b7146109ad57806395d89b41146109d65780639a7a23d614610a015780639c3b4fdc14610a2a576103b8565b80638da5cb5b1461092c5780638ea5220f146109575780639213691314610982576103b8565b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146108965780637bce5a04146108c15780638095d564146108ec5780638a8c523c14610915576103b8565b8063715018a614610802578063730c188814610819578063751039fc146108425780637571336a1461086d576103b8565b80634fbee193116102a65780634fbee193146107325780636a486a8e1461076f5780636ddd17131461079a57806370a08231146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143e0565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a919061449b565b610f51565b60405161041c91906144f6565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614511565b610f6f565b60405161045991906144f6565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b604051610484919061459d565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145c7565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614511565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145c7565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145c7565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145c7565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145c7565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145e2565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d8919061460f565b6111a9565b6040516105ea91906144f6565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b6040516106159190614671565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b60405161064091906145c7565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b91906144f6565b60405180910390f35b34801561068057600080fd5b506106896112c0565b60405161069691906146a8565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061449b565b6112c9565b6040516106d391906144f6565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe9190614671565b60405180910390f35b34801561071357600080fd5b5061071c611399565b60405161072991906144f6565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614511565b6113ac565b60405161076691906144f6565b60405180910390f35b34801561077b57600080fd5b50610784611402565b60405161079191906145c7565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc91906144f6565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190614511565b61141b565b6040516107f991906145c7565b60405180910390f35b34801561080e57600080fd5b50610817611463565b005b34801561082557600080fd5b50610840600480360381019061083b91906146ef565b6114eb565b005b34801561084e57600080fd5b5061085761162b565b60405161086491906144f6565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190614742565b6116cb565b005b3480156108a257600080fd5b506108ab6117a2565b6040516108b89190614671565b60405180910390f35b3480156108cd57600080fd5b506108d66117c8565b6040516108e391906145c7565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190614782565b6117ce565b005b34801561092157600080fd5b5061092a611887565b005b34801561093857600080fd5b50610941611942565b60405161094e9190614671565b60405180910390f35b34801561096357600080fd5b5061096c61196c565b6040516109799190614671565b60405180910390f35b34801561098e57600080fd5b50610997611992565b6040516109a491906145c7565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf91906147d5565b611998565b005b3480156109e257600080fd5b506109eb611a31565b6040516109f891906143e0565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190614742565b611ac3565b005b348015610a3657600080fd5b50610a3f611bdc565b604051610a4c91906145c7565b60405180910390f35b348015610a6157600080fd5b50610a6a611be2565b604051610a7791906145c7565b60405180910390f35b348015610a8c57600080fd5b50610a95611be8565b604051610aa291906145c7565b60405180910390f35b348015610ab757600080fd5b50610ac0611bee565b604051610acd91906145c7565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af8919061449b565b611bf4565b604051610b0a91906144f6565b60405180910390f35b348015610b1f57600080fd5b50610b28611cdf565b604051610b3591906145c7565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b60919061449b565b611ce5565b604051610b7291906144f6565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614511565b611d03565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614511565b611e3f565b604051610bd891906144f6565b60405180910390f35b348015610bed57600080fd5b50610bf6611e5f565b604051610c0391906144f6565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614742565b611e72565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614782565b611f97565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145e2565b612050565b005b348015610c9357600080fd5b50610c9c61215f565b604051610ca991906144f6565b60405180910390f35b348015610cbe57600080fd5b50610cc7612172565b604051610cd491906145c7565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145e2565b612178565b604051610d1191906144f6565b60405180910390f35b348015610d2657600080fd5b50610d2f6122cd565b604051610d3c91906145c7565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614802565b6122d3565b604051610d7991906145c7565b60405180910390f35b348015610d8e57600080fd5b50610d9761235a565b604051610da491906145c7565b60405180910390f35b348015610db957600080fd5b50610dc2612360565b604051610dcf91906144f6565b60405180910390f35b348015610de457600080fd5b50610ded612400565b604051610dfa91906145c7565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614511565b612406565b005b348015610e3857600080fd5b50610e416124fe565b604051610e4e91906145c7565b60405180910390f35b348015610e6357600080fd5b50610e6c612504565b604051610e7991906145c7565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145e2565b61250a565b604051610eb691906144f6565b60405180910390f35b606060038054610ece90614871565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614871565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127e2565b84846127ea565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46127e2565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611942565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f906148ef565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186127e2565b73ffffffffffffffffffffffffffffffffffffffff16611136611942565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611183906148ef565b60405180910390fd5b670de0b6b3a7640000816111a0919061493e565b60088190555050565b60006111b68484846129b5565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112016127e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a0a565b60405180910390fd5b6112958561128d6127e2565b8584036127ea565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d66127e2565b8484600160006112e46127e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614a2a565b6127ea565b6001905092915050565b7f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16781565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146b6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611489611942565b73ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d6906148ef565b60405180910390fd5b6114e9600061374d565b565b6114f36127e2565b73ffffffffffffffffffffffffffffffffffffffff16611511611942565b73ffffffffffffffffffffffffffffffffffffffff1614611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e906148ef565b60405180910390fd5b6102588310156115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a390614af2565b60405180910390fd5b6103e882111580156115bf575060008210155b6115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590614b84565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116356127e2565b73ffffffffffffffffffffffffffffffffffffffff16611653611942565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a0906148ef565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116d36127e2565b73ffffffffffffffffffffffffffffffffffffffff166116f1611942565b73ffffffffffffffffffffffffffffffffffffffff1614611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e906148ef565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117d66127e2565b73ffffffffffffffffffffffffffffffffffffffff166117f4611942565b73ffffffffffffffffffffffffffffffffffffffff161461184a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611841906148ef565b60405180910390fd5b8260158190555081601681905550806017819055506017546016546015546118729190614a2a565b61187c9190614a2a565b601481905550505050565b61188f6127e2565b73ffffffffffffffffffffffffffffffffffffffff166118ad611942565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa906148ef565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119a06127e2565b73ffffffffffffffffffffffffffffffffffffffff166119be611942565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b906148ef565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a4090614871565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6c90614871565b8015611ab95780601f10611a8e57610100808354040283529160200191611ab9565b820191906000526020600020905b815481529060010190602001808311611a9c57829003601f168201915b5050505050905090565b611acb6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611ae9611942565b73ffffffffffffffffffffffffffffffffffffffff1614611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b36906148ef565b60405180910390fd5b7f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc590614c16565b60405180910390fd5b611bd88282613813565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611c036127e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb790614ca8565b60405180910390fd5b611cd4611ccb6127e2565b858584036127ea565b600191505092915050565b600e5481565b6000611cf9611cf26127e2565b84846129b5565b6001905092915050565b611d0b6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611d29611942565b73ffffffffffffffffffffffffffffffffffffffff1614611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d76906148ef565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611e7a6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611e98611942565b73ffffffffffffffffffffffffffffffffffffffff1614611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee5906148ef565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611f8b91906144f6565b60405180910390a25050565b611f9f6127e2565b73ffffffffffffffffffffffffffffffffffffffff16611fbd611942565b73ffffffffffffffffffffffffffffffffffffffff1614612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a906148ef565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a5460195461203b9190614a2a565b6120459190614a2a565b601881905550505050565b6120586127e2565b73ffffffffffffffffffffffffffffffffffffffff16612076611942565b73ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c3906148ef565b60405180910390fd5b670de0b6b3a76400006103e860056120e2610fb2565b6120ec919061493e565b6120f69190614cf7565b6121009190614cf7565b811015612142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213990614d9a565b60405180910390fd5b670de0b6b3a764000081612156919061493e565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121826127e2565b73ffffffffffffffffffffffffffffffffffffffff166121a0611942565b73ffffffffffffffffffffffffffffffffffffffff16146121f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ed906148ef565b60405180910390fd5b620186a06001612204610fb2565b61220e919061493e565b6122189190614cf7565b82101561225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190614e2c565b60405180910390fd5b6103e86005612267610fb2565b612271919061493e565b61227b9190614cf7565b8211156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490614ebe565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061236a6127e2565b73ffffffffffffffffffffffffffffffffffffffff16612388611942565b73ffffffffffffffffffffffffffffffffffffffff16146123de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d5906148ef565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61240e6127e2565b73ffffffffffffffffffffffffffffffffffffffff1661242c611942565b73ffffffffffffffffffffffffffffffffffffffff1614612482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612479906148ef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e990614f50565b60405180910390fd5b6124fb8161374d565b50565b601a5481565b600a5481565b60006125146127e2565b73ffffffffffffffffffffffffffffffffffffffff16612532611942565b73ffffffffffffffffffffffffffffffffffffffff1614612588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257f906148ef565b60405180910390fd5b600f546010546125989190614a2a565b42116125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d090614fbc565b60405180910390fd5b6103e882111561261e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126159061504e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f1676040518263ffffffff1660e01b81526004016126809190614671565b602060405180830381865afa15801561269d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126c19190615083565b905060006126ec6127106126de86856138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000811115612725576127247f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16761dead836138e0565b5b60007f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561279257600080fd5b505af11580156127a6573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561285a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285190615122565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c1906151b4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129a891906145c7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1c90615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c906152d8565b60405180910390fd5b6000811415612aaf57612aaa838360006138e0565b613748565b601160009054906101000a900460ff161561317257612acc611942565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b3a5750612b0a611942565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b735750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bad575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc65750600560149054906101000a900460ff16155b1561317157601160019054906101000a900460ff16612cc057601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c805750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb690615344565b60405180910390fd5b5b601360009054906101000a900460ff1615612e8857612cdd611942565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d6457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dbc57507f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e875743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e39906153fc565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f2b5750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fd257600854811115612f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6c9061548e565b60405180910390fd5b600a54612f818361141b565b82612f8c9190614a2a565b1115612fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fc4906154fa565b60405180910390fd5b613170565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130755750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130c4576008548111156130bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b69061558c565b60405180910390fd5b61316f565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661316e57600a546131218361141b565b8261312c9190614a2a565b111561316d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613164906154fa565b60405180910390fd5b5b5b5b5b5b600061317d3061141b565b9050600060095482101590508080156131a25750601160029054906101000a900460ff165b80156131bb5750600560149054906101000a900460ff16155b80156132115750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132675750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132bd5750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613301576001600560146101000a81548160ff0219169083151502179055506132e5613b61565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff161580156133675750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561337f5750600c60009054906101000a900460ff165b801561339a5750600d54600e546133969190614a2a565b4210155b80156133f05750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133ff576133fd613e48565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134b55750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134bf57600090505b6000811561373857602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561352257506000601854115b156135ef5761354f6064613541601854886138b490919063ffffffff16565b6138ca90919063ffffffff16565b9050601854601a5482613562919061493e565b61356c9190614cf7565b601d600082825461357d9190614a2a565b92505081905550601854601b5482613595919061493e565b61359f9190614cf7565b601e60008282546135b09190614a2a565b92505081905550601854601954826135c8919061493e565b6135d29190614cf7565b601c60008282546135e39190614a2a565b92505081905550613714565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561364a57506000601454115b15613713576136776064613669601454886138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506014546016548261368a919061493e565b6136949190614cf7565b601d60008282546136a59190614a2a565b92505081905550601454601754826136bd919061493e565b6136c79190614cf7565b601e60008282546136d89190614a2a565b92505081905550601454601554826136f0919061493e565b6136fa9190614cf7565b601c600082825461370b9190614a2a565b925050819055505b5b6000811115613729576137288730836138e0565b5b808561373591906155ac565b94505b6137438787876138e0565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138c2919061493e565b905092915050565b600081836138d89190614cf7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394790615246565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b7906152d8565b60405180910390fd5b6139cb83838361400e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a4890615652565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ae49190614a2a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b4891906145c7565b60405180910390a3613b5b848484614013565b50505050565b6000613b6c3061141b565b90506000601e54601c54601d54613b839190614a2a565b613b8d9190614a2a565b9050600080831480613b9f5750600082145b15613bac57505050613e46565b6014600954613bbb919061493e565b831115613bd4576014600954613bd1919061493e565b92505b6000600283601d5486613be7919061493e565b613bf19190614cf7565b613bfb9190614cf7565b90506000613c12828661401890919063ffffffff16565b90506000479050613c228261402e565b6000613c37824761401890919063ffffffff16565b90506000613c6287613c54601c54856138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000613c8d88613c7f601e54866138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000818385613c9e91906155ac565b613ca891906155ac565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d08906156a3565b60006040518083038185875af1925050503d8060008114613d45576040519150601f19603f3d011682016040523d82523d6000602084013e613d4a565b606091505b505080985050600087118015613d605750600081115b15613dad57613d6f878261426b565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613da4939291906156b8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613df3906156a3565b60006040518083038185875af1925050503d8060008114613e30576040519150601f19603f3d011682016040523d82523d6000602084013e613e35565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f1676040518263ffffffff1660e01b8152600401613eac9190614671565b602060405180830381865afa158015613ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eed9190615083565b90506000613f1a612710613f0c600b54856138b490919063ffffffff16565b6138ca90919063ffffffff16565b90506000811115613f5357613f527f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16761dead836138e0565b5b60007f000000000000000000000000d44d222bec2c2c4e6d9e1fa8d57e3bd73340f16790508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fc057600080fd5b505af1158015613fd4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361402691906155ac565b905092915050565b6000600267ffffffffffffffff81111561404b5761404a6156ef565b5b6040519080825280602002602001820160405280156140795781602001602082028036833780820191505090505b50905030816000815181106140915761409061571e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015614136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061415a9190615762565b8160018151811061416e5761416d61571e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141d3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401614235959493929190615888565b600060405180830381600087803b15801561424f57600080fd5b505af1158015614263573d6000803e3d6000fd5b505050505050565b614296307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127ea565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142fd969594939291906158e2565b60606040518083038185885af115801561431b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143409190615943565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614381578082015181840152602081019050614366565b83811115614390576000848401525b50505050565b6000601f19601f8301169050919050565b60006143b282614347565b6143bc8185614352565b93506143cc818560208601614363565b6143d581614396565b840191505092915050565b600060208201905081810360008301526143fa81846143a7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061443282614407565b9050919050565b61444281614427565b811461444d57600080fd5b50565b60008135905061445f81614439565b92915050565b6000819050919050565b61447881614465565b811461448357600080fd5b50565b6000813590506144958161446f565b92915050565b600080604083850312156144b2576144b1614402565b5b60006144c085828601614450565b92505060206144d185828601614486565b9150509250929050565b60008115159050919050565b6144f0816144db565b82525050565b600060208201905061450b60008301846144e7565b92915050565b60006020828403121561452757614526614402565b5b600061453584828501614450565b91505092915050565b6000819050919050565b600061456361455e61455984614407565b61453e565b614407565b9050919050565b600061457582614548565b9050919050565b60006145878261456a565b9050919050565b6145978161457c565b82525050565b60006020820190506145b2600083018461458e565b92915050565b6145c181614465565b82525050565b60006020820190506145dc60008301846145b8565b92915050565b6000602082840312156145f8576145f7614402565b5b600061460684828501614486565b91505092915050565b60008060006060848603121561462857614627614402565b5b600061463686828701614450565b935050602061464786828701614450565b925050604061465886828701614486565b9150509250925092565b61466b81614427565b82525050565b60006020820190506146866000830184614662565b92915050565b600060ff82169050919050565b6146a28161468c565b82525050565b60006020820190506146bd6000830184614699565b92915050565b6146cc816144db565b81146146d757600080fd5b50565b6000813590506146e9816146c3565b92915050565b60008060006060848603121561470857614707614402565b5b600061471686828701614486565b935050602061472786828701614486565b9250506040614738868287016146da565b9150509250925092565b6000806040838503121561475957614758614402565b5b600061476785828601614450565b9250506020614778858286016146da565b9150509250929050565b60008060006060848603121561479b5761479a614402565b5b60006147a986828701614486565b93505060206147ba86828701614486565b92505060406147cb86828701614486565b9150509250925092565b6000602082840312156147eb576147ea614402565b5b60006147f9848285016146da565b91505092915050565b6000806040838503121561481957614818614402565b5b600061482785828601614450565b925050602061483885828601614450565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061488957607f821691505b6020821081141561489d5761489c614842565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148d9602083614352565b91506148e4826148a3565b602082019050919050565b60006020820190508181036000830152614908816148cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061494982614465565b915061495483614465565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498d5761498c61490f565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006149f4602883614352565b91506149ff82614998565b604082019050919050565b60006020820190508181036000830152614a23816149e7565b9050919050565b6000614a3582614465565b9150614a4083614465565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a7557614a7461490f565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614adc603383614352565b9150614ae782614a80565b604082019050919050565b60006020820190508181036000830152614b0b81614acf565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b6e603083614352565b9150614b7982614b12565b604082019050919050565b60006020820190508181036000830152614b9d81614b61565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c00603983614352565b9150614c0b82614ba4565b604082019050919050565b60006020820190508181036000830152614c2f81614bf3565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614c92602583614352565b9150614c9d82614c36565b604082019050919050565b60006020820190508181036000830152614cc181614c85565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d0282614465565b9150614d0d83614465565b925082614d1d57614d1c614cc8565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614d84602483614352565b9150614d8f82614d28565b604082019050919050565b60006020820190508181036000830152614db381614d77565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e16603583614352565b9150614e2182614dba565b604082019050919050565b60006020820190508181036000830152614e4581614e09565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614ea8603483614352565b9150614eb382614e4c565b604082019050919050565b60006020820190508181036000830152614ed781614e9b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f3a602683614352565b9150614f4582614ede565b604082019050919050565b60006020820190508181036000830152614f6981614f2d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614fa6602083614352565b9150614fb182614f70565b602082019050919050565b60006020820190508181036000830152614fd581614f99565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615038602a83614352565b915061504382614fdc565b604082019050919050565b600060208201905081810360008301526150678161502b565b9050919050565b60008151905061507d8161446f565b92915050565b60006020828403121561509957615098614402565b5b60006150a78482850161506e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061510c602483614352565b9150615117826150b0565b604082019050919050565b6000602082019050818103600083015261513b816150ff565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061519e602283614352565b91506151a982615142565b604082019050919050565b600060208201905081810360008301526151cd81615191565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615230602583614352565b915061523b826151d4565b604082019050919050565b6000602082019050818103600083015261525f81615223565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152c2602383614352565b91506152cd82615266565b604082019050919050565b600060208201905081810360008301526152f1816152b5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061532e601683614352565b9150615339826152f8565b602082019050919050565b6000602082019050818103600083015261535d81615321565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153e6604983614352565b91506153f182615364565b606082019050919050565b60006020820190508181036000830152615415816153d9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615478603583614352565b91506154838261541c565b604082019050919050565b600060208201905081810360008301526154a78161546b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154e4601383614352565b91506154ef826154ae565b602082019050919050565b60006020820190508181036000830152615513816154d7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615576603683614352565b91506155818261551a565b604082019050919050565b600060208201905081810360008301526155a581615569565b9050919050565b60006155b782614465565b91506155c283614465565b9250828210156155d5576155d461490f565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061563c602683614352565b9150615647826155e0565b604082019050919050565b6000602082019050818103600083015261566b8161562f565b9050919050565b600081905092915050565b50565b600061568d600083615672565b91506156988261567d565b600082019050919050565b60006156ae82615680565b9150819050919050565b60006060820190506156cd60008301866145b8565b6156da60208301856145b8565b6156e760408301846145b8565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061575c81614439565b92915050565b60006020828403121561577857615777614402565b5b60006157868482850161574d565b91505092915050565b6000819050919050565b60006157b46157af6157aa8461578f565b61453e565b614465565b9050919050565b6157c481615799565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ff81614427565b82525050565b600061581183836157f6565b60208301905092915050565b6000602082019050919050565b6000615835826157ca565b61583f81856157d5565b935061584a836157e6565b8060005b8381101561587b5781516158628882615805565b975061586d8361581d565b92505060018101905061584e565b5085935050505092915050565b600060a08201905061589d60008301886145b8565b6158aa60208301876157bb565b81810360408301526158bc818661582a565b90506158cb6060830185614662565b6158d860808301846145b8565b9695505050505050565b600060c0820190506158f76000830189614662565b61590460208301886145b8565b61591160408301876157bb565b61591e60608301866157bb565b61592b6080830185614662565b61593860a08301846145b8565b979650505050505050565b60008060006060848603121561595c5761595b614402565b5b600061596a8682870161506e565b935050602061597b8682870161506e565b925050604061598c8682870161506e565b915050925092509256fea2646970667358221220cda874b16f559f0d6d580ca727fc06d03e66c3d2a7d6348e5dec938298f7e80864736f6c634300080a0033

Deployed Bytecode Sourcemap

32883:19194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9698:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11865:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34517:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32966:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10818:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41405:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33531:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33346:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34301:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34261;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38988:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12516:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33069:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33441:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33402:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10660:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13417:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33024:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33629:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41570:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34116:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33709:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10989:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2933:103;;;;;;;;;;;;;:::i;:::-;;49659:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38096:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39390:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33161:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34009;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39761:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37889:155;;;;;;;;;;;;;:::i;:::-;;2282:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33198:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34151:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39653:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9917:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40658:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34083:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33585:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34341:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34227:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14135:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33493:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11329:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41166:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34738:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33669:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40468:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40110:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39126:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33927:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33231:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38483:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33975:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11567:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33273:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38278:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34046:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3191:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34189:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33313:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51018:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9698:100;9752:13;9785:5;9778:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9698:100;:::o;11865:169::-;11948:4;11965:39;11974:12;:10;:12::i;:::-;11988:7;11997:6;11965:8;:39::i;:::-;12022:4;12015:11;;11865:169;;;;:::o;34517:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32966:51::-;;;:::o;10818:108::-;10879:7;10906:12;;10899:19;;10818:108;:::o;41405:157::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41512:9:::1;;;;;;;;;;;41484:38;;41501:9;41484:38;;;;;;;;;;;;41545:9;41533;;:21;;;;;;;;;;;;;;;;;;41405:157:::0;:::o;33531:47::-;;;;:::o;33346:36::-;;;;:::o;34301:33::-;;;;:::o;34261:::-;;;;:::o;38988:130::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39103:6:::1;39093;:17;;;;:::i;:::-;39070:20;:40;;;;38988:130:::0;:::o;12516:492::-;12656:4;12673:36;12683:6;12691:9;12702:6;12673:9;:36::i;:::-;12722:24;12749:11;:19;12761:6;12749:19;;;;;;;;;;;;;;;:33;12769:12;:10;:12::i;:::-;12749:33;;;;;;;;;;;;;;;;12722:60;;12821:6;12801:16;:26;;12793:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12908:57;12917:6;12925:12;:10;:12::i;:::-;12958:6;12939:16;:25;12908:8;:57::i;:::-;12996:4;12989:11;;;12516:492;;;;;:::o;33069:53::-;33115:6;33069:53;:::o;33441:45::-;;;;:::o;33402:32::-;;;;;;;;;;;;;:::o;10660:93::-;10718:5;10743:2;10736:9;;10660:93;:::o;13417:215::-;13505:4;13522:80;13531:12;:10;:12::i;:::-;13545:7;13591:10;13554:11;:25;13566:12;:10;:12::i;:::-;13554:25;;;;;;;;;;;;;;;:34;13580:7;13554:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13522:8;:80::i;:::-;13620:4;13613:11;;13417:215;;;;:::o;33024:38::-;;;:::o;33629:33::-;;;;;;;;;;;;;:::o;41570:126::-;41636:4;41660:19;:28;41680:7;41660:28;;;;;;;;;;;;;;;;;;;;;;;;;41653:35;;41570:126;;;:::o;34116:28::-;;;;:::o;33709:31::-;;;;;;;;;;;;;:::o;10989:127::-;11063:7;11090:9;:18;11100:7;11090:18;;;;;;;;;;;;;;;;11083:25;;10989:127;;;:::o;2933:103::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2998:30:::1;3025:1;2998:18;:30::i;:::-;2933:103::o:0;49659:555::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49861:3:::1;49838:19;:26;;49816:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;49988:4;49976:8;:16;;:33;;;;;50008:1;49996:8;:13;;49976:33;49954:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50114:19;50096:15;:37;;;;50163:8;50144:16;:27;;;;50198:8;50182:13;;:24;;;;;;;;;;;;;;;;;;49659:555:::0;;;:::o;38096:121::-;38148:4;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38182:5:::1;38165:14;;:22;;;;;;;;;;;;;;;;;;38205:4;38198:11;;38096:121:::0;:::o;39390:167::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39545:4:::1;39503:31;:39;39535:6;39503:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39390:167:::0;;:::o;33161:30::-;;;;;;;;;;;;;:::o;34009:::-;;;;:::o;39761:341::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39929:13:::1;39911:15;:31;;;;39971:13;39953:15;:31;;;;40007:7;39995:9;:19;;;;40076:9;;40058:15;;40040;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40025:12;:60;;;;39761:341:::0;;;:::o;37889:155::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37960:4:::1;37944:13;;:20;;;;;;;;;;;;;;;;;;37989:4;37975:11;;:18;;;;;;;;;;;;;;;;;;38021:15;38004:14;:32;;;;37889:155::o:0;2282:87::-;2328:7;2355:6;;;;;;;;;;;2348:13;;2282:87;:::o;33198:24::-;;;;;;;;;;;;;:::o;34151:31::-;;;;:::o;39653:100::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39738:7:::1;39724:11;;:21;;;;;;;;;;;;;;;;;;39653:100:::0;:::o;9917:104::-;9973:13;10006:7;9999:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9917:104;:::o;40658:304::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40802:13:::1;40794:21;;:4;:21;;;;40772:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40913:41;40942:4;40948:5;40913:28;:41::i;:::-;40658:304:::0;;:::o;34083:24::-;;;;:::o;33585:35::-;;;;:::o;34341:27::-;;;;:::o;34227:25::-;;;;:::o;14135:413::-;14228:4;14245:24;14272:11;:25;14284:12;:10;:12::i;:::-;14272:25;;;;;;;;;;;;;;;:34;14298:7;14272:34;;;;;;;;;;;;;;;;14245:61;;14345:15;14325:16;:35;;14317:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14438:67;14447:12;:10;:12::i;:::-;14461:7;14489:15;14470:16;:34;14438:8;:67::i;:::-;14536:4;14529:11;;;14135:413;;;;:::o;33493:29::-;;;;:::o;11329:175::-;11415:4;11432:42;11442:12;:10;:12::i;:::-;11456:9;11467:6;11432:9;:42::i;:::-;11492:4;11485:11;;11329:175;;;;:::o;41166:231::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41326:15:::1;;;;;;;;;;;41283:59;;41306:18;41283:59;;;;;;;;;;;;41371:18;41353:15;;:36;;;;;;;;;;;;;;;;;;41166:231:::0;:::o;34738:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33669:33::-;;;;;;;;;;;;;:::o;40468:182::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40584:8:::1;40553:19;:28;40573:7;40553:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40624:7;40608:34;;;40633:8;40608:34;;;;;;:::i;:::-;;;;;;;;40468:182:::0;;:::o;40110:350::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40280:13:::1;40261:16;:32;;;;40323:13;40304:16;:32;;;;40360:7;40347:10;:20;;;;40432:10;;40413:16;;40394;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40378:13;:64;;;;40110:350:::0;;;:::o;39126:256::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39266:4:::1;39258;39253:1;39237:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39236:26;;;;:::i;:::-;39235:35;;;;:::i;:::-;39225:6;:45;;39203:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39367:6;39357;:17;;;;:::i;:::-;39345:9;:29;;;;39126:256:::0;:::o;33927:39::-;;;;;;;;;;;;;:::o;33231:35::-;;;;:::o;38483:497::-;38591:4;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38670:6:::1;38665:1;38649:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38648:28;;;;:::i;:::-;38635:9;:41;;38613:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38825:4;38820:1;38804:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38803:26;;;;:::i;:::-;38790:9;:39;;38768:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38941:9;38920:18;:30;;;;38968:4;38961:11;;38483:497:::0;;;:::o;33975:27::-;;;;:::o;11567:151::-;11656:7;11683:11;:18;11695:5;11683:18;;;;;;;;;;;;;;;:27;11702:7;11683:27;;;;;;;;;;;;;;;;11676:34;;11567:151;;;;:::o;33273:33::-;;;;:::o;38278:135::-;38338:4;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38378:5:::1;38355:20;;:28;;;;;;;;;;;;;;;;;;38401:4;38394:11;;38278:135:::0;:::o;34046:30::-;;;;:::o;3191:201::-;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3300:1:::1;3280:22;;:8;:22;;;;3272:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3356:28;3375:8;3356:18;:28::i;:::-;3191:201:::0;:::o;34189:31::-;;;;:::o;33313:24::-;;;;:::o;51018:1056::-;51129:4;2513:12;:10;:12::i;:::-;2502:23;;:7;:5;:7::i;:::-;:23;;;2494:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51214:19:::1;;51191:20;;:42;;;;:::i;:::-;51173:15;:60;51151:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51323:4;51312:7;:15;;51304:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51408:15;51385:20;:38;;;;51478:28;51509:4;:14;;;51524:13;51509:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51478:60;;51588:20;51611:44;51649:5;51611:33;51636:7;51611:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51588:67;;51775:1;51760:12;:16;51756:110;;;51793:61;51809:13;51832:6;51841:12;51793:15;:61::i;:::-;51756:110;51941:19;51978:13;51941:51;;52003:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52030:14;;;;;;;;;;52062:4;52055:11;;;;;51018:1056:::0;;;:::o;955:98::-;1008:7;1035:10;1028:17;;955:98;:::o;17819:380::-;17972:1;17955:19;;:5;:19;;;;17947:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18053:1;18034:21;;:7;:21;;;;18026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18137:6;18107:11;:18;18119:5;18107:18;;;;;;;;;;;;;;;:27;18126:7;18107:27;;;;;;;;;;;;;;;:36;;;;18175:7;18159:32;;18168:5;18159:32;;;18184:6;18159:32;;;;;;:::i;:::-;;;;;;;;17819:380;;;:::o;41754:5011::-;41902:1;41886:18;;:4;:18;;;;41878:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41979:1;41965:16;;:2;:16;;;;41957:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42048:1;42038:6;:11;42034:93;;;42066:28;42082:4;42088:2;42092:1;42066:15;:28::i;:::-;42109:7;;42034:93;42143:14;;;;;;;;;;;42139:2487;;;42204:7;:5;:7::i;:::-;42196:15;;:4;:15;;;;:49;;;;;42238:7;:5;:7::i;:::-;42232:13;;:2;:13;;;;42196:49;:86;;;;;42280:1;42266:16;;:2;:16;;;;42196:86;:128;;;;;42317:6;42303:21;;:2;:21;;;;42196:128;:158;;;;;42346:8;;;;;;;;;;;42345:9;42196:158;42174:2441;;;42394:13;;;;;;;;;;;42389:223;;42466:19;:25;42486:4;42466:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42495:19;:23;42515:2;42495:23;;;;;;;;;;;;;;;;;;;;;;;;;42466:52;42432:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42389:223;42768:20;;;;;;;;;;;42764:641;;;42849:7;:5;:7::i;:::-;42843:13;;:2;:13;;;;:72;;;;;42899:15;42885:30;;:2;:30;;;;42843:72;:129;;;;;42958:13;42944:28;;:2;:28;;;;42843:129;42813:573;;;43136:12;43061:28;:39;43090:9;43061:39;;;;;;;;;;;;;;;;:87;43023:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43350:12;43308:28;:39;43337:9;43308:39;;;;;;;;;;;;;;;:54;;;;42813:573;42764:641;43479:25;:31;43505:4;43479:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43536:31;:35;43568:2;43536:35;;;;;;;;;;;;;;;;;;;;;;;;;43535:36;43479:92;43453:1147;;;43658:20;;43648:6;:30;;43614:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43866:9;;43849:13;43859:2;43849:9;:13::i;:::-;43840:6;:22;;;;:::i;:::-;:35;;43806:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43453:1147;;;44044:25;:29;44070:2;44044:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44099:31;:37;44131:4;44099:37;;;;;;;;;;;;;;;;;;;;;;;;;44098:38;44044:92;44018:582;;;44223:20;;44213:6;:30;;44179:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44018:582;;;44380:31;:35;44412:2;44380:35;;;;;;;;;;;;;;;;;;;;;;;;;44375:225;;44500:9;;44483:13;44493:2;44483:9;:13::i;:::-;44474:6;:22;;;;:::i;:::-;:35;;44440:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44375:225;44018:582;43453:1147;42174:2441;42139:2487;44638:28;44669:24;44687:4;44669:9;:24::i;:::-;44638:55;;44706:12;44745:18;;44721:20;:42;;44706:57;;44794:7;:35;;;;;44818:11;;;;;;;;;;;44794:35;:61;;;;;44847:8;;;;;;;;;;;44846:9;44794:61;:110;;;;;44873:25;:31;44899:4;44873:31;;;;;;;;;;;;;;;;;;;;;;;;;44872:32;44794:110;:153;;;;;44922:19;:25;44942:4;44922:25;;;;;;;;;;;;;;;;;;;;;;;;;44921:26;44794:153;:194;;;;;44965:19;:23;44985:2;44965:23;;;;;;;;;;;;;;;;;;;;;;;;;44964:24;44794:194;44776:326;;;45026:4;45015:8;;:15;;;;;;;;;;;;;;;;;;45047:10;:8;:10::i;:::-;45085:5;45074:8;;:16;;;;;;;;;;;;;;;;;;44776:326;45133:8;;;;;;;;;;;45132:9;:55;;;;;45158:25;:29;45184:2;45158:29;;;;;;;;;;;;;;;;;;;;;;;;;45132:55;:85;;;;;45204:13;;;;;;;;;;;45132:85;:153;;;;;45270:15;;45253:14;;:32;;;;:::i;:::-;45234:15;:51;;45132:153;:196;;;;;45303:19;:25;45323:4;45303:25;;;;;;;;;;;;;;;;;;;;;;;;;45302:26;45132:196;45114:282;;;45355:29;:27;:29::i;:::-;;45114:282;45408:12;45424:8;;;;;;;;;;;45423:9;45408:24;;45534:19;:25;45554:4;45534:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45563:19;:23;45583:2;45563:23;;;;;;;;;;;;;;;;;;;;;;;;;45534:52;45530:100;;;45613:5;45603:15;;45530:100;45642:12;45747:7;45743:969;;;45799:25;:29;45825:2;45799:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45848:1;45832:13;;:17;45799:50;45795:768;;;45877:34;45907:3;45877:25;45888:13;;45877:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45870:41;;45980:13;;45960:16;;45953:4;:23;;;;:::i;:::-;45952:41;;;;:::i;:::-;45930:18;;:63;;;;;;;:::i;:::-;;;;;;;;46050:13;;46036:10;;46029:4;:17;;;;:::i;:::-;46028:35;;;;:::i;:::-;46012:12;;:51;;;;;;;:::i;:::-;;;;;;;;46132:13;;46112:16;;46105:4;:23;;;;:::i;:::-;46104:41;;;;:::i;:::-;46082:18;;:63;;;;;;;:::i;:::-;;;;;;;;45795:768;;;46207:25;:31;46233:4;46207:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46257:1;46242:12;;:16;46207:51;46203:360;;;46286:33;46315:3;46286:24;46297:12;;46286:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46279:40;;46387:12;;46368:15;;46361:4;:22;;;;:::i;:::-;46360:39;;;;:::i;:::-;46338:18;;:61;;;;;;;:::i;:::-;;;;;;;;46455:12;;46442:9;;46435:4;:16;;;;:::i;:::-;46434:33;;;;:::i;:::-;46418:12;;:49;;;;;;;:::i;:::-;;;;;;;;46535:12;;46516:15;;46509:4;:22;;;;:::i;:::-;46508:39;;;;:::i;:::-;46486:18;;:61;;;;;;;:::i;:::-;;;;;;;;46203:360;45795:768;46590:1;46583:4;:8;46579:91;;;46612:42;46628:4;46642;46649;46612:15;:42::i;:::-;46579:91;46696:4;46686:14;;;;;:::i;:::-;;;45743:969;46724:33;46740:4;46746:2;46750:6;46724:15;:33::i;:::-;41867:4898;;;;41754:5011;;;;:::o;3552:191::-;3626:16;3645:6;;;;;;;;;;;3626:25;;3671:8;3662:6;;:17;;;;;;;;;;;;;;;;;;3726:8;3695:40;;3716:8;3695:40;;;;;;;;;;;;3615:128;3552:191;:::o;40970:188::-;41087:5;41053:25;:31;41079:4;41053:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41144:5;41110:40;;41138:4;41110:40;;;;;;;;;;;;40970:188;;:::o;23272:98::-;23330:7;23361:1;23357;:5;;;;:::i;:::-;23350:12;;23272:98;;;;:::o;23671:::-;23729:7;23760:1;23756;:5;;;;:::i;:::-;23749:12;;23671:98;;;;:::o;15038:733::-;15196:1;15178:20;;:6;:20;;;;15170:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15280:1;15259:23;;:9;:23;;;;15251:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15335:47;15356:6;15364:9;15375:6;15335:20;:47::i;:::-;15395:21;15419:9;:17;15429:6;15419:17;;;;;;;;;;;;;;;;15395:41;;15472:6;15455:13;:23;;15447:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15593:6;15577:13;:22;15557:9;:17;15567:6;15557:17;;;;;;;;;;;;;;;:42;;;;15645:6;15621:9;:20;15631:9;15621:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15686:9;15669:35;;15678:6;15669:35;;;15697:6;15669:35;;;;;;:::i;:::-;;;;;;;;15717:46;15737:6;15745:9;15756:6;15717:19;:46::i;:::-;15159:612;15038:733;;;:::o;47895:1756::-;47934:23;47960:24;47978:4;47960:9;:24::i;:::-;47934:50;;47995:25;48091:12;;48057:18;;48023;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;47995:108;;48114:12;48162:1;48143:15;:20;:46;;;;48188:1;48167:17;:22;48143:46;48139:85;;;48206:7;;;;;48139:85;48279:2;48258:18;;:23;;;;:::i;:::-;48240:15;:41;48236:115;;;48337:2;48316:18;;:23;;;;:::i;:::-;48298:41;;48236:115;48412:23;48525:1;48492:17;48457:18;;48439:15;:36;;;;:::i;:::-;48438:71;;;;:::i;:::-;:88;;;;:::i;:::-;48412:114;;48537:26;48566:36;48586:15;48566;:19;;:36;;;;:::i;:::-;48537:65;;48615:25;48643:21;48615:49;;48677:36;48694:18;48677:16;:36::i;:::-;48726:18;48747:44;48773:17;48747:21;:25;;:44;;;;:::i;:::-;48726:65;;48804:23;48830:81;48883:17;48830:34;48845:18;;48830:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48804:107;;48922:17;48942:51;48975:17;48942:28;48957:12;;48942:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48922:71;;49006:23;49063:9;49045:15;49032:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49006:66;;49106:1;49085:18;:22;;;;49139:1;49118:18;:22;;;;49166:1;49151:12;:16;;;;49202:9;;;;;;;;;;;49194:23;;49225:9;49194:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49180:59;;;;;49274:1;49256:15;:19;:42;;;;;49297:1;49279:15;:19;49256:42;49252:278;;;49315:46;49328:15;49345;49315:12;:46::i;:::-;49381:137;49414:18;49451:15;49485:18;;49381:137;;;;;;;;:::i;:::-;;;;;;;;49252:278;49564:15;;;;;;;;;;;49556:29;;49607:21;49556:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49542:101;;;;;47923:1728;;;;;;;;;;47895:1756;:::o;50222:788::-;50279:4;50313:15;50296:14;:32;;;;50383:28;50414:4;:14;;;50429:13;50414:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50383:60;;50493:20;50516:77;50577:5;50516:42;50541:16;;50516:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50493:100;;50713:1;50698:12;:16;50694:110;;;50731:61;50747:13;50770:6;50779:12;50731:15;:61::i;:::-;50694:110;50879:19;50916:13;50879:51;;50941:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50968:12;;;;;;;;;;50998:4;50991:11;;;;;50222:788;:::o;18799:125::-;;;;:::o;19528:124::-;;;;:::o;22915:98::-;22973:7;23004:1;23000;:5;;;;:::i;:::-;22993:12;;22915:98;;;;:::o;46773:589::-;46899:21;46937:1;46923:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46899:40;;46968:4;46950;46955:1;46950:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46994:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46984:4;46989:1;46984:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47029:62;47046:4;47061:15;47079:11;47029:8;:62::i;:::-;47130:15;:66;;;47211:11;47237:1;47281:4;47308;47328:15;47130:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46828:534;46773:589;:::o;47370:517::-;47518:62;47535:4;47550:15;47568:11;47518:8;:62::i;:::-;47623:15;:31;;;47662:9;47695:4;47715:11;47741:1;47784;33115:6;47853:15;47623:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47370:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:227::-;11866:34;11862:1;11854:6;11850:14;11843:58;11935:10;11930:2;11922:6;11918:15;11911:35;11726:227;:::o;11959:366::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:419::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:305::-;12796:3;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:107;;;13009:18;;:::i;:::-;12922:107;13053:1;13050;13046:9;13039:16;;12756:305;;;;:::o;13067:238::-;13207:34;13203:1;13195:6;13191:14;13184:58;13276:21;13271:2;13263:6;13259:15;13252:46;13067:238;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:235::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:18;14312:2;14304:6;14300:15;14293:43;14108:235;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:244::-;15286:34;15282:1;15274:6;15270:14;15263:58;15355:27;15350:2;15342:6;15338:15;15331:52;15146:244;:::o;15396:366::-;15538:3;15559:67;15623:2;15618:3;15559:67;:::i;:::-;15552:74;;15635:93;15724:3;15635:93;:::i;:::-;15753:2;15748:3;15744:12;15737:19;;15396:366;;;:::o;15768:419::-;15934:4;15972:2;15961:9;15957:18;15949:26;;16021:9;16015:4;16011:20;16007:1;15996:9;15992:17;15985:47;16049:131;16175:4;16049:131;:::i;:::-;16041:139;;15768:419;;;:::o;16193:224::-;16333:34;16329:1;16321:6;16317:14;16310:58;16402:7;16397:2;16389:6;16385:15;16378:32;16193:224;:::o;16423:366::-;16565:3;16586:67;16650:2;16645:3;16586:67;:::i;:::-;16579:74;;16662:93;16751:3;16662:93;:::i;:::-;16780:2;16775:3;16771:12;16764:19;;16423:366;;;:::o;16795:419::-;16961:4;16999:2;16988:9;16984:18;16976:26;;17048:9;17042:4;17038:20;17034:1;17023:9;17019:17;17012:47;17076:131;17202:4;17076:131;:::i;:::-;17068:139;;16795:419;;;:::o;17220:180::-;17268:77;17265:1;17258:88;17365:4;17362:1;17355:15;17389:4;17386:1;17379:15;17406:185;17446:1;17463:20;17481:1;17463:20;:::i;:::-;17458:25;;17497:20;17515:1;17497:20;:::i;:::-;17492:25;;17536:1;17526:35;;17541:18;;:::i;:::-;17526:35;17583:1;17580;17576:9;17571:14;;17406:185;;;;:::o;17597:223::-;17737:34;17733:1;17725:6;17721:14;17714:58;17806:6;17801:2;17793:6;17789:15;17782:31;17597:223;:::o;17826:366::-;17968:3;17989:67;18053:2;18048:3;17989:67;:::i;:::-;17982:74;;18065:93;18154:3;18065:93;:::i;:::-;18183:2;18178:3;18174:12;18167:19;;17826:366;;;:::o;18198:419::-;18364:4;18402:2;18391:9;18387:18;18379:26;;18451:9;18445:4;18441:20;18437:1;18426:9;18422:17;18415:47;18479:131;18605:4;18479:131;:::i;:::-;18471:139;;18198:419;;;:::o;18623:240::-;18763:34;18759:1;18751:6;18747:14;18740:58;18832:23;18827:2;18819:6;18815:15;18808:48;18623:240;:::o;18869:366::-;19011:3;19032:67;19096:2;19091:3;19032:67;:::i;:::-;19025:74;;19108:93;19197:3;19108:93;:::i;:::-;19226:2;19221:3;19217:12;19210:19;;18869:366;;;:::o;19241:419::-;19407:4;19445:2;19434:9;19430:18;19422:26;;19494:9;19488:4;19484:20;19480:1;19469:9;19465:17;19458:47;19522:131;19648:4;19522:131;:::i;:::-;19514:139;;19241:419;;;:::o;19666:239::-;19806:34;19802:1;19794:6;19790:14;19783:58;19875:22;19870:2;19862:6;19858:15;19851:47;19666:239;:::o;19911:366::-;20053:3;20074:67;20138:2;20133:3;20074:67;:::i;:::-;20067:74;;20150:93;20239:3;20150:93;:::i;:::-;20268:2;20263:3;20259:12;20252:19;;19911:366;;;:::o;20283:419::-;20449:4;20487:2;20476:9;20472:18;20464:26;;20536:9;20530:4;20526:20;20522:1;20511:9;20507:17;20500:47;20564:131;20690:4;20564:131;:::i;:::-;20556:139;;20283:419;;;:::o;20708:225::-;20848:34;20844:1;20836:6;20832:14;20825:58;20917:8;20912:2;20904:6;20900:15;20893:33;20708:225;:::o;20939:366::-;21081:3;21102:67;21166:2;21161:3;21102:67;:::i;:::-;21095:74;;21178:93;21267:3;21178:93;:::i;:::-;21296:2;21291:3;21287:12;21280:19;;20939:366;;;:::o;21311:419::-;21477:4;21515:2;21504:9;21500:18;21492:26;;21564:9;21558:4;21554:20;21550:1;21539:9;21535:17;21528:47;21592:131;21718:4;21592:131;:::i;:::-;21584:139;;21311:419;;;:::o;21736:182::-;21876:34;21872:1;21864:6;21860:14;21853:58;21736:182;:::o;21924:366::-;22066:3;22087:67;22151:2;22146:3;22087:67;:::i;:::-;22080:74;;22163:93;22252:3;22163:93;:::i;:::-;22281:2;22276:3;22272:12;22265:19;;21924:366;;;:::o;22296:419::-;22462:4;22500:2;22489:9;22485:18;22477:26;;22549:9;22543:4;22539:20;22535:1;22524:9;22520:17;22513:47;22577:131;22703:4;22577:131;:::i;:::-;22569:139;;22296:419;;;:::o;22721:229::-;22861:34;22857:1;22849:6;22845:14;22838:58;22930:12;22925:2;22917:6;22913:15;22906:37;22721:229;:::o;22956:366::-;23098:3;23119:67;23183:2;23178:3;23119:67;:::i;:::-;23112:74;;23195:93;23284:3;23195:93;:::i;:::-;23313:2;23308:3;23304:12;23297:19;;22956:366;;;:::o;23328:419::-;23494:4;23532:2;23521:9;23517:18;23509:26;;23581:9;23575:4;23571:20;23567:1;23556:9;23552:17;23545:47;23609:131;23735:4;23609:131;:::i;:::-;23601:139;;23328:419;;;:::o;23753:143::-;23810:5;23841:6;23835:13;23826:22;;23857:33;23884:5;23857:33;:::i;:::-;23753:143;;;;:::o;23902:351::-;23972:6;24021:2;24009:9;24000:7;23996:23;23992:32;23989:119;;;24027:79;;:::i;:::-;23989:119;24147:1;24172:64;24228:7;24219:6;24208:9;24204:22;24172:64;:::i;:::-;24162:74;;24118:128;23902:351;;;;:::o;24259:223::-;24399:34;24395:1;24387:6;24383:14;24376:58;24468:6;24463:2;24455:6;24451:15;24444:31;24259:223;:::o;24488:366::-;24630:3;24651:67;24715:2;24710:3;24651:67;:::i;:::-;24644:74;;24727:93;24816:3;24727:93;:::i;:::-;24845:2;24840:3;24836:12;24829:19;;24488:366;;;:::o;24860:419::-;25026:4;25064:2;25053:9;25049:18;25041:26;;25113:9;25107:4;25103:20;25099:1;25088:9;25084:17;25077:47;25141:131;25267:4;25141:131;:::i;:::-;25133:139;;24860:419;;;:::o;25285:221::-;25425:34;25421:1;25413:6;25409:14;25402:58;25494:4;25489:2;25481:6;25477:15;25470:29;25285:221;:::o;25512:366::-;25654:3;25675:67;25739:2;25734:3;25675:67;:::i;:::-;25668:74;;25751:93;25840:3;25751:93;:::i;:::-;25869:2;25864:3;25860:12;25853:19;;25512:366;;;:::o;25884:419::-;26050:4;26088:2;26077:9;26073:18;26065:26;;26137:9;26131:4;26127:20;26123:1;26112:9;26108:17;26101:47;26165:131;26291:4;26165:131;:::i;:::-;26157:139;;25884:419;;;:::o;26309:224::-;26449:34;26445:1;26437:6;26433:14;26426:58;26518:7;26513:2;26505:6;26501:15;26494:32;26309:224;:::o;26539:366::-;26681:3;26702:67;26766:2;26761:3;26702:67;:::i;:::-;26695:74;;26778:93;26867:3;26778:93;:::i;:::-;26896:2;26891:3;26887:12;26880:19;;26539:366;;;:::o;26911:419::-;27077:4;27115:2;27104:9;27100:18;27092:26;;27164:9;27158:4;27154:20;27150:1;27139:9;27135:17;27128:47;27192:131;27318:4;27192:131;:::i;:::-;27184:139;;26911:419;;;:::o;27336:222::-;27476:34;27472:1;27464:6;27460:14;27453:58;27545:5;27540:2;27532:6;27528:15;27521:30;27336:222;:::o;27564:366::-;27706:3;27727:67;27791:2;27786:3;27727:67;:::i;:::-;27720:74;;27803:93;27892:3;27803:93;:::i;:::-;27921:2;27916:3;27912:12;27905:19;;27564:366;;;:::o;27936:419::-;28102:4;28140:2;28129:9;28125:18;28117:26;;28189:9;28183:4;28179:20;28175:1;28164:9;28160:17;28153:47;28217:131;28343:4;28217:131;:::i;:::-;28209:139;;27936:419;;;:::o;28361:172::-;28501:24;28497:1;28489:6;28485:14;28478:48;28361:172;:::o;28539:366::-;28681:3;28702:67;28766:2;28761:3;28702:67;:::i;:::-;28695:74;;28778:93;28867:3;28778:93;:::i;:::-;28896:2;28891:3;28887:12;28880:19;;28539:366;;;:::o;28911:419::-;29077:4;29115:2;29104:9;29100:18;29092:26;;29164:9;29158:4;29154:20;29150:1;29139:9;29135:17;29128:47;29192:131;29318:4;29192:131;:::i;:::-;29184:139;;28911:419;;;:::o;29336:297::-;29476:34;29472:1;29464:6;29460:14;29453:58;29545:34;29540:2;29532:6;29528:15;29521:59;29614:11;29609:2;29601:6;29597:15;29590:36;29336:297;:::o;29639:366::-;29781:3;29802:67;29866:2;29861:3;29802:67;:::i;:::-;29795:74;;29878:93;29967:3;29878:93;:::i;:::-;29996:2;29991:3;29987:12;29980:19;;29639:366;;;:::o;30011:419::-;30177:4;30215:2;30204:9;30200:18;30192:26;;30264:9;30258:4;30254:20;30250:1;30239:9;30235:17;30228:47;30292:131;30418:4;30292:131;:::i;:::-;30284:139;;30011:419;;;:::o;30436:240::-;30576:34;30572:1;30564:6;30560:14;30553:58;30645:23;30640:2;30632:6;30628:15;30621:48;30436:240;:::o;30682:366::-;30824:3;30845:67;30909:2;30904:3;30845:67;:::i;:::-;30838:74;;30921:93;31010:3;30921:93;:::i;:::-;31039:2;31034:3;31030:12;31023:19;;30682:366;;;:::o;31054:419::-;31220:4;31258:2;31247:9;31243:18;31235:26;;31307:9;31301:4;31297:20;31293:1;31282:9;31278:17;31271:47;31335:131;31461:4;31335:131;:::i;:::-;31327:139;;31054:419;;;:::o;31479:169::-;31619:21;31615:1;31607:6;31603:14;31596:45;31479:169;:::o;31654:366::-;31796:3;31817:67;31881:2;31876:3;31817:67;:::i;:::-;31810:74;;31893:93;31982:3;31893:93;:::i;:::-;32011:2;32006:3;32002:12;31995:19;;31654:366;;;:::o;32026:419::-;32192:4;32230:2;32219:9;32215:18;32207:26;;32279:9;32273:4;32269:20;32265:1;32254:9;32250:17;32243:47;32307:131;32433:4;32307:131;:::i;:::-;32299:139;;32026:419;;;:::o;32451:241::-;32591:34;32587:1;32579:6;32575:14;32568:58;32660:24;32655:2;32647:6;32643:15;32636:49;32451:241;:::o;32698:366::-;32840:3;32861:67;32925:2;32920:3;32861:67;:::i;:::-;32854:74;;32937:93;33026:3;32937:93;:::i;:::-;33055:2;33050:3;33046:12;33039:19;;32698:366;;;:::o;33070:419::-;33236:4;33274:2;33263:9;33259:18;33251:26;;33323:9;33317:4;33313:20;33309:1;33298:9;33294:17;33287:47;33351:131;33477:4;33351:131;:::i;:::-;33343:139;;33070:419;;;:::o;33495:191::-;33535:4;33555:20;33573:1;33555:20;:::i;:::-;33550:25;;33589:20;33607:1;33589:20;:::i;:::-;33584:25;;33628:1;33625;33622:8;33619:34;;;33633:18;;:::i;:::-;33619:34;33678:1;33675;33671:9;33663:17;;33495:191;;;;:::o;33692:225::-;33832:34;33828:1;33820:6;33816:14;33809:58;33901:8;33896:2;33888:6;33884:15;33877:33;33692:225;:::o;33923:366::-;34065:3;34086:67;34150:2;34145:3;34086:67;:::i;:::-;34079:74;;34162:93;34251:3;34162:93;:::i;:::-;34280:2;34275:3;34271:12;34264:19;;33923:366;;;:::o;34295:419::-;34461:4;34499:2;34488:9;34484:18;34476:26;;34548:9;34542:4;34538:20;34534:1;34523:9;34519:17;34512:47;34576:131;34702:4;34576:131;:::i;:::-;34568:139;;34295:419;;;:::o;34720:147::-;34821:11;34858:3;34843:18;;34720:147;;;;:::o;34873:114::-;;:::o;34993:398::-;35152:3;35173:83;35254:1;35249:3;35173:83;:::i;:::-;35166:90;;35265:93;35354:3;35265:93;:::i;:::-;35383:1;35378:3;35374:11;35367:18;;34993:398;;;:::o;35397:379::-;35581:3;35603:147;35746:3;35603:147;:::i;:::-;35596:154;;35767:3;35760:10;;35397:379;;;:::o;35782:442::-;35931:4;35969:2;35958:9;35954:18;35946:26;;35982:71;36050:1;36039:9;36035:17;36026:6;35982:71;:::i;:::-;36063:72;36131:2;36120:9;36116:18;36107:6;36063:72;:::i;:::-;36145;36213:2;36202:9;36198:18;36189:6;36145:72;:::i;:::-;35782:442;;;;;;:::o;36230:180::-;36278:77;36275:1;36268:88;36375:4;36372:1;36365:15;36399:4;36396:1;36389:15;36416:180;36464:77;36461:1;36454:88;36561:4;36558:1;36551:15;36585:4;36582:1;36575:15;36602:143;36659:5;36690:6;36684:13;36675:22;;36706:33;36733:5;36706:33;:::i;:::-;36602:143;;;;:::o;36751:351::-;36821:6;36870:2;36858:9;36849:7;36845:23;36841:32;36838:119;;;36876:79;;:::i;:::-;36838:119;36996:1;37021:64;37077:7;37068:6;37057:9;37053:22;37021:64;:::i;:::-;37011:74;;36967:128;36751:351;;;;:::o;37108:85::-;37153:7;37182:5;37171:16;;37108:85;;;:::o;37199:158::-;37257:9;37290:61;37308:42;37317:32;37343:5;37317:32;:::i;:::-;37308:42;:::i;:::-;37290:61;:::i;:::-;37277:74;;37199:158;;;:::o;37363:147::-;37458:45;37497:5;37458:45;:::i;:::-;37453:3;37446:58;37363:147;;:::o;37516:114::-;37583:6;37617:5;37611:12;37601:22;;37516:114;;;:::o;37636:184::-;37735:11;37769:6;37764:3;37757:19;37809:4;37804:3;37800:14;37785:29;;37636:184;;;;:::o;37826:132::-;37893:4;37916:3;37908:11;;37946:4;37941:3;37937:14;37929:22;;37826:132;;;:::o;37964:108::-;38041:24;38059:5;38041:24;:::i;:::-;38036:3;38029:37;37964:108;;:::o;38078:179::-;38147:10;38168:46;38210:3;38202:6;38168:46;:::i;:::-;38246:4;38241:3;38237:14;38223:28;;38078:179;;;;:::o;38263:113::-;38333:4;38365;38360:3;38356:14;38348:22;;38263:113;;;:::o;38412:732::-;38531:3;38560:54;38608:5;38560:54;:::i;:::-;38630:86;38709:6;38704:3;38630:86;:::i;:::-;38623:93;;38740:56;38790:5;38740:56;:::i;:::-;38819:7;38850:1;38835:284;38860:6;38857:1;38854:13;38835:284;;;38936:6;38930:13;38963:63;39022:3;39007:13;38963:63;:::i;:::-;38956:70;;39049:60;39102:6;39049:60;:::i;:::-;39039:70;;38895:224;38882:1;38879;38875:9;38870:14;;38835:284;;;38839:14;39135:3;39128:10;;38536:608;;;38412:732;;;;:::o;39150:831::-;39413:4;39451:3;39440:9;39436:19;39428:27;;39465:71;39533:1;39522:9;39518:17;39509:6;39465:71;:::i;:::-;39546:80;39622:2;39611:9;39607:18;39598:6;39546:80;:::i;:::-;39673:9;39667:4;39663:20;39658:2;39647:9;39643:18;39636:48;39701:108;39804:4;39795:6;39701:108;:::i;:::-;39693:116;;39819:72;39887:2;39876:9;39872:18;39863:6;39819:72;:::i;:::-;39901:73;39969:3;39958:9;39954:19;39945:6;39901:73;:::i;:::-;39150:831;;;;;;;;:::o;39987:807::-;40236:4;40274:3;40263:9;40259:19;40251:27;;40288:71;40356:1;40345:9;40341:17;40332:6;40288:71;:::i;:::-;40369:72;40437:2;40426:9;40422:18;40413:6;40369:72;:::i;:::-;40451:80;40527:2;40516:9;40512:18;40503:6;40451:80;:::i;:::-;40541;40617:2;40606:9;40602:18;40593:6;40541:80;:::i;:::-;40631:73;40699:3;40688:9;40684:19;40675:6;40631:73;:::i;:::-;40714;40782:3;40771:9;40767:19;40758:6;40714:73;:::i;:::-;39987:807;;;;;;;;;:::o;40800:663::-;40888:6;40896;40904;40953:2;40941:9;40932:7;40928:23;40924:32;40921:119;;;40959:79;;:::i;:::-;40921:119;41079:1;41104:64;41160:7;41151:6;41140:9;41136:22;41104:64;:::i;:::-;41094:74;;41050:128;41217:2;41243:64;41299:7;41290:6;41279:9;41275:22;41243:64;:::i;:::-;41233:74;;41188:129;41356:2;41382:64;41438:7;41429:6;41418:9;41414:22;41382:64;:::i;:::-;41372:74;;41327:129;40800:663;;;;;:::o

Swarm Source

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