ETH Price: $2,838.77 (-7.04%)
Gas: 7 Gwei

Token

Dont Miss (BOAT)
 

Overview

Max Total Supply

1,000,000,000 BOAT

Holders

327

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,054,903.165917878557190676 BOAT

Value
$0.00
0xd4719effdb3dc933cbe7fc09dd1a5e5dc4368756
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:
BOAT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-26
*/

/**
 *Submitted for verification at Etherscan.io on 2023-10-19
*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

/** 
Telegram: https://t.me/DontmisstheBoat

Twitter: http://twitter.com/misstheboateth

Website: missedtheboat.vip 

*/

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract BOAT 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 charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

    // 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 buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

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

	uint256 public tokensForCharity;
    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Dont Miss", "BOAT") {
        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 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 15;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 10;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 15;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 10;

        uint256 totalSupply = 1000000000 * 1e18;

        maxTransactionAmount = 20000000 * 1e18; // 1% from total supply maxTransactionAmountTxn
        maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 1000; // 1% swap wallet

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

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

		charityWallet = address(0xF5fC61A0c8d48DaD848390910dBbe6D1Ae891824); // set as charity wallet
        marketingWallet = address(0xA95463F59c183eA0799a8796E25E2d13B3E29815); // set as marketing wallet
        devWallet = address(0xF5fC61A0c8d48DaD848390910dBbe6D1Ae891824); // 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;
    }

    // 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
        
    {
       require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 2) / 100,
            "Swap amount cannot be higher than 2% total supply."
        );
        swapTokensAtAmount = newAmount;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        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 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 30, "Max BuyFee 30%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 30, "Max SellFee 30%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + 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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

        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);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                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);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + 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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"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":"buyCharityFee","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":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_charityFee","type":"uint256"},{"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":"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":"_charityFee","type":"uint256"},{"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":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f446f6e74204d69737300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f41540000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b6e565b5080600490805190602001906200011b92919062000b6e565b5050506200013e620001326200062e60201b60201c565b6200063660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006fc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c88565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c88565b6040518363ffffffff1660e01b8152600401620002bd92919062000ccb565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c88565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006fc60201b60201c565b6200036060a0516001620007e660201b60201c565b600080600f9050600080600a9050600080600f9050600080600a905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006009819055506a108b2a2c28029094000000600b819055506103e8600a82620003c3919062000d31565b620003cf919062000dc1565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000409919062000df9565b62000415919062000df9565b62000421919062000df9565b600f81905550846015819055508360168190555082601781905550816018819055506018546017546016546015546200045b919062000df9565b62000467919062000df9565b62000473919062000df9565b60148190555073f5fc61a0c8d48dad848390910dbbe6d1ae891824600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a95463f59c183ea0799a8796e25e2d13b3e29815600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f5fc61a0c8d48dad848390910dbbe6d1ae891824600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200059a6200058c6200088760201b60201c565b6001620008b160201b60201c565b620005ad306001620008b160201b60201c565b620005c261dead6001620008b160201b60201c565b620005e4620005d66200088760201b60201c565b6001620006fc60201b60201c565b620005f7306001620006fc60201b60201c565b6200060c61dead6001620006fc60201b60201c565b6200061e3382620009eb60201b60201c565b5050505050505050505062001018565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200070c6200062e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007326200088760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200078b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007829062000eb7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008c16200062e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e76200088760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000940576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009379062000eb7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009df919062000ef6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a559062000f63565b60405180910390fd5b62000a726000838362000b6460201b60201c565b806002600082825462000a86919062000df9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000add919062000df9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b44919062000f96565b60405180910390a362000b606000838362000b6960201b60201c565b5050565b505050565b505050565b82805462000b7c9062000fe2565b90600052602060002090601f01602090048101928262000ba0576000855562000bec565b82601f1062000bbb57805160ff191683800117855562000bec565b8280016001018555821562000bec579182015b8281111562000beb57825182559160200191906001019062000bce565b5b50905062000bfb919062000bff565b5090565b5b8082111562000c1a57600081600090555060010162000c00565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c508262000c23565b9050919050565b62000c628162000c43565b811462000c6e57600080fd5b50565b60008151905062000c828162000c57565b92915050565b60006020828403121562000ca15762000ca062000c1e565b5b600062000cb18482850162000c71565b91505092915050565b62000cc58162000c43565b82525050565b600060408201905062000ce2600083018562000cba565b62000cf1602083018462000cba565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d3e8262000cf8565b915062000d4b8362000cf8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d875762000d8662000d02565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dce8262000cf8565b915062000ddb8362000cf8565b92508262000dee5762000ded62000d92565b5b828204905092915050565b600062000e068262000cf8565b915062000e138362000cf8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e4b5762000e4a62000d02565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9f60208362000e56565b915062000eac8262000e67565b602082019050919050565b6000602082019050818103600083015262000ed28162000e90565b9050919050565b60008115159050919050565b62000ef08162000ed9565b82525050565b600060208201905062000f0d600083018462000ee5565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f4b601f8362000e56565b915062000f588262000f13565b602082019050919050565b6000602082019050818103600083015262000f7e8162000f3c565b9050919050565b62000f908162000cf8565b82525050565b600060208201905062000fad600083018462000f85565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ffb57607f821691505b6020821081141562001012576200101162000fb3565b5b50919050565b60805160a0516150b262001076600039600081816112680152818161185801526126db015260008181610e3301528181612683015281816138b701528181613998015281816139bf01528181613a5b0152613a8201526150b26000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cb1578063f2fde38b14610cdc578063f637434214610d05578063f8b45b0514610d3057610376565b8063e2f4560514610c32578063e7ad9fcd14610c5d578063e884f26014610c8657610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bca578063dd62ed3e14610bf557610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d5b565b60405161039d9190613bea565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613ca5565b610ded565b6040516103da9190613d00565b60405180910390f35b3480156103ef57600080fd5b506103f8610e0b565b6040516104059190613d2a565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d45565b610e11565b6040516104429190613d00565b60405180910390f35b34801561045757600080fd5b50610460610e31565b60405161046d9190613dd1565b60405180910390f35b34801561048257600080fd5b5061048b610e55565b6040516104989190613d2a565b60405180910390f35b3480156104ad57600080fd5b506104b6610e5f565b6040516104c39190613d2a565b60405180910390f35b3480156104d857600080fd5b506104e1610e65565b6040516104ee9190613d2a565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613dec565b610e6b565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e19565b610f7a565b6040516105549190613d00565b60405180910390f35b34801561056957600080fd5b50610572611072565b60405161057f9190613e7b565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613e96565b611078565b005b3480156105bd57600080fd5b506105c66111ab565b6040516105d39190613f19565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613ca5565b6111b4565b6040516106109190613d00565b60405180910390f35b34801561062557600080fd5b5061062e611260565b60405161063b9190613d2a565b60405180910390f35b34801561065057600080fd5b50610659611266565b6040516106669190613e7b565b60405180910390f35b34801561067b57600080fd5b5061068461128a565b6040516106919190613d00565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d45565b61129d565b6040516106ce9190613d00565b60405180910390f35b3480156106e357600080fd5b506106ec6112f3565b6040516106f99190613d2a565b60405180910390f35b34801561070e57600080fd5b506107176112f9565b6040516107249190613d00565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d45565b61130c565b6040516107619190613d2a565b60405180910390f35b34801561077657600080fd5b5061077f611354565b005b34801561078d57600080fd5b506107966113dc565b6040516107a39190613d00565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f60565b61147c565b005b3480156107e157600080fd5b506107ea611553565b6040516107f79190613e7b565b60405180910390f35b34801561080c57600080fd5b50610815611579565b6040516108229190613e7b565b60405180910390f35b34801561083757600080fd5b5061084061159f565b60405161084d9190613d2a565b60405180910390f35b34801561086257600080fd5b5061086b6115a5565b005b34801561087957600080fd5b50610882611659565b60405161088f9190613e7b565b60405180910390f35b3480156108a457600080fd5b506108ad611683565b6040516108ba9190613e7b565b60405180910390f35b3480156108cf57600080fd5b506108d86116a9565b6040516108e59190613d2a565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fa0565b6116af565b005b34801561092357600080fd5b5061092c611748565b6040516109399190613bea565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f60565b6117da565b005b34801561097757600080fd5b506109806118f3565b60405161098d9190613d2a565b60405180910390f35b3480156109a257600080fd5b506109ab6118f9565b6040516109b89190613d2a565b60405180910390f35b3480156109cd57600080fd5b506109d66118ff565b6040516109e39190613d2a565b60405180910390f35b3480156109f857600080fd5b50610a01611905565b604051610a0e9190613d2a565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613ca5565b61190b565b604051610a4b9190613d00565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ca5565b6119f6565b604051610a889190613d00565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d45565b611a14565b604051610ac59190613d00565b60405180910390f35b348015610ada57600080fd5b50610ae3611a34565b604051610af09190613d00565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f60565b611a47565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613dec565b611b6c565b005b348015610b5757600080fd5b50610b60611c7b565b604051610b6d9190613d00565b60405180910390f35b348015610b8257600080fd5b50610b8b611c8e565b604051610b989190613d2a565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613dec565b611c94565b005b348015610bd657600080fd5b50610bdf611de0565b604051610bec9190613d2a565b60405180910390f35b348015610c0157600080fd5b50610c1c6004803603810190610c179190613fcd565b611de6565b604051610c299190613d2a565b60405180910390f35b348015610c3e57600080fd5b50610c47611e6d565b604051610c549190613d2a565b60405180910390f35b348015610c6957600080fd5b50610c846004803603810190610c7f9190613e96565b611e73565b005b348015610c9257600080fd5b50610c9b611fa6565b604051610ca89190613d00565b60405180910390f35b348015610cbd57600080fd5b50610cc6612046565b604051610cd39190613d2a565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe9190613d45565b61204c565b005b348015610d1157600080fd5b50610d1a612144565b604051610d279190613d2a565b60405180910390f35b348015610d3c57600080fd5b50610d4561214a565b604051610d529190613d2a565b60405180910390f35b606060038054610d6a9061403c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d969061403c565b8015610de35780601f10610db857610100808354040283529160200191610de3565b820191906000526020600020905b815481529060010190602001808311610dc657829003601f168201915b5050505050905090565b6000610e01610dfa612150565b8484612158565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e73612150565b73ffffffffffffffffffffffffffffffffffffffff16610e91611659565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede906140ba565b60405180910390fd5b670de0b6b3a76400006103e86005610efd610e55565b610f079190614109565b610f119190614192565b610f1b9190614192565b811015610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614235565b60405180910390fd5b670de0b6b3a764000081610f719190614109565b60098190555050565b6000610f87848484612323565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd2612150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611049906142c7565b60405180910390fd5b6110668561105e612150565b858403612158565b60019150509392505050565b61dead81565b611080612150565b73ffffffffffffffffffffffffffffffffffffffff1661109e611659565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906140ba565b60405180910390fd5b601e8183858761110491906142e7565b61110e91906142e7565b61111891906142e7565b1115611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090614389565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461118b91906142e7565b61119591906142e7565b61119f91906142e7565b600f8190555050505050565b60006012905090565b60006112566111c1612150565b8484600160006111cf612150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125191906142e7565b612158565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135c612150565b73ffffffffffffffffffffffffffffffffffffffff1661137a611659565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c7906140ba565b60405180910390fd5b6113da6000613023565b565b60006113e6612150565b73ffffffffffffffffffffffffffffffffffffffff16611404611659565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906140ba565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611484612150565b73ffffffffffffffffffffffffffffffffffffffff166114a2611659565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef906140ba565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115ad612150565b73ffffffffffffffffffffffffffffffffffffffff166115cb611659565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906140ba565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116b7612150565b73ffffffffffffffffffffffffffffffffffffffff166116d5611659565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906140ba565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546117579061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546117839061403c565b80156117d05780601f106117a5576101008083540402835291602001916117d0565b820191906000526020600020905b8154815290600101906020018083116117b357829003601f168201915b5050505050905090565b6117e2612150565b73ffffffffffffffffffffffffffffffffffffffff16611800611659565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d906140ba565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc9061441b565b60405180910390fd5b6118ef82826130e9565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061191a612150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce906144ad565b60405180910390fd5b6119eb6119e2612150565b85858403612158565b600191505092915050565b6000611a0a611a03612150565b8484612323565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a4f612150565b73ffffffffffffffffffffffffffffffffffffffff16611a6d611659565b73ffffffffffffffffffffffffffffffffffffffff1614611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906140ba565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b609190613d00565b60405180910390a25050565b611b74612150565b73ffffffffffffffffffffffffffffffffffffffff16611b92611659565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf906140ba565b60405180910390fd5b670de0b6b3a76400006103e86005611bfe610e55565b611c089190614109565b611c129190614192565b611c1c9190614192565b811015611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c559061453f565b60405180910390fd5b670de0b6b3a764000081611c729190614109565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b611c9c612150565b73ffffffffffffffffffffffffffffffffffffffff16611cba611659565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d07906140ba565b60405180910390fd5b620186a06001611d1e610e55565b611d289190614109565b611d329190614192565b811015611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b906145d1565b60405180910390fd5b60646002611d80610e55565b611d8a9190614109565b611d949190614192565b811115611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614663565b60405180910390fd5b80600a8190555050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e7b612150565b73ffffffffffffffffffffffffffffffffffffffff16611e99611659565b73ffffffffffffffffffffffffffffffffffffffff1614611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906140ba565b60405180910390fd5b601e81838587611eff91906142e7565b611f0991906142e7565b611f1391906142e7565b1115611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906146cf565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f8691906142e7565b611f9091906142e7565b611f9a91906142e7565b60148190555050505050565b6000611fb0612150565b73ffffffffffffffffffffffffffffffffffffffff16611fce611659565b73ffffffffffffffffffffffffffffffffffffffff1614612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b906140ba565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b612054612150565b73ffffffffffffffffffffffffffffffffffffffff16612072611659565b73ffffffffffffffffffffffffffffffffffffffff16146120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614761565b60405180910390fd5b61214181613023565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf906147f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614885565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123169190613d2a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a90614917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa906149a9565b60405180910390fd5b600081141561241d576124188383600061318a565b61301e565b600c60009054906101000a900460ff1615612ae05761243a611659565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124a85750612478611659565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124e15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561251b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125345750600560149054906101000a900460ff16155b15612adf57600c60019054906101000a900460ff1661262e57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ee5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614a15565b60405180910390fd5b5b600e60009054906101000a900460ff16156127f65761264b611659565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126d257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561272a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127f55743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790614acd565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128995750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612940576009548111156128e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128da90614b5f565b60405180910390fd5b600b546128ef8361130c565b826128fa91906142e7565b111561293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290614bcb565b60405180910390fd5b612ade565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129e35750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a3257600954811115612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490614c5d565b60405180910390fd5b612add565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612adc57600b54612a8f8361130c565b82612a9a91906142e7565b1115612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad290614bcb565b60405180910390fd5b5b5b5b5b5b6000612aeb3061130c565b90506000600a548210159050808015612b105750600c60029054906101000a900460ff165b8015612b295750600560149054906101000a900460ff16155b8015612b7f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bd55750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c2b5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c6f576001600560146101000a81548160ff021916908315150217905550612c5361340b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d255750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d2f57600090505b6000811561300e57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d9257506000601454115b15612e9257612dbf6064612db1601454886137cc90919063ffffffff16565b6137e290919063ffffffff16565b905060145460155482612dd29190614109565b612ddc9190614192565b60196000828254612ded91906142e7565b9250508190555060145460175482612e059190614109565b612e0f9190614192565b601b6000828254612e2091906142e7565b9250508190555060145460185482612e389190614109565b612e429190614192565b601c6000828254612e5391906142e7565b9250508190555060145460165482612e6b9190614109565b612e759190614192565b601a6000828254612e8691906142e7565b92505081905550612fea565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eed57506000600f54115b15612fe957612f1a6064612f0c600f54886137cc90919063ffffffff16565b6137e290919063ffffffff16565b9050600f5460105482612f2d9190614109565b612f379190614192565b60196000828254612f4891906142e7565b92505081905550600f5460125482612f609190614109565b612f6a9190614192565b601b6000828254612f7b91906142e7565b92505081905550600f5460135482612f939190614109565b612f9d9190614192565b601c6000828254612fae91906142e7565b92505081905550600f5460115482612fc69190614109565b612fd09190614192565b601a6000828254612fe191906142e7565b925050819055505b5b6000811115612fff57612ffe87308361318a565b5b808561300b9190614c7d565b94505b61301987878761318a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f190614917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613261906149a9565b60405180910390fd5b6132758383836137f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f290614d23565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461338e91906142e7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133f29190613d2a565b60405180910390a36134058484846137fd565b50505050565b60006134163061130c565b90506000601c54601a54601b5460195461343091906142e7565b61343a91906142e7565b61344491906142e7565b90506000808314806134565750600082145b15613463575050506137ca565b6014600a546134729190614109565b83111561348b576014600a546134889190614109565b92505b6000600283601b548661349e9190614109565b6134a89190614192565b6134b29190614192565b905060006134c9828661380290919063ffffffff16565b905060004790506134d982613818565b60006134ee824761380290919063ffffffff16565b905060006135198761350b601954856137cc90919063ffffffff16565b6137e290919063ffffffff16565b9050600061354488613536601a54866137cc90919063ffffffff16565b6137e290919063ffffffff16565b9050600061356f89613561601c54876137cc90919063ffffffff16565b6137e290919063ffffffff16565b90506000818385876135819190614c7d565b61358b9190614c7d565b6135959190614c7d565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135fd90614d74565b60006040518083038185875af1925050503d806000811461363a576040519150601f19603f3d011682016040523d82523d6000602084013e61363f565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161368b90614d74565b60006040518083038185875af1925050503d80600081146136c8576040519150601f19603f3d011682016040523d82523d6000602084013e6136cd565b606091505b5050809950506000881180156136e35750600081115b15613730576136f28882613a55565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161372793929190614d89565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161377690614d74565b60006040518083038185875af1925050503d80600081146137b3576040519150601f19603f3d011682016040523d82523d6000602084013e6137b8565b606091505b50508099505050505050505050505050505b565b600081836137da9190614109565b905092915050565b600081836137f09190614192565b905092915050565b505050565b505050565b600081836138109190614c7d565b905092915050565b6000600267ffffffffffffffff81111561383557613834614dc0565b5b6040519080825280602002602001820160405280156138635781602001602082028036833780820191505090505b509050308160008151811061387b5761387a614def565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613920573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139449190614e33565b8160018151811061395857613957614def565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139bd307f000000000000000000000000000000000000000000000000000000000000000084612158565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a1f959493929190614f59565b600060405180830381600087803b158015613a3957600080fd5b505af1158015613a4d573d6000803e3d6000fd5b505050505050565b613a80307f000000000000000000000000000000000000000000000000000000000000000084612158565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b0796959493929190614fb3565b60606040518083038185885af1158015613b25573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b4a9190615029565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b8b578082015181840152602081019050613b70565b83811115613b9a576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bbc82613b51565b613bc68185613b5c565b9350613bd6818560208601613b6d565b613bdf81613ba0565b840191505092915050565b60006020820190508181036000830152613c048184613bb1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3c82613c11565b9050919050565b613c4c81613c31565b8114613c5757600080fd5b50565b600081359050613c6981613c43565b92915050565b6000819050919050565b613c8281613c6f565b8114613c8d57600080fd5b50565b600081359050613c9f81613c79565b92915050565b60008060408385031215613cbc57613cbb613c0c565b5b6000613cca85828601613c5a565b9250506020613cdb85828601613c90565b9150509250929050565b60008115159050919050565b613cfa81613ce5565b82525050565b6000602082019050613d156000830184613cf1565b92915050565b613d2481613c6f565b82525050565b6000602082019050613d3f6000830184613d1b565b92915050565b600060208284031215613d5b57613d5a613c0c565b5b6000613d6984828501613c5a565b91505092915050565b6000819050919050565b6000613d97613d92613d8d84613c11565b613d72565b613c11565b9050919050565b6000613da982613d7c565b9050919050565b6000613dbb82613d9e565b9050919050565b613dcb81613db0565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b600060208284031215613e0257613e01613c0c565b5b6000613e1084828501613c90565b91505092915050565b600080600060608486031215613e3257613e31613c0c565b5b6000613e4086828701613c5a565b9350506020613e5186828701613c5a565b9250506040613e6286828701613c90565b9150509250925092565b613e7581613c31565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b60008060008060808587031215613eb057613eaf613c0c565b5b6000613ebe87828801613c90565b9450506020613ecf87828801613c90565b9350506040613ee087828801613c90565b9250506060613ef187828801613c90565b91505092959194509250565b600060ff82169050919050565b613f1381613efd565b82525050565b6000602082019050613f2e6000830184613f0a565b92915050565b613f3d81613ce5565b8114613f4857600080fd5b50565b600081359050613f5a81613f34565b92915050565b60008060408385031215613f7757613f76613c0c565b5b6000613f8585828601613c5a565b9250506020613f9685828601613f4b565b9150509250929050565b600060208284031215613fb657613fb5613c0c565b5b6000613fc484828501613f4b565b91505092915050565b60008060408385031215613fe457613fe3613c0c565b5b6000613ff285828601613c5a565b925050602061400385828601613c5a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405457607f821691505b602082108114156140685761406761400d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a4602083613b5c565b91506140af8261406e565b602082019050919050565b600060208201905081810360008301526140d381614097565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411482613c6f565b915061411f83613c6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614158576141576140da565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061419d82613c6f565b91506141a883613c6f565b9250826141b8576141b7614163565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061421f602f83613b5c565b915061422a826141c3565b604082019050919050565b6000602082019050818103600083015261424e81614212565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142b1602883613b5c565b91506142bc82614255565b604082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b60006142f282613c6f565b91506142fd83613c6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614332576143316140da565b5b828201905092915050565b7f4d61782042757946656520333025000000000000000000000000000000000000600082015250565b6000614373600e83613b5c565b915061437e8261433d565b602082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614405603983613b5c565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614497602583613b5c565b91506144a28261443b565b604082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614529602483613b5c565b9150614534826144cd565b604082019050919050565b600060208201905081810360008301526145588161451c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145bb603583613b5c565b91506145c68261455f565b604082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20322520746f74616c20737570706c792e0000000000000000000000000000602082015250565b600061464d603283613b5c565b9150614658826145f1565b604082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b7f4d61782053656c6c466565203330250000000000000000000000000000000000600082015250565b60006146b9600f83613b5c565b91506146c482614683565b602082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061474b602683613b5c565b9150614756826146ef565b604082019050919050565b6000602082019050818103600083015261477a8161473e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147dd602483613b5c565b91506147e882614781565b604082019050919050565b6000602082019050818103600083015261480c816147d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061486f602283613b5c565b915061487a82614813565b604082019050919050565b6000602082019050818103600083015261489e81614862565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614901602583613b5c565b915061490c826148a5565b604082019050919050565b60006020820190508181036000830152614930816148f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614993602383613b5c565b915061499e82614937565b604082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149ff601683613b5c565b9150614a0a826149c9565b602082019050919050565b60006020820190508181036000830152614a2e816149f2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ab7604983613b5c565b9150614ac282614a35565b606082019050919050565b60006020820190508181036000830152614ae681614aaa565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b49603583613b5c565b9150614b5482614aed565b604082019050919050565b60006020820190508181036000830152614b7881614b3c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bb5601383613b5c565b9150614bc082614b7f565b602082019050919050565b60006020820190508181036000830152614be481614ba8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c47603683613b5c565b9150614c5282614beb565b604082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b6000614c8882613c6f565b9150614c9383613c6f565b925082821015614ca657614ca56140da565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d0d602683613b5c565b9150614d1882614cb1565b604082019050919050565b60006020820190508181036000830152614d3c81614d00565b9050919050565b600081905092915050565b50565b6000614d5e600083614d43565b9150614d6982614d4e565b600082019050919050565b6000614d7f82614d51565b9150819050919050565b6000606082019050614d9e6000830186613d1b565b614dab6020830185613d1b565b614db86040830184613d1b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e2d81613c43565b92915050565b600060208284031215614e4957614e48613c0c565b5b6000614e5784828501614e1e565b91505092915050565b6000819050919050565b6000614e85614e80614e7b84614e60565b613d72565b613c6f565b9050919050565b614e9581614e6a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ed081613c31565b82525050565b6000614ee28383614ec7565b60208301905092915050565b6000602082019050919050565b6000614f0682614e9b565b614f108185614ea6565b9350614f1b83614eb7565b8060005b83811015614f4c578151614f338882614ed6565b9750614f3e83614eee565b925050600181019050614f1f565b5085935050505092915050565b600060a082019050614f6e6000830188613d1b565b614f7b6020830187614e8c565b8181036040830152614f8d8186614efb565b9050614f9c6060830185613e6c565b614fa96080830184613d1b565b9695505050505050565b600060c082019050614fc86000830189613e6c565b614fd56020830188613d1b565b614fe26040830187614e8c565b614fef6060830186614e8c565b614ffc6080830185613e6c565b61500960a0830184613d1b565b979650505050505050565b60008151905061502381613c79565b92915050565b60008060006060848603121561504257615041613c0c565b5b600061505086828701615014565b935050602061506186828701615014565b925050604061507286828701615014565b915050925092509256fea2646970667358221220273a764d68a1487975ed404bd87ca74e63ee2d6e83a45f7b58b24743278ad3e764736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cb1578063f2fde38b14610cdc578063f637434214610d05578063f8b45b0514610d3057610376565b8063e2f4560514610c32578063e7ad9fcd14610c5d578063e884f26014610c8657610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bca578063dd62ed3e14610bf557610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d5b565b60405161039d9190613bea565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613ca5565b610ded565b6040516103da9190613d00565b60405180910390f35b3480156103ef57600080fd5b506103f8610e0b565b6040516104059190613d2a565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d45565b610e11565b6040516104429190613d00565b60405180910390f35b34801561045757600080fd5b50610460610e31565b60405161046d9190613dd1565b60405180910390f35b34801561048257600080fd5b5061048b610e55565b6040516104989190613d2a565b60405180910390f35b3480156104ad57600080fd5b506104b6610e5f565b6040516104c39190613d2a565b60405180910390f35b3480156104d857600080fd5b506104e1610e65565b6040516104ee9190613d2a565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613dec565b610e6b565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e19565b610f7a565b6040516105549190613d00565b60405180910390f35b34801561056957600080fd5b50610572611072565b60405161057f9190613e7b565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613e96565b611078565b005b3480156105bd57600080fd5b506105c66111ab565b6040516105d39190613f19565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613ca5565b6111b4565b6040516106109190613d00565b60405180910390f35b34801561062557600080fd5b5061062e611260565b60405161063b9190613d2a565b60405180910390f35b34801561065057600080fd5b50610659611266565b6040516106669190613e7b565b60405180910390f35b34801561067b57600080fd5b5061068461128a565b6040516106919190613d00565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d45565b61129d565b6040516106ce9190613d00565b60405180910390f35b3480156106e357600080fd5b506106ec6112f3565b6040516106f99190613d2a565b60405180910390f35b34801561070e57600080fd5b506107176112f9565b6040516107249190613d00565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d45565b61130c565b6040516107619190613d2a565b60405180910390f35b34801561077657600080fd5b5061077f611354565b005b34801561078d57600080fd5b506107966113dc565b6040516107a39190613d00565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f60565b61147c565b005b3480156107e157600080fd5b506107ea611553565b6040516107f79190613e7b565b60405180910390f35b34801561080c57600080fd5b50610815611579565b6040516108229190613e7b565b60405180910390f35b34801561083757600080fd5b5061084061159f565b60405161084d9190613d2a565b60405180910390f35b34801561086257600080fd5b5061086b6115a5565b005b34801561087957600080fd5b50610882611659565b60405161088f9190613e7b565b60405180910390f35b3480156108a457600080fd5b506108ad611683565b6040516108ba9190613e7b565b60405180910390f35b3480156108cf57600080fd5b506108d86116a9565b6040516108e59190613d2a565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fa0565b6116af565b005b34801561092357600080fd5b5061092c611748565b6040516109399190613bea565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f60565b6117da565b005b34801561097757600080fd5b506109806118f3565b60405161098d9190613d2a565b60405180910390f35b3480156109a257600080fd5b506109ab6118f9565b6040516109b89190613d2a565b60405180910390f35b3480156109cd57600080fd5b506109d66118ff565b6040516109e39190613d2a565b60405180910390f35b3480156109f857600080fd5b50610a01611905565b604051610a0e9190613d2a565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613ca5565b61190b565b604051610a4b9190613d00565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ca5565b6119f6565b604051610a889190613d00565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d45565b611a14565b604051610ac59190613d00565b60405180910390f35b348015610ada57600080fd5b50610ae3611a34565b604051610af09190613d00565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f60565b611a47565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613dec565b611b6c565b005b348015610b5757600080fd5b50610b60611c7b565b604051610b6d9190613d00565b60405180910390f35b348015610b8257600080fd5b50610b8b611c8e565b604051610b989190613d2a565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613dec565b611c94565b005b348015610bd657600080fd5b50610bdf611de0565b604051610bec9190613d2a565b60405180910390f35b348015610c0157600080fd5b50610c1c6004803603810190610c179190613fcd565b611de6565b604051610c299190613d2a565b60405180910390f35b348015610c3e57600080fd5b50610c47611e6d565b604051610c549190613d2a565b60405180910390f35b348015610c6957600080fd5b50610c846004803603810190610c7f9190613e96565b611e73565b005b348015610c9257600080fd5b50610c9b611fa6565b604051610ca89190613d00565b60405180910390f35b348015610cbd57600080fd5b50610cc6612046565b604051610cd39190613d2a565b60405180910390f35b348015610ce857600080fd5b50610d036004803603810190610cfe9190613d45565b61204c565b005b348015610d1157600080fd5b50610d1a612144565b604051610d279190613d2a565b60405180910390f35b348015610d3c57600080fd5b50610d4561214a565b604051610d529190613d2a565b60405180910390f35b606060038054610d6a9061403c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d969061403c565b8015610de35780601f10610db857610100808354040283529160200191610de3565b820191906000526020600020905b815481529060010190602001808311610dc657829003601f168201915b5050505050905090565b6000610e01610dfa612150565b8484612158565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e73612150565b73ffffffffffffffffffffffffffffffffffffffff16610e91611659565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede906140ba565b60405180910390fd5b670de0b6b3a76400006103e86005610efd610e55565b610f079190614109565b610f119190614192565b610f1b9190614192565b811015610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490614235565b60405180910390fd5b670de0b6b3a764000081610f719190614109565b60098190555050565b6000610f87848484612323565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fd2612150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611049906142c7565b60405180910390fd5b6110668561105e612150565b858403612158565b60019150509392505050565b61dead81565b611080612150565b73ffffffffffffffffffffffffffffffffffffffff1661109e611659565b73ffffffffffffffffffffffffffffffffffffffff16146110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb906140ba565b60405180910390fd5b601e8183858761110491906142e7565b61110e91906142e7565b61111891906142e7565b1115611159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115090614389565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461118b91906142e7565b61119591906142e7565b61119f91906142e7565b600f8190555050505050565b60006012905090565b60006112566111c1612150565b8484600160006111cf612150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461125191906142e7565b612158565b6001905092915050565b60195481565b7f000000000000000000000000e31cab8bd60a691be8da5eaaa299cc5ed7d1c60981565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61135c612150565b73ffffffffffffffffffffffffffffffffffffffff1661137a611659565b73ffffffffffffffffffffffffffffffffffffffff16146113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c7906140ba565b60405180910390fd5b6113da6000613023565b565b60006113e6612150565b73ffffffffffffffffffffffffffffffffffffffff16611404611659565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906140ba565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611484612150565b73ffffffffffffffffffffffffffffffffffffffff166114a2611659565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef906140ba565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115ad612150565b73ffffffffffffffffffffffffffffffffffffffff166115cb611659565b73ffffffffffffffffffffffffffffffffffffffff1614611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906140ba565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116b7612150565b73ffffffffffffffffffffffffffffffffffffffff166116d5611659565b73ffffffffffffffffffffffffffffffffffffffff161461172b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611722906140ba565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546117579061403c565b80601f01602080910402602001604051908101604052809291908181526020018280546117839061403c565b80156117d05780601f106117a5576101008083540402835291602001916117d0565b820191906000526020600020905b8154815290600101906020018083116117b357829003601f168201915b5050505050905090565b6117e2612150565b73ffffffffffffffffffffffffffffffffffffffff16611800611659565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d906140ba565b60405180910390fd5b7f000000000000000000000000e31cab8bd60a691be8da5eaaa299cc5ed7d1c60973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dc9061441b565b60405180910390fd5b6118ef82826130e9565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061191a612150565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce906144ad565b60405180910390fd5b6119eb6119e2612150565b85858403612158565b600191505092915050565b6000611a0a611a03612150565b8484612323565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a4f612150565b73ffffffffffffffffffffffffffffffffffffffff16611a6d611659565b73ffffffffffffffffffffffffffffffffffffffff1614611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba906140ba565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b609190613d00565b60405180910390a25050565b611b74612150565b73ffffffffffffffffffffffffffffffffffffffff16611b92611659565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf906140ba565b60405180910390fd5b670de0b6b3a76400006103e86005611bfe610e55565b611c089190614109565b611c129190614192565b611c1c9190614192565b811015611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c559061453f565b60405180910390fd5b670de0b6b3a764000081611c729190614109565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b611c9c612150565b73ffffffffffffffffffffffffffffffffffffffff16611cba611659565b73ffffffffffffffffffffffffffffffffffffffff1614611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d07906140ba565b60405180910390fd5b620186a06001611d1e610e55565b611d289190614109565b611d329190614192565b811015611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b906145d1565b60405180910390fd5b60646002611d80610e55565b611d8a9190614109565b611d949190614192565b811115611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614663565b60405180910390fd5b80600a8190555050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e7b612150565b73ffffffffffffffffffffffffffffffffffffffff16611e99611659565b73ffffffffffffffffffffffffffffffffffffffff1614611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee6906140ba565b60405180910390fd5b601e81838587611eff91906142e7565b611f0991906142e7565b611f1391906142e7565b1115611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b906146cf565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f8691906142e7565b611f9091906142e7565b611f9a91906142e7565b60148190555050505050565b6000611fb0612150565b73ffffffffffffffffffffffffffffffffffffffff16611fce611659565b73ffffffffffffffffffffffffffffffffffffffff1614612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b906140ba565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b612054612150565b73ffffffffffffffffffffffffffffffffffffffff16612072611659565b73ffffffffffffffffffffffffffffffffffffffff16146120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf906140ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90614761565b60405180910390fd5b61214181613023565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf906147f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222f90614885565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123169190613d2a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238a90614917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fa906149a9565b60405180910390fd5b600081141561241d576124188383600061318a565b61301e565b600c60009054906101000a900460ff1615612ae05761243a611659565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124a85750612478611659565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124e15750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561251b575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125345750600560149054906101000a900460ff16155b15612adf57600c60019054906101000a900460ff1661262e57601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125ee5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614a15565b60405180910390fd5b5b600e60009054906101000a900460ff16156127f65761264b611659565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126d257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561272a57507f000000000000000000000000e31cab8bd60a691be8da5eaaa299cc5ed7d1c60973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156127f55743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a790614acd565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128995750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612940576009548111156128e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128da90614b5f565b60405180910390fd5b600b546128ef8361130c565b826128fa91906142e7565b111561293b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293290614bcb565b60405180910390fd5b612ade565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129e35750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a3257600954811115612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490614c5d565b60405180910390fd5b612add565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612adc57600b54612a8f8361130c565b82612a9a91906142e7565b1115612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad290614bcb565b60405180910390fd5b5b5b5b5b5b6000612aeb3061130c565b90506000600a548210159050808015612b105750600c60029054906101000a900460ff165b8015612b295750600560149054906101000a900460ff16155b8015612b7f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bd55750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c2b5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c6f576001600560146101000a81548160ff021916908315150217905550612c5361340b565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d255750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d2f57600090505b6000811561300e57601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d9257506000601454115b15612e9257612dbf6064612db1601454886137cc90919063ffffffff16565b6137e290919063ffffffff16565b905060145460155482612dd29190614109565b612ddc9190614192565b60196000828254612ded91906142e7565b9250508190555060145460175482612e059190614109565b612e0f9190614192565b601b6000828254612e2091906142e7565b9250508190555060145460185482612e389190614109565b612e429190614192565b601c6000828254612e5391906142e7565b9250508190555060145460165482612e6b9190614109565b612e759190614192565b601a6000828254612e8691906142e7565b92505081905550612fea565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eed57506000600f54115b15612fe957612f1a6064612f0c600f54886137cc90919063ffffffff16565b6137e290919063ffffffff16565b9050600f5460105482612f2d9190614109565b612f379190614192565b60196000828254612f4891906142e7565b92505081905550600f5460125482612f609190614109565b612f6a9190614192565b601b6000828254612f7b91906142e7565b92505081905550600f5460135482612f939190614109565b612f9d9190614192565b601c6000828254612fae91906142e7565b92505081905550600f5460115482612fc69190614109565b612fd09190614192565b601a6000828254612fe191906142e7565b925050819055505b5b6000811115612fff57612ffe87308361318a565b5b808561300b9190614c7d565b94505b61301987878761318a565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f190614917565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561326a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613261906149a9565b60405180910390fd5b6132758383836137f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156132fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f290614d23565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461338e91906142e7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133f29190613d2a565b60405180910390a36134058484846137fd565b50505050565b60006134163061130c565b90506000601c54601a54601b5460195461343091906142e7565b61343a91906142e7565b61344491906142e7565b90506000808314806134565750600082145b15613463575050506137ca565b6014600a546134729190614109565b83111561348b576014600a546134889190614109565b92505b6000600283601b548661349e9190614109565b6134a89190614192565b6134b29190614192565b905060006134c9828661380290919063ffffffff16565b905060004790506134d982613818565b60006134ee824761380290919063ffffffff16565b905060006135198761350b601954856137cc90919063ffffffff16565b6137e290919063ffffffff16565b9050600061354488613536601a54866137cc90919063ffffffff16565b6137e290919063ffffffff16565b9050600061356f89613561601c54876137cc90919063ffffffff16565b6137e290919063ffffffff16565b90506000818385876135819190614c7d565b61358b9190614c7d565b6135959190614c7d565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516135fd90614d74565b60006040518083038185875af1925050503d806000811461363a576040519150601f19603f3d011682016040523d82523d6000602084013e61363f565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161368b90614d74565b60006040518083038185875af1925050503d80600081146136c8576040519150601f19603f3d011682016040523d82523d6000602084013e6136cd565b606091505b5050809950506000881180156136e35750600081115b15613730576136f28882613a55565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161372793929190614d89565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161377690614d74565b60006040518083038185875af1925050503d80600081146137b3576040519150601f19603f3d011682016040523d82523d6000602084013e6137b8565b606091505b50508099505050505050505050505050505b565b600081836137da9190614109565b905092915050565b600081836137f09190614192565b905092915050565b505050565b505050565b600081836138109190614c7d565b905092915050565b6000600267ffffffffffffffff81111561383557613834614dc0565b5b6040519080825280602002602001820160405280156138635781602001602082028036833780820191505090505b509050308160008151811061387b5761387a614def565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613920573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139449190614e33565b8160018151811061395857613957614def565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139bd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612158565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a1f959493929190614f59565b600060405180830381600087803b158015613a3957600080fd5b505af1158015613a4d573d6000803e3d6000fd5b505050505050565b613a80307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612158565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b0796959493929190614fb3565b60606040518083038185885af1158015613b25573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b4a9190615029565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b8b578082015181840152602081019050613b70565b83811115613b9a576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bbc82613b51565b613bc68185613b5c565b9350613bd6818560208601613b6d565b613bdf81613ba0565b840191505092915050565b60006020820190508181036000830152613c048184613bb1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3c82613c11565b9050919050565b613c4c81613c31565b8114613c5757600080fd5b50565b600081359050613c6981613c43565b92915050565b6000819050919050565b613c8281613c6f565b8114613c8d57600080fd5b50565b600081359050613c9f81613c79565b92915050565b60008060408385031215613cbc57613cbb613c0c565b5b6000613cca85828601613c5a565b9250506020613cdb85828601613c90565b9150509250929050565b60008115159050919050565b613cfa81613ce5565b82525050565b6000602082019050613d156000830184613cf1565b92915050565b613d2481613c6f565b82525050565b6000602082019050613d3f6000830184613d1b565b92915050565b600060208284031215613d5b57613d5a613c0c565b5b6000613d6984828501613c5a565b91505092915050565b6000819050919050565b6000613d97613d92613d8d84613c11565b613d72565b613c11565b9050919050565b6000613da982613d7c565b9050919050565b6000613dbb82613d9e565b9050919050565b613dcb81613db0565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b600060208284031215613e0257613e01613c0c565b5b6000613e1084828501613c90565b91505092915050565b600080600060608486031215613e3257613e31613c0c565b5b6000613e4086828701613c5a565b9350506020613e5186828701613c5a565b9250506040613e6286828701613c90565b9150509250925092565b613e7581613c31565b82525050565b6000602082019050613e906000830184613e6c565b92915050565b60008060008060808587031215613eb057613eaf613c0c565b5b6000613ebe87828801613c90565b9450506020613ecf87828801613c90565b9350506040613ee087828801613c90565b9250506060613ef187828801613c90565b91505092959194509250565b600060ff82169050919050565b613f1381613efd565b82525050565b6000602082019050613f2e6000830184613f0a565b92915050565b613f3d81613ce5565b8114613f4857600080fd5b50565b600081359050613f5a81613f34565b92915050565b60008060408385031215613f7757613f76613c0c565b5b6000613f8585828601613c5a565b9250506020613f9685828601613f4b565b9150509250929050565b600060208284031215613fb657613fb5613c0c565b5b6000613fc484828501613f4b565b91505092915050565b60008060408385031215613fe457613fe3613c0c565b5b6000613ff285828601613c5a565b925050602061400385828601613c5a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061405457607f821691505b602082108114156140685761406761400d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140a4602083613b5c565b91506140af8261406e565b602082019050919050565b600060208201905081810360008301526140d381614097565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411482613c6f565b915061411f83613c6f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614158576141576140da565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061419d82613c6f565b91506141a883613c6f565b9250826141b8576141b7614163565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b600061421f602f83613b5c565b915061422a826141c3565b604082019050919050565b6000602082019050818103600083015261424e81614212565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142b1602883613b5c565b91506142bc82614255565b604082019050919050565b600060208201905081810360008301526142e0816142a4565b9050919050565b60006142f282613c6f565b91506142fd83613c6f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614332576143316140da565b5b828201905092915050565b7f4d61782042757946656520333025000000000000000000000000000000000000600082015250565b6000614373600e83613b5c565b915061437e8261433d565b602082019050919050565b600060208201905081810360008301526143a281614366565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614405603983613b5c565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614497602583613b5c565b91506144a28261443b565b604082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614529602483613b5c565b9150614534826144cd565b604082019050919050565b600060208201905081810360008301526145588161451c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145bb603583613b5c565b91506145c68261455f565b604082019050919050565b600060208201905081810360008301526145ea816145ae565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20322520746f74616c20737570706c792e0000000000000000000000000000602082015250565b600061464d603283613b5c565b9150614658826145f1565b604082019050919050565b6000602082019050818103600083015261467c81614640565b9050919050565b7f4d61782053656c6c466565203330250000000000000000000000000000000000600082015250565b60006146b9600f83613b5c565b91506146c482614683565b602082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061474b602683613b5c565b9150614756826146ef565b604082019050919050565b6000602082019050818103600083015261477a8161473e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147dd602483613b5c565b91506147e882614781565b604082019050919050565b6000602082019050818103600083015261480c816147d0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061486f602283613b5c565b915061487a82614813565b604082019050919050565b6000602082019050818103600083015261489e81614862565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614901602583613b5c565b915061490c826148a5565b604082019050919050565b60006020820190508181036000830152614930816148f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614993602383613b5c565b915061499e82614937565b604082019050919050565b600060208201905081810360008301526149c281614986565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006149ff601683613b5c565b9150614a0a826149c9565b602082019050919050565b60006020820190508181036000830152614a2e816149f2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ab7604983613b5c565b9150614ac282614a35565b606082019050919050565b60006020820190508181036000830152614ae681614aaa565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b49603583613b5c565b9150614b5482614aed565b604082019050919050565b60006020820190508181036000830152614b7881614b3c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bb5601383613b5c565b9150614bc082614b7f565b602082019050919050565b60006020820190508181036000830152614be481614ba8565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c47603683613b5c565b9150614c5282614beb565b604082019050919050565b60006020820190508181036000830152614c7681614c3a565b9050919050565b6000614c8882613c6f565b9150614c9383613c6f565b925082821015614ca657614ca56140da565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d0d602683613b5c565b9150614d1882614cb1565b604082019050919050565b60006020820190508181036000830152614d3c81614d00565b9050919050565b600081905092915050565b50565b6000614d5e600083614d43565b9150614d6982614d4e565b600082019050919050565b6000614d7f82614d51565b9150819050919050565b6000606082019050614d9e6000830186613d1b565b614dab6020830185613d1b565b614db86040830184613d1b565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e2d81613c43565b92915050565b600060208284031215614e4957614e48613c0c565b5b6000614e5784828501614e1e565b91505092915050565b6000819050919050565b6000614e85614e80614e7b84614e60565b613d72565b613c6f565b9050919050565b614e9581614e6a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ed081613c31565b82525050565b6000614ee28383614ec7565b60208301905092915050565b6000602082019050919050565b6000614f0682614e9b565b614f108185614ea6565b9350614f1b83614eb7565b8060005b83811015614f4c578151614f338882614ed6565b9750614f3e83614eee565b925050600181019050614f1f565b5085935050505092915050565b600060a082019050614f6e6000830188613d1b565b614f7b6020830187614e8c565b8181036040830152614f8d8186614efb565b9050614f9c6060830185613e6c565b614fa96080830184613d1b565b9695505050505050565b600060c082019050614fc86000830189613e6c565b614fd56020830188613d1b565b614fe26040830187614e8c565b614fef6060830186614e8c565b614ffc6080830185613e6c565b61500960a0830184613d1b565b979650505050505050565b60008151905061502381613c79565b92915050565b60008060006060848603121561504257615041613c0c565b5b600061505086828701615014565b935050602061506186828701615014565b925050604061507286828701615014565b915050925092509256fea2646970667358221220273a764d68a1487975ed404bd87ca74e63ee2d6e83a45f7b58b24743278ad3e764736f6c634300080a0033

Deployed Bytecode Sourcemap

32829:16458:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9757:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11924:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33864:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34301:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32903:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10877:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34085:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34045;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38652:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12575:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33006:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39571:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10719:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13476:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34007:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32961:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33315:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41291:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33832:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33394:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11048:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2992:103;;;;;;;;;;;;;:::i;:::-;;37800:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39200:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33130:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33095:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33725:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37636:112;;;;;;;;;;;;;:::i;:::-;;2341:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33167:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33900:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39463:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9976:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40783:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33799:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34125:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33976:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33690:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14194:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11388:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34522:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33355:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40593:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38935:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33611:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33200:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38187:457;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33659:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11626:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33242:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40077:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37982:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33762:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3250:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33938:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33282:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:100;9811:13;9844:5;9837:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9757:100;:::o;11924:169::-;12007:4;12024:39;12033:12;:10;:12::i;:::-;12047:7;12056:6;12024:8;:39::i;:::-;12081:4;12074:11;;11924:169;;;;:::o;33864:29::-;;;;:::o;34301:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32903:51::-;;;:::o;10877:108::-;10938:7;10965:12;;10958:19;;10877:108;:::o;34085:33::-;;;;:::o;34045:::-;;;;:::o;38652:275::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38789:4:::1;38781;38776:1;38760:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38759:26;;;;:::i;:::-;38758:35;;;;:::i;:::-;38748:6;:45;;38726:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38912:6;38902;:17;;;;:::i;:::-;38879:20;:40;;;;38652:275:::0;:::o;12575:492::-;12715:4;12732:36;12742:6;12750:9;12761:6;12732:9;:36::i;:::-;12781:24;12808:11;:19;12820:6;12808:19;;;;;;;;;;;;;;;:33;12828:12;:10;:12::i;:::-;12808:33;;;;;;;;;;;;;;;;12781:60;;12880:6;12860:16;:26;;12852:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12967:57;12976:6;12984:12;:10;:12::i;:::-;13017:6;12998:16;:25;12967:8;:57::i;:::-;13055:4;13048:11;;;12575:492;;;;;:::o;33006:53::-;33052:6;33006:53;:::o;39571:498::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39806:2:::1;39794:7;39778:13;39762;39748:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39747:61;;39739:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;39848:11;39832:13;:27;;;;39888:13;39870:15;:31;;;;39930:13;39912:15;:31;;;;39966:7;39954:9;:19;;;;40051:9;;40033:15;;40015;;39999:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39984:12;:76;;;;39571:498:::0;;;;:::o;10719:93::-;10777:5;10802:2;10795:9;;10719:93;:::o;13476:215::-;13564:4;13581:80;13590:12;:10;:12::i;:::-;13604:7;13650:10;13613:11;:25;13625:12;:10;:12::i;:::-;13613:25;;;;;;;;;;;;;;;:34;13639:7;13613:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13581:8;:80::i;:::-;13679:4;13672:11;;13476:215;;;;:::o;34007:31::-;;;;:::o;32961:38::-;;;:::o;33315:33::-;;;;;;;;;;;;;:::o;41291:126::-;41357:4;41381:19;:28;41401:7;41381:28;;;;;;;;;;;;;;;;;;;;;;;;;41374:35;;41291:126;;;:::o;33832:28::-;;;;:::o;33394:30::-;;;;;;;;;;;;;:::o;11048:127::-;11122:7;11149:9;:18;11159:7;11149:18;;;;;;;;;;;;;;;;11142:25;;11048:127;;;:::o;2992:103::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3057:30:::1;3084:1;3057:18;:30::i;:::-;2992:103::o:0;37800:121::-;37852:4;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37886:5:::1;37869:14;;:22;;;;;;;;;;;;;;;;;;37909:4;37902:11;;37800:121:::0;:::o;39200:167::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39355:4:::1;39313:31;:39;39345:6;39313:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39200:167:::0;;:::o;33130:30::-;;;;;;;;;;;;;:::o;33095:28::-;;;;;;;;;;;;;:::o;33725:30::-;;;;:::o;37636:112::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37707:4:::1;37691:13;;:20;;;;;;;;;;;;;;;;;;37736:4;37722:11;;:18;;;;;;;;;;;;;;;;;;37636:112::o:0;2341:87::-;2387:7;2414:6;;;;;;;;;;;2407:13;;2341:87;:::o;33167:24::-;;;;;;;;;;;;;:::o;33900:31::-;;;;:::o;39463:100::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39548:7:::1;39534:11;;:21;;;;;;;;;;;;;;;;;;39463:100:::0;:::o;9976:104::-;10032:13;10065:7;10058:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9976:104;:::o;40783:304::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40927:13:::1;40919:21;;:4;:21;;;;40897:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41038:41;41067:4;41073:5;41038:28;:41::i;:::-;40783:304:::0;;:::o;33799:24::-;;;;:::o;34125:27::-;;;;:::o;33976:25::-;;;;:::o;33690:28::-;;;;:::o;14194:413::-;14287:4;14304:24;14331:11;:25;14343:12;:10;:12::i;:::-;14331:25;;;;;;;;;;;;;;;:34;14357:7;14331:34;;;;;;;;;;;;;;;;14304:61;;14404:15;14384:16;:35;;14376:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14497:67;14506:12;:10;:12::i;:::-;14520:7;14548:15;14529:16;:34;14497:8;:67::i;:::-;14595:4;14588:11;;;14194:413;;;;:::o;11388:175::-;11474:4;11491:42;11501:12;:10;:12::i;:::-;11515:9;11526:6;11491:9;:42::i;:::-;11551:4;11544:11;;11388:175;;;;:::o;34522:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33355:32::-;;;;;;;;;;;;;:::o;40593:182::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40709:8:::1;40678:19;:28;40698:7;40678:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40749:7;40733:34;;;40758:8;40733:34;;;;;;:::i;:::-;;;;;;;;40593:182:::0;;:::o;38935:256::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39075:4:::1;39067;39062:1;39046:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39045:26;;;;:::i;:::-;39044:35;;;;:::i;:::-;39034:6;:45;;39012:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39176:6;39166;:17;;;;:::i;:::-;39154:9;:29;;;;38935:256:::0;:::o;33611:39::-;;;;;;;;;;;;;:::o;33200:35::-;;;;:::o;38187:457::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38359:6:::1;38354:1;38338:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38337:28;;;;:::i;:::-;38324:9;:41;;38302:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38514:3;38509:1;38493:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38492:25;;;;:::i;:::-;38479:9;:38;;38457:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;38627:9;38606:18;:30;;;;38187:457:::0;:::o;33659:27::-;;;;:::o;11626:151::-;11715:7;11742:11;:18;11754:5;11742:18;;;;;;;;;;;;;;;:27;11761:7;11742:27;;;;;;;;;;;;;;;;11735:34;;11626:151;;;;:::o;33242:33::-;;;;:::o;40077:508::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40313:2:::1;40301:7;40285:13;40269;40255:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40254:61;;40246:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40357:11;40340:14;:28;;;;40398:13;40379:16;:32;;;;40441:13;40422:16;:32;;;;40478:7;40465:10;:20;;;;40567:10;;40548:16;;40529;;40512:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40496:13;:81;;;;40077:508:::0;;;;:::o;37982:135::-;38042:4;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38082:5:::1;38059:20;;:28;;;;;;;;;;;;;;;;;;38105:4;38098:11;;37982:135:::0;:::o;33762:30::-;;;;:::o;3250:201::-;2572:12;:10;:12::i;:::-;2561:23;;:7;:5;:7::i;:::-;:23;;;2553:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3359:1:::1;3339:22;;:8;:22;;;;3331:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3415:28;3434:8;3415:18;:28::i;:::-;3250:201:::0;:::o;33938:31::-;;;;:::o;33282:24::-;;;;:::o;1014:98::-;1067:7;1094:10;1087:17;;1014:98;:::o;17878:380::-;18031:1;18014:19;;:5;:19;;;;18006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18112:1;18093:21;;:7;:21;;;;18085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18196:6;18166:11;:18;18178:5;18166:18;;;;;;;;;;;;;;;:27;18185:7;18166:27;;;;;;;;;;;;;;;:36;;;;18234:7;18218:32;;18227:5;18218:32;;;18243:6;18218:32;;;;;;:::i;:::-;;;;;;;;17878:380;;;:::o;41425:4847::-;41573:1;41557:18;;:4;:18;;;;41549:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41650:1;41636:16;;:2;:16;;;;41628:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41719:1;41709:6;:11;41705:93;;;41737:28;41753:4;41759:2;41763:1;41737:15;:28::i;:::-;41780:7;;41705:93;41814:14;;;;;;;;;;;41810:2487;;;41875:7;:5;:7::i;:::-;41867:15;;:4;:15;;;;:49;;;;;41909:7;:5;:7::i;:::-;41903:13;;:2;:13;;;;41867:49;:86;;;;;41951:1;41937:16;;:2;:16;;;;41867:86;:128;;;;;41988:6;41974:21;;:2;:21;;;;41867:128;:158;;;;;42017:8;;;;;;;;;;;42016:9;41867:158;41845:2441;;;42065:13;;;;;;;;;;;42060:223;;42137:19;:25;42157:4;42137:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42166:19;:23;42186:2;42166:23;;;;;;;;;;;;;;;;;;;;;;;;;42137:52;42103:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42060:223;42439:20;;;;;;;;;;;42435:641;;;42520:7;:5;:7::i;:::-;42514:13;;:2;:13;;;;:72;;;;;42570:15;42556:30;;:2;:30;;;;42514:72;:129;;;;;42629:13;42615:28;;:2;:28;;;;42514:129;42484:573;;;42807:12;42732:28;:39;42761:9;42732:39;;;;;;;;;;;;;;;;:87;42694:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43021:12;42979:28;:39;43008:9;42979:39;;;;;;;;;;;;;;;:54;;;;42484:573;42435:641;43150:25;:31;43176:4;43150:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43207:31;:35;43239:2;43207:35;;;;;;;;;;;;;;;;;;;;;;;;;43206:36;43150:92;43124:1147;;;43329:20;;43319:6;:30;;43285:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43537:9;;43520:13;43530:2;43520:9;:13::i;:::-;43511:6;:22;;;;:::i;:::-;:35;;43477:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43124:1147;;;43715:25;:29;43741:2;43715:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43770:31;:37;43802:4;43770:37;;;;;;;;;;;;;;;;;;;;;;;;;43769:38;43715:92;43689:582;;;43894:20;;43884:6;:30;;43850:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43689:582;;;44051:31;:35;44083:2;44051:35;;;;;;;;;;;;;;;;;;;;;;;;;44046:225;;44171:9;;44154:13;44164:2;44154:9;:13::i;:::-;44145:6;:22;;;;:::i;:::-;:35;;44111:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44046:225;43689:582;43124:1147;41845:2441;41810:2487;44309:28;44340:24;44358:4;44340:9;:24::i;:::-;44309:55;;44377:12;44416:18;;44392:20;:42;;44377:57;;44465:7;:35;;;;;44489:11;;;;;;;;;;;44465:35;:61;;;;;44518:8;;;;;;;;;;;44517:9;44465:61;:110;;;;;44544:25;:31;44570:4;44544:31;;;;;;;;;;;;;;;;;;;;;;;;;44543:32;44465:110;:153;;;;;44593:19;:25;44613:4;44593:25;;;;;;;;;;;;;;;;;;;;;;;;;44592:26;44465:153;:194;;;;;44636:19;:23;44656:2;44636:23;;;;;;;;;;;;;;;;;;;;;;;;;44635:24;44465:194;44447:326;;;44697:4;44686:8;;:15;;;;;;;;;;;;;;;;;;44718:10;:8;:10::i;:::-;44756:5;44745:8;;:16;;;;;;;;;;;;;;;;;;44447:326;44785:12;44801:8;;;;;;;;;;;44800:9;44785:24;;44911:19;:25;44931:4;44911:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44940:19;:23;44960:2;44940:23;;;;;;;;;;;;;;;;;;;;;;;;;44911:52;44907:100;;;44990:5;44980:15;;44907:100;45019:12;45124:7;45120:1099;;;45176:25;:29;45202:2;45176:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45225:1;45209:13;;:17;45176:50;45172:898;;;45254:34;45284:3;45254:25;45265:13;;45254:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45247:41;;45341:13;;45323:14;;45316:4;:21;;;;:::i;:::-;45315:39;;;;:::i;:::-;45295:16;;:59;;;;;;;:::i;:::-;;;;;;;;45423:13;;45403:16;;45396:4;:23;;;;:::i;:::-;45395:41;;;;:::i;:::-;45373:18;;:63;;;;;;;:::i;:::-;;;;;;;;45493:13;;45479:10;;45472:4;:17;;;;:::i;:::-;45471:35;;;;:::i;:::-;45455:12;;:51;;;;;;;:::i;:::-;;;;;;;;45575:13;;45555:16;;45548:4;:23;;;;:::i;:::-;45547:41;;;;:::i;:::-;45525:18;;:63;;;;;;;:::i;:::-;;;;;;;;45172:898;;;45650:25;:31;45676:4;45650:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45700:1;45685:12;;:16;45650:51;45646:424;;;45729:33;45758:3;45729:24;45740:12;;45729:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45722:40;;45814:12;;45797:13;;45790:4;:20;;;;:::i;:::-;45789:37;;;;:::i;:::-;45769:16;;:57;;;;;;;:::i;:::-;;;;;;;;45894:12;;45875:15;;45868:4;:22;;;;:::i;:::-;45867:39;;;;:::i;:::-;45845:18;;:61;;;;;;;:::i;:::-;;;;;;;;45962:12;;45949:9;;45942:4;:16;;;;:::i;:::-;45941:33;;;;:::i;:::-;45925:12;;:49;;;;;;;:::i;:::-;;;;;;;;46042:12;;46023:15;;46016:4;:22;;;;:::i;:::-;46015:39;;;;:::i;:::-;45993:18;;:61;;;;;;;:::i;:::-;;;;;;;;45646:424;45172:898;46097:1;46090:4;:8;46086:91;;;46119:42;46135:4;46149;46156;46119:15;:42::i;:::-;46086:91;46203:4;46193:14;;;;;:::i;:::-;;;45120:1099;46231:33;46247:4;46253:2;46257:6;46231:15;:33::i;:::-;41538:4734;;;;41425:4847;;;;:::o;3611:191::-;3685:16;3704:6;;;;;;;;;;;3685:25;;3730:8;3721:6;;:17;;;;;;;;;;;;;;;;;;3785:8;3754:40;;3775:8;3754:40;;;;;;;;;;;;3674:128;3611:191;:::o;41095:188::-;41212:5;41178:25;:31;41204:4;41178:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41269:5;41235:40;;41263:4;41235:40;;;;;;;;;;;;41095:188;;:::o;15097:733::-;15255:1;15237:20;;:6;:20;;;;15229:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15339:1;15318:23;;:9;:23;;;;15310:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15394:47;15415:6;15423:9;15434:6;15394:20;:47::i;:::-;15454:21;15478:9;:17;15488:6;15478:17;;;;;;;;;;;;;;;;15454:41;;15531:6;15514:13;:23;;15506:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15652:6;15636:13;:22;15616:9;:17;15626:6;15616:17;;;;;;;;;;;;;;;:42;;;;15704:6;15680:9;:20;15690:9;15680:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15745:9;15728:35;;15737:6;15728:35;;;15756:6;15728:35;;;;;;:::i;:::-;;;;;;;;15776:46;15796:6;15804:9;15815:6;15776:19;:46::i;:::-;15218:612;15097:733;;;:::o;47400:1882::-;47439:23;47465:24;47483:4;47465:9;:24::i;:::-;47439:50;;47500:25;47589:12;;47568:18;;47547;;47528:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47500:101;;47612:12;47660:1;47641:15;:20;:46;;;;47686:1;47665:17;:22;47641:46;47637:85;;;47704:7;;;;;47637:85;47777:2;47756:18;;:23;;;;:::i;:::-;47738:15;:41;47734:115;;;47835:2;47814:18;;:23;;;;:::i;:::-;47796:41;;47734:115;47910:23;47997:1;47977:17;47955:18;;47937:15;:36;;;;:::i;:::-;47936:58;;;;:::i;:::-;:62;;;;:::i;:::-;47910:88;;48009:26;48038:36;48058:15;48038;:19;;:36;;;;:::i;:::-;48009:65;;48087:25;48115:21;48087:49;;48149:36;48166:18;48149:16;:36::i;:::-;48198:18;48219:44;48245:17;48219:21;:25;;:44;;;;:::i;:::-;48198:65;;48270:21;48294:55;48331:17;48294:32;48309:16;;48294:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48270:79;;48360:23;48386:57;48425:17;48386:34;48401:18;;48386:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48360:83;;48454:17;48474:51;48507:17;48474:28;48489:12;;48474:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48454:71;;48538:23;48611:9;48593:15;48577:13;48564:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48538:82;;48654:1;48633:18;:22;;;;48679:1;48660:16;:20;;;;48712:1;48691:18;:22;;;;48739:1;48724:12;:16;;;;48775:9;;;;;;;;;;;48767:23;;48798:9;48767:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48753:59;;;;;48845:15;;;;;;;;;;;48837:29;;48874:15;48837:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48823:71;;;;;48931:1;48913:15;:19;:42;;;;;48954:1;48936:15;:19;48913:42;48909:278;;;48972:46;48985:15;49002;48972:12;:46::i;:::-;49038:137;49071:18;49108:15;49142:18;;49038:137;;;;;;;;:::i;:::-;;;;;;;;48909:278;49221:13;;;;;;;;;;;49213:27;;49248:21;49213:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49199:75;;;;;47428:1854;;;;;;;;;;;47400:1882;:::o;23331:98::-;23389:7;23420:1;23416;:5;;;;:::i;:::-;23409:12;;23331:98;;;;:::o;23730:::-;23788:7;23819:1;23815;:5;;;;:::i;:::-;23808:12;;23730:98;;;;:::o;18858:125::-;;;;:::o;19587:124::-;;;;:::o;22974:98::-;23032:7;23063:1;23059;:5;;;;:::i;:::-;23052:12;;22974:98;;;;:::o;46280:589::-;46406:21;46444:1;46430:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46406:40;;46475:4;46457;46462:1;46457:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46501:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46491:4;46496:1;46491:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46536:62;46553:4;46568:15;46586:11;46536:8;:62::i;:::-;46637:15;:66;;;46718:11;46744:1;46788:4;46815;46835:15;46637:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46335:534;46280:589;:::o;46877:515::-;47025:62;47042:4;47057:15;47075:11;47025:8;:62::i;:::-;47130:15;:31;;;47169:9;47202:4;47222:11;47248:1;47291;47334:9;;;;;;;;;;;47358:15;47130:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46877:515;;:::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:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::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:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:164::-;14148:16;14144:1;14136:6;14132:14;14125:40;14008:164;:::o;14178:366::-;14320:3;14341:67;14405:2;14400:3;14341:67;:::i;:::-;14334:74;;14417:93;14506:3;14417:93;:::i;:::-;14535:2;14530:3;14526:12;14519:19;;14178:366;;;:::o;14550:419::-;14716:4;14754:2;14743:9;14739:18;14731:26;;14803:9;14797:4;14793:20;14789:1;14778:9;14774:17;14767:47;14831:131;14957:4;14831:131;:::i;:::-;14823:139;;14550:419;;;:::o;14975:244::-;15115:34;15111:1;15103:6;15099:14;15092:58;15184:27;15179:2;15171:6;15167:15;15160:52;14975:244;:::o;15225:366::-;15367:3;15388:67;15452:2;15447:3;15388:67;:::i;:::-;15381:74;;15464:93;15553:3;15464:93;:::i;:::-;15582:2;15577:3;15573:12;15566:19;;15225:366;;;:::o;15597:419::-;15763:4;15801:2;15790:9;15786:18;15778:26;;15850:9;15844:4;15840:20;15836:1;15825:9;15821:17;15814:47;15878:131;16004:4;15878:131;:::i;:::-;15870:139;;15597:419;;;:::o;16022:224::-;16162:34;16158:1;16150:6;16146:14;16139:58;16231:7;16226:2;16218:6;16214:15;16207:32;16022:224;:::o;16252:366::-;16394:3;16415:67;16479:2;16474:3;16415:67;:::i;:::-;16408:74;;16491:93;16580:3;16491:93;:::i;:::-;16609:2;16604:3;16600:12;16593:19;;16252:366;;;:::o;16624:419::-;16790:4;16828:2;16817:9;16813:18;16805:26;;16877:9;16871:4;16867:20;16863:1;16852:9;16848:17;16841:47;16905:131;17031:4;16905:131;:::i;:::-;16897:139;;16624:419;;;:::o;17049:223::-;17189:34;17185:1;17177:6;17173:14;17166:58;17258:6;17253:2;17245:6;17241:15;17234:31;17049:223;:::o;17278:366::-;17420:3;17441:67;17505:2;17500:3;17441:67;:::i;:::-;17434:74;;17517:93;17606:3;17517:93;:::i;:::-;17635:2;17630:3;17626:12;17619:19;;17278:366;;;:::o;17650:419::-;17816:4;17854:2;17843:9;17839:18;17831:26;;17903:9;17897:4;17893:20;17889:1;17878:9;17874:17;17867:47;17931:131;18057:4;17931:131;:::i;:::-;17923:139;;17650:419;;;:::o;18075:240::-;18215:34;18211:1;18203:6;18199:14;18192:58;18284:23;18279:2;18271:6;18267:15;18260:48;18075:240;:::o;18321:366::-;18463:3;18484:67;18548:2;18543:3;18484:67;:::i;:::-;18477:74;;18560:93;18649:3;18560:93;:::i;:::-;18678:2;18673:3;18669:12;18662:19;;18321:366;;;:::o;18693:419::-;18859:4;18897:2;18886:9;18882:18;18874:26;;18946:9;18940:4;18936:20;18932:1;18921:9;18917:17;18910:47;18974:131;19100:4;18974:131;:::i;:::-;18966:139;;18693:419;;;:::o;19118:237::-;19258:34;19254:1;19246:6;19242:14;19235:58;19327:20;19322:2;19314:6;19310:15;19303:45;19118:237;:::o;19361:366::-;19503:3;19524:67;19588:2;19583:3;19524:67;:::i;:::-;19517:74;;19600:93;19689:3;19600:93;:::i;:::-;19718:2;19713:3;19709:12;19702:19;;19361:366;;;:::o;19733:419::-;19899:4;19937:2;19926:9;19922:18;19914:26;;19986:9;19980:4;19976:20;19972:1;19961:9;19957:17;19950:47;20014:131;20140:4;20014:131;:::i;:::-;20006:139;;19733:419;;;:::o;20158:165::-;20298:17;20294:1;20286:6;20282:14;20275:41;20158:165;:::o;20329:366::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:419::-;20867:4;20905:2;20894:9;20890:18;20882:26;;20954:9;20948:4;20944:20;20940:1;20929:9;20925:17;20918:47;20982:131;21108:4;20982:131;:::i;:::-;20974:139;;20701:419;;;:::o;21126:225::-;21266:34;21262:1;21254:6;21250:14;21243:58;21335:8;21330:2;21322:6;21318:15;21311:33;21126:225;:::o;21357:366::-;21499:3;21520:67;21584:2;21579:3;21520:67;:::i;:::-;21513:74;;21596:93;21685:3;21596:93;:::i;:::-;21714:2;21709:3;21705:12;21698:19;;21357:366;;;:::o;21729:419::-;21895:4;21933:2;21922:9;21918:18;21910:26;;21982:9;21976:4;21972:20;21968:1;21957:9;21953:17;21946:47;22010:131;22136:4;22010:131;:::i;:::-;22002:139;;21729:419;;;:::o;22154:223::-;22294:34;22290:1;22282:6;22278:14;22271:58;22363:6;22358:2;22350:6;22346:15;22339:31;22154:223;:::o;22383:366::-;22525:3;22546:67;22610:2;22605:3;22546:67;:::i;:::-;22539:74;;22622:93;22711:3;22622:93;:::i;:::-;22740:2;22735:3;22731:12;22724:19;;22383:366;;;:::o;22755:419::-;22921:4;22959:2;22948:9;22944:18;22936:26;;23008:9;23002:4;22998:20;22994:1;22983:9;22979:17;22972:47;23036:131;23162:4;23036:131;:::i;:::-;23028:139;;22755:419;;;:::o;23180:221::-;23320:34;23316:1;23308:6;23304:14;23297:58;23389:4;23384:2;23376:6;23372:15;23365:29;23180:221;:::o;23407:366::-;23549:3;23570:67;23634:2;23629:3;23570:67;:::i;:::-;23563:74;;23646:93;23735:3;23646:93;:::i;:::-;23764:2;23759:3;23755:12;23748:19;;23407:366;;;:::o;23779:419::-;23945:4;23983:2;23972:9;23968:18;23960:26;;24032:9;24026:4;24022:20;24018:1;24007:9;24003:17;23996:47;24060:131;24186:4;24060:131;:::i;:::-;24052:139;;23779:419;;;:::o;24204:224::-;24344:34;24340:1;24332:6;24328:14;24321:58;24413:7;24408:2;24400:6;24396:15;24389:32;24204:224;:::o;24434:366::-;24576:3;24597:67;24661:2;24656:3;24597:67;:::i;:::-;24590:74;;24673:93;24762:3;24673:93;:::i;:::-;24791:2;24786:3;24782:12;24775:19;;24434:366;;;:::o;24806:419::-;24972:4;25010:2;24999:9;24995:18;24987:26;;25059:9;25053:4;25049:20;25045:1;25034:9;25030:17;25023:47;25087:131;25213:4;25087:131;:::i;:::-;25079:139;;24806:419;;;:::o;25231:222::-;25371:34;25367:1;25359:6;25355:14;25348:58;25440:5;25435:2;25427:6;25423:15;25416:30;25231:222;:::o;25459:366::-;25601:3;25622:67;25686:2;25681:3;25622:67;:::i;:::-;25615:74;;25698:93;25787:3;25698:93;:::i;:::-;25816:2;25811:3;25807:12;25800:19;;25459:366;;;:::o;25831:419::-;25997:4;26035:2;26024:9;26020:18;26012:26;;26084:9;26078:4;26074:20;26070:1;26059:9;26055:17;26048:47;26112:131;26238:4;26112:131;:::i;:::-;26104:139;;25831:419;;;:::o;26256:172::-;26396:24;26392:1;26384:6;26380:14;26373:48;26256:172;:::o;26434:366::-;26576:3;26597:67;26661:2;26656:3;26597:67;:::i;:::-;26590:74;;26673:93;26762:3;26673:93;:::i;:::-;26791:2;26786:3;26782:12;26775:19;;26434:366;;;:::o;26806:419::-;26972:4;27010:2;26999:9;26995:18;26987:26;;27059:9;27053:4;27049:20;27045:1;27034:9;27030:17;27023:47;27087:131;27213:4;27087:131;:::i;:::-;27079:139;;26806:419;;;:::o;27231:297::-;27371:34;27367:1;27359:6;27355:14;27348:58;27440:34;27435:2;27427:6;27423:15;27416:59;27509:11;27504:2;27496:6;27492:15;27485:36;27231:297;:::o;27534:366::-;27676:3;27697:67;27761:2;27756:3;27697:67;:::i;:::-;27690:74;;27773:93;27862:3;27773:93;:::i;:::-;27891:2;27886:3;27882:12;27875:19;;27534:366;;;:::o;27906:419::-;28072:4;28110:2;28099:9;28095:18;28087:26;;28159:9;28153:4;28149:20;28145:1;28134:9;28130:17;28123:47;28187:131;28313:4;28187:131;:::i;:::-;28179:139;;27906:419;;;:::o;28331:240::-;28471:34;28467:1;28459:6;28455:14;28448:58;28540:23;28535:2;28527:6;28523:15;28516:48;28331:240;:::o;28577:366::-;28719:3;28740:67;28804:2;28799:3;28740:67;:::i;:::-;28733:74;;28816:93;28905:3;28816:93;:::i;:::-;28934:2;28929:3;28925:12;28918:19;;28577:366;;;:::o;28949:419::-;29115:4;29153:2;29142:9;29138:18;29130:26;;29202:9;29196:4;29192:20;29188:1;29177:9;29173:17;29166:47;29230:131;29356:4;29230:131;:::i;:::-;29222:139;;28949:419;;;:::o;29374:169::-;29514:21;29510:1;29502:6;29498:14;29491:45;29374:169;:::o;29549:366::-;29691:3;29712:67;29776:2;29771:3;29712:67;:::i;:::-;29705:74;;29788:93;29877:3;29788:93;:::i;:::-;29906:2;29901:3;29897:12;29890:19;;29549:366;;;:::o;29921:419::-;30087:4;30125:2;30114:9;30110:18;30102:26;;30174:9;30168:4;30164:20;30160:1;30149:9;30145:17;30138:47;30202:131;30328:4;30202:131;:::i;:::-;30194:139;;29921:419;;;:::o;30346:241::-;30486:34;30482:1;30474:6;30470:14;30463:58;30555:24;30550:2;30542:6;30538:15;30531:49;30346:241;:::o;30593:366::-;30735:3;30756:67;30820:2;30815:3;30756:67;:::i;:::-;30749:74;;30832:93;30921:3;30832:93;:::i;:::-;30950:2;30945:3;30941:12;30934:19;;30593:366;;;:::o;30965:419::-;31131:4;31169:2;31158:9;31154:18;31146:26;;31218:9;31212:4;31208:20;31204:1;31193:9;31189:17;31182:47;31246:131;31372:4;31246:131;:::i;:::-;31238:139;;30965:419;;;:::o;31390:191::-;31430:4;31450:20;31468:1;31450:20;:::i;:::-;31445:25;;31484:20;31502:1;31484:20;:::i;:::-;31479:25;;31523:1;31520;31517:8;31514:34;;;31528:18;;:::i;:::-;31514:34;31573:1;31570;31566:9;31558:17;;31390:191;;;;:::o;31587:225::-;31727:34;31723:1;31715:6;31711:14;31704:58;31796:8;31791:2;31783:6;31779:15;31772:33;31587:225;:::o;31818:366::-;31960:3;31981:67;32045:2;32040:3;31981:67;:::i;:::-;31974:74;;32057:93;32146:3;32057:93;:::i;:::-;32175:2;32170:3;32166:12;32159:19;;31818:366;;;:::o;32190:419::-;32356:4;32394:2;32383:9;32379:18;32371:26;;32443:9;32437:4;32433:20;32429:1;32418:9;32414:17;32407:47;32471:131;32597:4;32471:131;:::i;:::-;32463:139;;32190:419;;;:::o;32615:147::-;32716:11;32753:3;32738:18;;32615:147;;;;:::o;32768:114::-;;:::o;32888:398::-;33047:3;33068:83;33149:1;33144:3;33068:83;:::i;:::-;33061:90;;33160:93;33249:3;33160:93;:::i;:::-;33278:1;33273:3;33269:11;33262:18;;32888:398;;;:::o;33292:379::-;33476:3;33498:147;33641:3;33498:147;:::i;:::-;33491:154;;33662:3;33655:10;;33292:379;;;:::o;33677:442::-;33826:4;33864:2;33853:9;33849:18;33841:26;;33877:71;33945:1;33934:9;33930:17;33921:6;33877:71;:::i;:::-;33958:72;34026:2;34015:9;34011:18;34002:6;33958:72;:::i;:::-;34040;34108:2;34097:9;34093:18;34084:6;34040:72;:::i;:::-;33677:442;;;;;;:::o;34125:180::-;34173:77;34170:1;34163:88;34270:4;34267:1;34260:15;34294:4;34291:1;34284:15;34311:180;34359:77;34356:1;34349:88;34456:4;34453:1;34446:15;34480:4;34477:1;34470:15;34497:143;34554:5;34585:6;34579:13;34570:22;;34601:33;34628:5;34601:33;:::i;:::-;34497:143;;;;:::o;34646:351::-;34716:6;34765:2;34753:9;34744:7;34740:23;34736:32;34733:119;;;34771:79;;:::i;:::-;34733:119;34891:1;34916:64;34972:7;34963:6;34952:9;34948:22;34916:64;:::i;:::-;34906:74;;34862:128;34646:351;;;;:::o;35003:85::-;35048:7;35077:5;35066:16;;35003:85;;;:::o;35094:158::-;35152:9;35185:61;35203:42;35212:32;35238:5;35212:32;:::i;:::-;35203:42;:::i;:::-;35185:61;:::i;:::-;35172:74;;35094:158;;;:::o;35258:147::-;35353:45;35392:5;35353:45;:::i;:::-;35348:3;35341:58;35258:147;;:::o;35411:114::-;35478:6;35512:5;35506:12;35496:22;;35411:114;;;:::o;35531:184::-;35630:11;35664:6;35659:3;35652:19;35704:4;35699:3;35695:14;35680:29;;35531:184;;;;:::o;35721:132::-;35788:4;35811:3;35803:11;;35841:4;35836:3;35832:14;35824:22;;35721:132;;;:::o;35859:108::-;35936:24;35954:5;35936:24;:::i;:::-;35931:3;35924:37;35859:108;;:::o;35973:179::-;36042:10;36063:46;36105:3;36097:6;36063:46;:::i;:::-;36141:4;36136:3;36132:14;36118:28;;35973:179;;;;:::o;36158:113::-;36228:4;36260;36255:3;36251:14;36243:22;;36158:113;;;:::o;36307:732::-;36426:3;36455:54;36503:5;36455:54;:::i;:::-;36525:86;36604:6;36599:3;36525:86;:::i;:::-;36518:93;;36635:56;36685:5;36635:56;:::i;:::-;36714:7;36745:1;36730:284;36755:6;36752:1;36749:13;36730:284;;;36831:6;36825:13;36858:63;36917:3;36902:13;36858:63;:::i;:::-;36851:70;;36944:60;36997:6;36944:60;:::i;:::-;36934:70;;36790:224;36777:1;36774;36770:9;36765:14;;36730:284;;;36734:14;37030:3;37023:10;;36431:608;;;36307:732;;;;:::o;37045:831::-;37308:4;37346:3;37335:9;37331:19;37323:27;;37360:71;37428:1;37417:9;37413:17;37404:6;37360:71;:::i;:::-;37441:80;37517:2;37506:9;37502:18;37493:6;37441:80;:::i;:::-;37568:9;37562:4;37558:20;37553:2;37542:9;37538:18;37531:48;37596:108;37699:4;37690:6;37596:108;:::i;:::-;37588:116;;37714:72;37782:2;37771:9;37767:18;37758:6;37714:72;:::i;:::-;37796:73;37864:3;37853:9;37849:19;37840:6;37796:73;:::i;:::-;37045:831;;;;;;;;:::o;37882:807::-;38131:4;38169:3;38158:9;38154:19;38146:27;;38183:71;38251:1;38240:9;38236:17;38227:6;38183:71;:::i;:::-;38264:72;38332:2;38321:9;38317:18;38308:6;38264:72;:::i;:::-;38346:80;38422:2;38411:9;38407:18;38398:6;38346:80;:::i;:::-;38436;38512:2;38501:9;38497:18;38488:6;38436:80;:::i;:::-;38526:73;38594:3;38583:9;38579:19;38570:6;38526:73;:::i;:::-;38609;38677:3;38666:9;38662:19;38653:6;38609:73;:::i;:::-;37882:807;;;;;;;;;:::o;38695:143::-;38752:5;38783:6;38777:13;38768:22;;38799:33;38826:5;38799:33;:::i;:::-;38695:143;;;;:::o;38844:663::-;38932:6;38940;38948;38997:2;38985:9;38976:7;38972:23;38968:32;38965:119;;;39003:79;;:::i;:::-;38965:119;39123:1;39148:64;39204:7;39195:6;39184:9;39180:22;39148:64;:::i;:::-;39138:74;;39094:128;39261:2;39287:64;39343:7;39334:6;39323:9;39319:22;39287:64;:::i;:::-;39277:74;;39232:129;39400:2;39426:64;39482:7;39473:6;39462:9;39458:22;39426:64;:::i;:::-;39416:74;;39371:129;38844:663;;;;;:::o

Swarm Source

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