ETH Price: $3,451.64 (-0.08%)
Gas: 6 Gwei

Token

PitbullAI (PitAI)
 

Overview

Max Total Supply

1,000,000,000 PitAI

Holders

56

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
324,042.99825263750347896 PitAI

Value
$0.00
0x24910ccef57f2b2a8444337cbbb83f6b354bde47
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:
PitbullAi

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-06
*/

// SPDX-License-Identifier: MIT
/**
🦴DESIGED FOR PITBULL AI 🦴
🦴LOW TAX                🦴
🦴REWARDS @ EACH SWAP    🦴
🦴AIRDROP FOR TESTERS    🦴
🦴ANTIBOT MECHANISM      🦴
*/
pragma solidity =0.8.9 >=0.8.9 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

contract PitbullAi 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 devWallet;

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

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

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

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

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

    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exclude 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 devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("PitbullAI", "PitAI") {
        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 _buyLiquidityFee = 1;
        uint256 _buyMarketingFee = 1;

        uint256 _sellLiquidityFee = 1;
        uint256 _sellMarketingFee = 1;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 300_000_000 * 1e18; // 1,5% from total supply
        maxWallet = 530_000_000 * 1e18; // 3% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 100; // 0.4% swap wallet

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

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

        devWallet = address(0xC0cD33333B6Ab1bB9C838703ACe57524c5C90Eb4); // 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
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 8) / 1000,
            "Swap amount cannot be higher than 0.8% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

    function updateBuyFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        buyLiquidityFee = _liquidityFee;
        buyMarketingFee = _MarketingFee;
        buyTotalFees = buyLiquidityFee + buyMarketingFee;
        require(buyTotalFees <= 15, "Buy Fee");
    }

    function updateSellFees(
        uint256 _liquidityFee,
        uint256 _MarketingFee
    ) external onlyOwner {
        sellLiquidityFee = _liquidityFee;
        sellMarketingFee = _MarketingFee;
        sellTotalFees = sellLiquidityFee + sellMarketingFee;
        require(sellTotalFees <= 99, "Sell Fee");
    }

    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 updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    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] + 1 <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per two blocks 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);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (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
            owner(),
            block.timestamp
        );
    }

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

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

    function withdraw() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawToken(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this), "Can't withdraw native tokens");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"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":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"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":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_MarketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506000600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f50697462756c6c414900000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f506974414900000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000a94565b5080600490805190602001906200011b92919062000a94565b5050506200013e620001326200055460201b60201c565b6200055c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200062260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001e557600080fd5b505afa158015620001fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000220919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028357600080fd5b505afa15801562000298573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002be919062000bae565b6040518363ffffffff1660e01b8152600401620002dd92919062000bf1565b602060405180830381600087803b158015620002f857600080fd5b505af11580156200030d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000333919062000bae565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037b60a05160016200062260201b60201c565b6200039060a05160016200070c60201b60201c565b60006001905060006001905060006001905060006001905060006b033b2e3c9fd0803ce800000090506af8277896582678ac0000006007819055506b01b667dd922443f7520000006009819055506064600482620003ef919062000c57565b620003fb919062000ce7565b60088190555084600e8190555083600f81905550600f54600e5462000421919062000d1f565b600d81905550826011819055508160128190555060125460115462000447919062000d1f565b60108190555073c0cd33333b6ab1bb9c838703ace57524c5c90eb4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004c4620004b6620007ad60201b60201c565b6001620007d760201b60201c565b620004d7306001620007d760201b60201c565b620004ec61dead6001620007d760201b60201c565b6200050e62000500620007ad60201b60201c565b60016200062260201b60201c565b620005213060016200062260201b60201c565b6200053661dead60016200062260201b60201c565b6200054833826200091160201b60201c565b50505050505062000f3e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006326200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000658620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062000ddd565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007e76200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200080d620007ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000866576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085d9062000ddd565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000905919062000e1c565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000984576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097b9062000e89565b60405180910390fd5b620009986000838362000a8a60201b60201c565b8060026000828254620009ac919062000d1f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a03919062000d1f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a6a919062000ebc565b60405180910390a362000a866000838362000a8f60201b60201c565b5050565b505050565b505050565b82805462000aa29062000f08565b90600052602060002090601f01602090048101928262000ac6576000855562000b12565b82601f1062000ae157805160ff191683800117855562000b12565b8280016001018555821562000b12579182015b8281111562000b1157825182559160200191906001019062000af4565b5b50905062000b21919062000b25565b5090565b5b8082111562000b4057600081600090555060010162000b26565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b768262000b49565b9050919050565b62000b888162000b69565b811462000b9457600080fd5b50565b60008151905062000ba88162000b7d565b92915050565b60006020828403121562000bc75762000bc662000b44565b5b600062000bd78482850162000b97565b91505092915050565b62000beb8162000b69565b82525050565b600060408201905062000c08600083018562000be0565b62000c17602083018462000be0565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c648262000c1e565b915062000c718362000c1e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000cad5762000cac62000c28565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000cf48262000c1e565b915062000d018362000c1e565b92508262000d145762000d1362000cb8565b5b828204905092915050565b600062000d2c8262000c1e565b915062000d398362000c1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000d715762000d7062000c28565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000dc560208362000d7c565b915062000dd28262000d8d565b602082019050919050565b6000602082019050818103600083015262000df88162000db6565b9050919050565b60008115159050919050565b62000e168162000dff565b82525050565b600060208201905062000e33600083018462000e0b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e71601f8362000d7c565b915062000e7e8262000e39565b602082019050919050565b6000602082019050818103600083015262000ea48162000e62565b9050919050565b62000eb68162000c1e565b82525050565b600060208201905062000ed3600083018462000eab565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f2157607f821691505b6020821081141562000f385762000f3762000ed9565b5b50919050565b60805160a0516152c762000f9c6000396000818161164301528181611cd10152612a18015260008181610db5015281816129c00152818161398001528181613a7001528181613a9701528181613b330152613b5a01526152c76000f3fe6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c58565b610bf9565b005b34801561032957600080fd5b50610332610ce3565b60405161033f9190613d31565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613db1565b610d75565b60405161037c9190613e0c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613e27565b610d93565b6040516103b99190613e0c565b60405180910390f35b3480156103ce57600080fd5b506103d7610db3565b6040516103e49190613eb3565b60405180910390f35b3480156103f957600080fd5b50610402610dd7565b60405161040f9190613edd565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613e27565b610de1565b005b34801561044d57600080fd5b50610456610f1d565b6040516104639190613edd565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613ef8565b610f23565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613f25565b611032565b6040516104c99190613e0c565b60405180910390f35b3480156104de57600080fd5b506104e761112a565b6040516104f49190613f87565b60405180910390f35b34801561050957600080fd5b50610512611130565b60405161051f9190613fbe565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613db1565b611139565b60405161055c9190613e0c565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613fd9565b6111e5565b005b34801561059a57600080fd5b506105a3611460565b005b3480156105b157600080fd5b506105ba611641565b6040516105c79190613f87565b60405180910390f35b3480156105dc57600080fd5b506105e5611665565b6040516105f29190613e0c565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613e27565b611678565b60405161062f9190613e0c565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c58565b6116ce565b005b34801561066d57600080fd5b506106766117b8565b6040516106839190613edd565b60405180910390f35b34801561069857600080fd5b506106a16117be565b6040516106ae9190613e0c565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613e27565b6117d1565b6040516106eb9190613edd565b60405180910390f35b34801561070057600080fd5b50610709611819565b005b34801561071757600080fd5b506107206118a1565b60405161072d9190613e0c565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190614045565b611941565b005b34801561076b57600080fd5b50610774611a18565b6040516107819190613edd565b60405180910390f35b34801561079657600080fd5b5061079f611a1e565b005b3480156107ad57600080fd5b506107b6611ad2565b6040516107c39190613f87565b60405180910390f35b3480156107d857600080fd5b506107e1611afc565b6040516107ee9190613f87565b60405180910390f35b34801561080357600080fd5b5061080c611b22565b6040516108199190613edd565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614085565b611b28565b005b34801561085757600080fd5b50610860611bc1565b60405161086d9190613d31565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190614045565b611c53565b005b3480156108ab57600080fd5b506108b4611d6c565b6040516108c19190613edd565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613db1565b611d72565b6040516108fe9190613e0c565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613db1565b611e5d565b60405161093b9190613e0c565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613e27565b611e7b565b6040516109789190613e0c565b60405180910390f35b34801561098d57600080fd5b50610996611e9b565b6040516109a39190613e0c565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190614045565b611eae565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613ef8565b611fd3565b005b348015610a0a57600080fd5b50610a136120e2565b604051610a209190613e0c565b60405180910390f35b348015610a3557600080fd5b50610a3e6120f5565b604051610a4b9190613edd565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ef8565b6120fb565b604051610a889190613e0c565b60405180910390f35b348015610a9d57600080fd5b50610aa6612250565b604051610ab39190613edd565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613fd9565b612256565b604051610af09190613edd565b60405180910390f35b348015610b0557600080fd5b50610b0e6122dd565b604051610b1b9190613edd565b60405180910390f35b348015610b3057600080fd5b50610b396122e3565b604051610b469190613e0c565b60405180910390f35b348015610b5b57600080fd5b50610b64612383565b604051610b719190613edd565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613e27565b612389565b005b348015610baf57600080fd5b50610bb8612481565b604051610bc59190613edd565b60405180910390f35b348015610bda57600080fd5b50610be3612487565b604051610bf09190613edd565b60405180910390f35b610c0161248d565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140fe565b60405180910390fd5b8160118190555080601281905550601254601154610c93919061414d565b60108190555060636010541115610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906141ef565b60405180910390fd5b5050565b606060038054610cf29061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1e9061423e565b8015610d6b5780601f10610d4057610100808354040283529160200191610d6b565b820191906000526020600020905b815481529060010190602001808311610d4e57829003601f168201915b5050505050905090565b6000610d89610d8261248d565b8484612495565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610de961248d565b73ffffffffffffffffffffffffffffffffffffffff16610e07611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906140fe565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f2b61248d565b73ffffffffffffffffffffffffffffffffffffffff16610f49611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906140fe565b60405180910390fd5b670de0b6b3a76400006103e86001610fb5610dd7565b610fbf9190614270565b610fc991906142f9565b610fd391906142f9565b811015611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061439c565b60405180910390fd5b670de0b6b3a7640000816110299190614270565b60078190555050565b600061103f848484612660565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108a61248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061442e565b60405180910390fd5b61111e8561111661248d565b858403612495565b60019150509392505050565b61dead81565b60006012905090565b60006111db61114661248d565b84846001600061115461248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d6919061414d565b612495565b6001905092915050565b6111ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661120b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89061449a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790614506565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161137b9190613f87565b60206040518083038186803b15801561139357600080fd5b505afa1580156113a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cb919061453b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611408929190614568565b602060405180830381600087803b15801561142257600080fd5b505af1158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a91906145a6565b50505050565b61146861248d565b73ffffffffffffffffffffffffffffffffffffffff16611486611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906140fe565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115179190613f87565b60206040518083038186803b15801561152f57600080fd5b505afa158015611543573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611567919061453b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016115a4929190614568565b602060405180830381600087803b1580156115be57600080fd5b505af11580156115d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f691906145a6565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561163d573d6000803e3d6000fd5b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6116d661248d565b73ffffffffffffffffffffffffffffffffffffffff166116f4611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611741906140fe565b60405180910390fd5b81600e8190555080600f81905550600f54600e54611768919061414d565b600d81905550600f600d5411156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061461f565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182161248d565b73ffffffffffffffffffffffffffffffffffffffff1661183f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906140fe565b60405180910390fd5b61189f60006132a0565b565b60006118ab61248d565b73ffffffffffffffffffffffffffffffffffffffff166118c9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906140fe565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61194961248d565b73ffffffffffffffffffffffffffffffffffffffff16611967611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b4906140fe565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b611a2661248d565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906140fe565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611b3061248d565b73ffffffffffffffffffffffffffffffffffffffff16611b4e611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b906140fe565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611bd09061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc9061423e565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b61248d565b73ffffffffffffffffffffffffffffffffffffffff16611c79611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc6906140fe565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d55906146b1565b60405180910390fd5b611d688282613366565b5050565b60145481565b60008060016000611d8161248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590614743565b60405180910390fd5b611e52611e4961248d565b85858403612495565b600191505092915050565b6000611e71611e6a61248d565b8484612660565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611eb661248d565b73ffffffffffffffffffffffffffffffffffffffff16611ed4611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140fe565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fc79190613e0c565b60405180910390a25050565b611fdb61248d565b73ffffffffffffffffffffffffffffffffffffffff16611ff9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612046906140fe565b60405180910390fd5b670de0b6b3a76400006103e86005612065610dd7565b61206f9190614270565b61207991906142f9565b61208391906142f9565b8110156120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc906147d5565b60405180910390fd5b670de0b6b3a7640000816120d99190614270565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b600061210561248d565b73ffffffffffffffffffffffffffffffffffffffff16612123611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906140fe565b60405180910390fd5b620186a06001612187610dd7565b6121919190614270565b61219b91906142f9565b8210156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614867565b60405180910390fd5b6103e860086121ea610dd7565b6121f49190614270565b6121fe91906142f9565b821115612240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612237906148f9565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906140fe565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61239161248d565b73ffffffffffffffffffffffffffffffffffffffff166123af611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c9061498b565b60405180910390fd5b61247e816132a0565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256c90614aaf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126539190613edd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614b41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790614bd3565b60405180910390fd5b600081141561275a5761275583836000613407565b61329b565b600a60009054906101000a900460ff1615612e2957612777611ad2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e557506127b5611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612858575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128715750600560149054906101000a900460ff16155b15612e2857600a60019054906101000a900460ff1661296b57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061292b5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190614c3f565b60405180910390fd5b5b600c60009054906101000a900460ff1615612b3f57612988611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a0f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a6757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b3e57436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ab9919061414d565b10612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090614cf7565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be25750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8957600754811115612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614d89565b60405180910390fd5b600954612c38836117d1565b82612c43919061414d565b1115612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90614df5565b60405180910390fd5b612e27565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d2c5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d7b57600754811115612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614e87565b60405180910390fd5b612e26565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e2557600954612dd8836117d1565b82612de3919061414d565b1115612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614df5565b60405180910390fd5b5b5b5b5b5b6000612e34306117d1565b905060006008548210159050808015612e595750600a60029054906101000a900460ff165b8015612e725750600560149054906101000a900460ff16155b8015612ec85750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f1e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f745750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fb8576001600560146101000a81548160ff021916908315150217905550612f9c613688565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061306e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561307857600090505b6000811561328b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130db57506000601054115b156131755761310860646130fa6010548861389590919063ffffffff16565b6138ab90919063ffffffff16565b90506010546011548261311b9190614270565b61312591906142f9565b60136000828254613136919061414d565b925050819055506010546012548261314e9190614270565b61315891906142f9565b60146000828254613169919061414d565b92505081905550613267565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131d057506000600d54115b15613266576131fd60646131ef600d548861389590919063ffffffff16565b6138ab90919063ffffffff16565b9050600d54600e54826132109190614270565b61321a91906142f9565b6013600082825461322b919061414d565b92505081905550600d54600f54826132439190614270565b61324d91906142f9565b6014600082825461325e919061414d565b925050819055505b5b600081111561327c5761327b873083613407565b5b80856132889190614ea7565b94505b613296878787613407565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e90614b41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de90614bd3565b60405180910390fd5b6134f28383836138c1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f90614f4d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461360b919061414d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366f9190613edd565b60405180910390a36136828484846138c6565b50505050565b6000613693306117d1565b905060006014546013546136a7919061414d565b90506000808314806136b95750600082145b156136c657505050613893565b60146008546136d59190614270565b8311156136ee5760146008546136eb9190614270565b92505b6000600283601354866137019190614270565b61370b91906142f9565b61371591906142f9565b9050600061372c82866138cb90919063ffffffff16565b9050600047905061373c826138e1565b600061375182476138cb90919063ffffffff16565b9050600061377c8761376e6014548561389590919063ffffffff16565b6138ab90919063ffffffff16565b90506000818361378c9190614ea7565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614f9e565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508097505060008611801561383c5750600081115b156138895761384b8682613b2d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161388093929190614fb3565b60405180910390a15b5050505050505050505b565b600081836138a39190614270565b905092915050565b600081836138b991906142f9565b905092915050565b505050565b505050565b600081836138d99190614ea7565b905092915050565b6000600267ffffffffffffffff8111156138fe576138fd614fea565b5b60405190808252806020026020018201604052801561392c5781602001602082028036833780820191505090505b509050308160008151811061394457613943615019565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156139e457600080fd5b505afa1580156139f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1c919061505d565b81600181518110613a3057613a2f615019565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a95307f000000000000000000000000000000000000000000000000000000000000000084612495565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613af7959493929190615183565b600060405180830381600087803b158015613b1157600080fd5b505af1158015613b25573d6000803e3d6000fd5b505050505050565b613b58307f000000000000000000000000000000000000000000000000000000000000000084612495565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613ba2611ad2565b426040518863ffffffff1660e01b8152600401613bc4969594939291906151dd565b6060604051808303818588803b158015613bdd57600080fd5b505af1158015613bf1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c16919061523e565b5050505050565b600080fd5b6000819050919050565b613c3581613c22565b8114613c4057600080fd5b50565b600081359050613c5281613c2c565b92915050565b60008060408385031215613c6f57613c6e613c1d565b5b6000613c7d85828601613c43565b9250506020613c8e85828601613c43565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd2578082015181840152602081019050613cb7565b83811115613ce1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0382613c98565b613d0d8185613ca3565b9350613d1d818560208601613cb4565b613d2681613ce7565b840191505092915050565b60006020820190508181036000830152613d4b8184613cf8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7e82613d53565b9050919050565b613d8e81613d73565b8114613d9957600080fd5b50565b600081359050613dab81613d85565b92915050565b60008060408385031215613dc857613dc7613c1d565b5b6000613dd685828601613d9c565b9250506020613de785828601613c43565b9150509250929050565b60008115159050919050565b613e0681613df1565b82525050565b6000602082019050613e216000830184613dfd565b92915050565b600060208284031215613e3d57613e3c613c1d565b5b6000613e4b84828501613d9c565b91505092915050565b6000819050919050565b6000613e79613e74613e6f84613d53565b613e54565b613d53565b9050919050565b6000613e8b82613e5e565b9050919050565b6000613e9d82613e80565b9050919050565b613ead81613e92565b82525050565b6000602082019050613ec86000830184613ea4565b92915050565b613ed781613c22565b82525050565b6000602082019050613ef26000830184613ece565b92915050565b600060208284031215613f0e57613f0d613c1d565b5b6000613f1c84828501613c43565b91505092915050565b600080600060608486031215613f3e57613f3d613c1d565b5b6000613f4c86828701613d9c565b9350506020613f5d86828701613d9c565b9250506040613f6e86828701613c43565b9150509250925092565b613f8181613d73565b82525050565b6000602082019050613f9c6000830184613f78565b92915050565b600060ff82169050919050565b613fb881613fa2565b82525050565b6000602082019050613fd36000830184613faf565b92915050565b60008060408385031215613ff057613fef613c1d565b5b6000613ffe85828601613d9c565b925050602061400f85828601613d9c565b9150509250929050565b61402281613df1565b811461402d57600080fd5b50565b60008135905061403f81614019565b92915050565b6000806040838503121561405c5761405b613c1d565b5b600061406a85828601613d9c565b925050602061407b85828601614030565b9150509250929050565b60006020828403121561409b5761409a613c1d565b5b60006140a984828501614030565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140e8602083613ca3565b91506140f3826140b2565b602082019050919050565b60006020820190508181036000830152614117816140db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061415882613c22565b915061416383613c22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141985761419761411e565b5b828201905092915050565b7f53656c6c20466565000000000000000000000000000000000000000000000000600082015250565b60006141d9600883613ca3565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425657607f821691505b6020821081141561426a5761426961420f565b5b50919050565b600061427b82613c22565b915061428683613c22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142bf576142be61411e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430482613c22565b915061430f83613c22565b92508261431f5761431e6142ca565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614386602f83613ca3565b91506143918261432a565b604082019050919050565b600060208201905081810360008301526143b581614379565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614418602883613ca3565b9150614423826143bc565b604082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614484601a83613ca3565b915061448f8261444e565b602082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b60006144f0601c83613ca3565b91506144fb826144ba565b602082019050919050565b6000602082019050818103600083015261451f816144e3565b9050919050565b60008151905061453581613c2c565b92915050565b60006020828403121561455157614550613c1d565b5b600061455f84828501614526565b91505092915050565b600060408201905061457d6000830185613f78565b61458a6020830184613ece565b9392505050565b6000815190506145a081614019565b92915050565b6000602082840312156145bc576145bb613c1d565b5b60006145ca84828501614591565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614609600783613ca3565b9150614614826145d3565b602082019050919050565b60006020820190508181036000830152614638816145fc565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061469b603983613ca3565b91506146a68261463f565b604082019050919050565b600060208201905081810360008301526146ca8161468e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061472d602583613ca3565b9150614738826146d1565b604082019050919050565b6000602082019050818103600083015261475c81614720565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147bf602483613ca3565b91506147ca82614763565b604082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614851603583613ca3565b915061485c826147f5565b604082019050919050565b6000602082019050818103600083015261488081614844565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148e3603483613ca3565b91506148ee82614887565b604082019050919050565b60006020820190508181036000830152614912816148d6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614975602683613ca3565b915061498082614919565b604082019050919050565b600060208201905081810360008301526149a481614968565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a07602483613ca3565b9150614a12826149ab565b604082019050919050565b60006020820190508181036000830152614a36816149fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a99602283613ca3565b9150614aa482614a3d565b604082019050919050565b60006020820190508181036000830152614ac881614a8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b2b602583613ca3565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bbd602383613ca3565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c29601683613ca3565b9150614c3482614bf3565b602082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614ce1604e83613ca3565b9150614cec82614c5f565b606082019050919050565b60006020820190508181036000830152614d1081614cd4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d73603583613ca3565b9150614d7e82614d17565b604082019050919050565b60006020820190508181036000830152614da281614d66565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ddf601383613ca3565b9150614dea82614da9565b602082019050919050565b60006020820190508181036000830152614e0e81614dd2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e71603683613ca3565b9150614e7c82614e15565b604082019050919050565b60006020820190508181036000830152614ea081614e64565b9050919050565b6000614eb282613c22565b9150614ebd83613c22565b925082821015614ed057614ecf61411e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f37602683613ca3565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b600081905092915050565b50565b6000614f88600083614f6d565b9150614f9382614f78565b600082019050919050565b6000614fa982614f7b565b9150819050919050565b6000606082019050614fc86000830186613ece565b614fd56020830185613ece565b614fe26040830184613ece565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061505781613d85565b92915050565b60006020828403121561507357615072613c1d565b5b600061508184828501615048565b91505092915050565b6000819050919050565b60006150af6150aa6150a58461508a565b613e54565b613c22565b9050919050565b6150bf81615094565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150fa81613d73565b82525050565b600061510c83836150f1565b60208301905092915050565b6000602082019050919050565b6000615130826150c5565b61513a81856150d0565b9350615145836150e1565b8060005b8381101561517657815161515d8882615100565b975061516883615118565b925050600181019050615149565b5085935050505092915050565b600060a0820190506151986000830188613ece565b6151a560208301876150b6565b81810360408301526151b78186615125565b90506151c66060830185613f78565b6151d36080830184613ece565b9695505050505050565b600060c0820190506151f26000830189613f78565b6151ff6020830188613ece565b61520c60408301876150b6565b61521960608301866150b6565b6152266080830185613f78565b61523360a0830184613ece565b979650505050505050565b60008060006060848603121561525757615256613c1d565b5b600061526586828701614526565b935050602061527686828701614526565b925050604061528786828701614526565b915050925092509256fea2646970667358221220f9603adb0b36df5abf05c54c8fee2bdba21d147701da0c07e84d00714332bce164736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80637bce5a0411610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b4f578063f2fde38b14610b7a578063f637434214610ba3578063f8b45b0514610bce576102ef565b8063dd62ed3e14610abc578063e2f4560514610af9578063e884f26014610b24576102ef565b8063c0246668146109ac578063c18bc195146109d5578063c876d0b9146109fe578063c8c8ebe414610a29578063d257b34f14610a54578063d85ba06314610a91576102ef565b806395d89b4111610149578063a457c2d711610123578063a457c2d7146108ca578063a9059cbb14610907578063b62496f514610944578063bbc0c74214610981576102ef565b806395d89b411461084b5780639a7a23d6146108765780639fccce321461089f576102ef565b80637bce5a041461075f5780638a8c523c1461078a5780638da5cb5b146107a15780638ea5220f146107cc57806392136913146107f7578063924de9b714610822576102ef565b8063395093511161024f57806366ca9b831161020857806370a08231116101e257806370a08231146106b7578063715018a6146106f4578063751039fc1461070b5780637571336a14610736576102ef565b806366ca9b83146106385780636a486a8e146106615780636ddd17131461068c576102ef565b806339509351146105285780633aeac4e1146105655780633ccfd60b1461058e57806349bd5a5e146105a55780634a62bb65146105d05780634fbee193146105fb576102ef565b80631816467f116102a15780631816467f146104185780631a8145bb14610441578063203e727e1461046c57806323b872dd1461049557806327c8f835146104d2578063313ce567146104fd576102ef565b806302dbd8f8146102f457806306fdde031461031d578063095ea7b31461034857806310d5de53146103855780631694505e146103c257806318160ddd146103ed576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190613c58565b610bf9565b005b34801561032957600080fd5b50610332610ce3565b60405161033f9190613d31565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190613db1565b610d75565b60405161037c9190613e0c565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190613e27565b610d93565b6040516103b99190613e0c565b60405180910390f35b3480156103ce57600080fd5b506103d7610db3565b6040516103e49190613eb3565b60405180910390f35b3480156103f957600080fd5b50610402610dd7565b60405161040f9190613edd565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a9190613e27565b610de1565b005b34801561044d57600080fd5b50610456610f1d565b6040516104639190613edd565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190613ef8565b610f23565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190613f25565b611032565b6040516104c99190613e0c565b60405180910390f35b3480156104de57600080fd5b506104e761112a565b6040516104f49190613f87565b60405180910390f35b34801561050957600080fd5b50610512611130565b60405161051f9190613fbe565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613db1565b611139565b60405161055c9190613e0c565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190613fd9565b6111e5565b005b34801561059a57600080fd5b506105a3611460565b005b3480156105b157600080fd5b506105ba611641565b6040516105c79190613f87565b60405180910390f35b3480156105dc57600080fd5b506105e5611665565b6040516105f29190613e0c565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190613e27565b611678565b60405161062f9190613e0c565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190613c58565b6116ce565b005b34801561066d57600080fd5b506106766117b8565b6040516106839190613edd565b60405180910390f35b34801561069857600080fd5b506106a16117be565b6040516106ae9190613e0c565b60405180910390f35b3480156106c357600080fd5b506106de60048036038101906106d99190613e27565b6117d1565b6040516106eb9190613edd565b60405180910390f35b34801561070057600080fd5b50610709611819565b005b34801561071757600080fd5b506107206118a1565b60405161072d9190613e0c565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190614045565b611941565b005b34801561076b57600080fd5b50610774611a18565b6040516107819190613edd565b60405180910390f35b34801561079657600080fd5b5061079f611a1e565b005b3480156107ad57600080fd5b506107b6611ad2565b6040516107c39190613f87565b60405180910390f35b3480156107d857600080fd5b506107e1611afc565b6040516107ee9190613f87565b60405180910390f35b34801561080357600080fd5b5061080c611b22565b6040516108199190613edd565b60405180910390f35b34801561082e57600080fd5b5061084960048036038101906108449190614085565b611b28565b005b34801561085757600080fd5b50610860611bc1565b60405161086d9190613d31565b60405180910390f35b34801561088257600080fd5b5061089d60048036038101906108989190614045565b611c53565b005b3480156108ab57600080fd5b506108b4611d6c565b6040516108c19190613edd565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec9190613db1565b611d72565b6040516108fe9190613e0c565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190613db1565b611e5d565b60405161093b9190613e0c565b60405180910390f35b34801561095057600080fd5b5061096b60048036038101906109669190613e27565b611e7b565b6040516109789190613e0c565b60405180910390f35b34801561098d57600080fd5b50610996611e9b565b6040516109a39190613e0c565b60405180910390f35b3480156109b857600080fd5b506109d360048036038101906109ce9190614045565b611eae565b005b3480156109e157600080fd5b506109fc60048036038101906109f79190613ef8565b611fd3565b005b348015610a0a57600080fd5b50610a136120e2565b604051610a209190613e0c565b60405180910390f35b348015610a3557600080fd5b50610a3e6120f5565b604051610a4b9190613edd565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ef8565b6120fb565b604051610a889190613e0c565b60405180910390f35b348015610a9d57600080fd5b50610aa6612250565b604051610ab39190613edd565b60405180910390f35b348015610ac857600080fd5b50610ae36004803603810190610ade9190613fd9565b612256565b604051610af09190613edd565b60405180910390f35b348015610b0557600080fd5b50610b0e6122dd565b604051610b1b9190613edd565b60405180910390f35b348015610b3057600080fd5b50610b396122e3565b604051610b469190613e0c565b60405180910390f35b348015610b5b57600080fd5b50610b64612383565b604051610b719190613edd565b60405180910390f35b348015610b8657600080fd5b50610ba16004803603810190610b9c9190613e27565b612389565b005b348015610baf57600080fd5b50610bb8612481565b604051610bc59190613edd565b60405180910390f35b348015610bda57600080fd5b50610be3612487565b604051610bf09190613edd565b60405180910390f35b610c0161248d565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906140fe565b60405180910390fd5b8160118190555080601281905550601254601154610c93919061414d565b60108190555060636010541115610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906141ef565b60405180910390fd5b5050565b606060038054610cf29061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1e9061423e565b8015610d6b5780601f10610d4057610100808354040283529160200191610d6b565b820191906000526020600020905b815481529060010190602001808311610d4e57829003601f168201915b5050505050905090565b6000610d89610d8261248d565b8484612495565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610de961248d565b73ffffffffffffffffffffffffffffffffffffffff16610e07611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906140fe565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610f2b61248d565b73ffffffffffffffffffffffffffffffffffffffff16610f49611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906140fe565b60405180910390fd5b670de0b6b3a76400006103e86001610fb5610dd7565b610fbf9190614270565b610fc991906142f9565b610fd391906142f9565b811015611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c9061439c565b60405180910390fd5b670de0b6b3a7640000816110299190614270565b60078190555050565b600061103f848484612660565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061108a61248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061442e565b60405180910390fd5b61111e8561111661248d565b858403612495565b60019150509392505050565b61dead81565b60006012905090565b60006111db61114661248d565b84846001600061115461248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111d6919061414d565b612495565b6001905092915050565b6111ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661120b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611258906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c89061449a565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790614506565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161137b9190613f87565b60206040518083038186803b15801561139357600080fd5b505afa1580156113a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113cb919061453b565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401611408929190614568565b602060405180830381600087803b15801561142257600080fd5b505af1158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a91906145a6565b50505050565b61146861248d565b73ffffffffffffffffffffffffffffffffffffffff16611486611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d3906140fe565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115179190613f87565b60206040518083038186803b15801561152f57600080fd5b505afa158015611543573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611567919061453b565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016115a4929190614568565b602060405180830381600087803b1580156115be57600080fd5b505af11580156115d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f691906145a6565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561163d573d6000803e3d6000fd5b5050565b7f00000000000000000000000045076c57b564d4585cd1477d8db8378215c00c0981565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6116d661248d565b73ffffffffffffffffffffffffffffffffffffffff166116f4611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461174a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611741906140fe565b60405180910390fd5b81600e8190555080600f81905550600f54600e54611768919061414d565b600d81905550600f600d5411156117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab9061461f565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61182161248d565b73ffffffffffffffffffffffffffffffffffffffff1661183f611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906140fe565b60405180910390fd5b61189f60006132a0565b565b60006118ab61248d565b73ffffffffffffffffffffffffffffffffffffffff166118c9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461191f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611916906140fe565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b61194961248d565b73ffffffffffffffffffffffffffffffffffffffff16611967611ad2565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b4906140fe565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600f5481565b611a2661248d565b73ffffffffffffffffffffffffffffffffffffffff16611a44611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a91906140fe565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b611b3061248d565b73ffffffffffffffffffffffffffffffffffffffff16611b4e611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b906140fe565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b606060048054611bd09061423e565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc9061423e565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b61248d565b73ffffffffffffffffffffffffffffffffffffffff16611c79611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc6906140fe565b60405180910390fd5b7f00000000000000000000000045076c57b564d4585cd1477d8db8378215c00c0973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d55906146b1565b60405180910390fd5b611d688282613366565b5050565b60145481565b60008060016000611d8161248d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590614743565b60405180910390fd5b611e52611e4961248d565b85858403612495565b600191505092915050565b6000611e71611e6a61248d565b8484612660565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b611eb661248d565b73ffffffffffffffffffffffffffffffffffffffff16611ed4611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614611f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f21906140fe565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fc79190613e0c565b60405180910390a25050565b611fdb61248d565b73ffffffffffffffffffffffffffffffffffffffff16611ff9611ad2565b73ffffffffffffffffffffffffffffffffffffffff161461204f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612046906140fe565b60405180910390fd5b670de0b6b3a76400006103e86005612065610dd7565b61206f9190614270565b61207991906142f9565b61208391906142f9565b8110156120c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bc906147d5565b60405180910390fd5b670de0b6b3a7640000816120d99190614270565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b600061210561248d565b73ffffffffffffffffffffffffffffffffffffffff16612123611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612170906140fe565b60405180910390fd5b620186a06001612187610dd7565b6121919190614270565b61219b91906142f9565b8210156121dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d490614867565b60405180910390fd5b6103e860086121ea610dd7565b6121f49190614270565b6121fe91906142f9565b821115612240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612237906148f9565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b60006122ed61248d565b73ffffffffffffffffffffffffffffffffffffffff1661230b611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906140fe565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b61239161248d565b73ffffffffffffffffffffffffffffffffffffffff166123af611ad2565b73ffffffffffffffffffffffffffffffffffffffff1614612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc906140fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246c9061498b565b60405180910390fd5b61247e816132a0565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90614a1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256c90614aaf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126539190613edd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c790614b41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273790614bd3565b60405180910390fd5b600081141561275a5761275583836000613407565b61329b565b600a60009054906101000a900460ff1615612e2957612777611ad2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127e557506127b5611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612858575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128715750600560149054906101000a900460ff16155b15612e2857600a60019054906101000a900460ff1661296b57601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061292b5750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61296a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296190614c3f565b60405180910390fd5b5b600c60009054906101000a900460ff1615612b3f57612988611ad2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612a0f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a6757507f00000000000000000000000045076c57b564d4585cd1477d8db8378215c00c0973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612b3e57436001600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612ab9919061414d565b10612af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af090614cf7565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612be25750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c8957600754811115612c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2390614d89565b60405180910390fd5b600954612c38836117d1565b82612c43919061414d565b1115612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90614df5565b60405180910390fd5b612e27565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d2c5750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d7b57600754811115612d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6d90614e87565b60405180910390fd5b612e26565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612e2557600954612dd8836117d1565b82612de3919061414d565b1115612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90614df5565b60405180910390fd5b5b5b5b5b5b6000612e34306117d1565b905060006008548210159050808015612e595750600a60029054906101000a900460ff165b8015612e725750600560149054906101000a900460ff16155b8015612ec85750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f1e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f745750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fb8576001600560146101000a81548160ff021916908315150217905550612f9c613688565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061306e5750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561307857600090505b6000811561328b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130db57506000601054115b156131755761310860646130fa6010548861389590919063ffffffff16565b6138ab90919063ffffffff16565b90506010546011548261311b9190614270565b61312591906142f9565b60136000828254613136919061414d565b925050819055506010546012548261314e9190614270565b61315891906142f9565b60146000828254613169919061414d565b92505081905550613267565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131d057506000600d54115b15613266576131fd60646131ef600d548861389590919063ffffffff16565b6138ab90919063ffffffff16565b9050600d54600e54826132109190614270565b61321a91906142f9565b6013600082825461322b919061414d565b92505081905550600d54600f54826132439190614270565b61324d91906142f9565b6014600082825461325e919061414d565b925050819055505b5b600081111561327c5761327b873083613407565b5b80856132889190614ea7565b94505b613296878787613407565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e90614b41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134de90614bd3565b60405180910390fd5b6134f28383836138c1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356f90614f4d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461360b919061414d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161366f9190613edd565b60405180910390a36136828484846138c6565b50505050565b6000613693306117d1565b905060006014546013546136a7919061414d565b90506000808314806136b95750600082145b156136c657505050613893565b60146008546136d59190614270565b8311156136ee5760146008546136eb9190614270565b92505b6000600283601354866137019190614270565b61370b91906142f9565b61371591906142f9565b9050600061372c82866138cb90919063ffffffff16565b9050600047905061373c826138e1565b600061375182476138cb90919063ffffffff16565b9050600061377c8761376e6014548561389590919063ffffffff16565b6138ab90919063ffffffff16565b90506000818361378c9190614ea7565b905060006013819055506000601481905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137e490614f9e565b60006040518083038185875af1925050503d8060008114613821576040519150601f19603f3d011682016040523d82523d6000602084013e613826565b606091505b50508097505060008611801561383c5750600081115b156138895761384b8682613b2d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161388093929190614fb3565b60405180910390a15b5050505050505050505b565b600081836138a39190614270565b905092915050565b600081836138b991906142f9565b905092915050565b505050565b505050565b600081836138d99190614ea7565b905092915050565b6000600267ffffffffffffffff8111156138fe576138fd614fea565b5b60405190808252806020026020018201604052801561392c5781602001602082028036833780820191505090505b509050308160008151811061394457613943615019565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156139e457600080fd5b505afa1580156139f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a1c919061505d565b81600181518110613a3057613a2f615019565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613a95307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612495565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613af7959493929190615183565b600060405180830381600087803b158015613b1157600080fd5b505af1158015613b25573d6000803e3d6000fd5b505050505050565b613b58307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612495565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613ba2611ad2565b426040518863ffffffff1660e01b8152600401613bc4969594939291906151dd565b6060604051808303818588803b158015613bdd57600080fd5b505af1158015613bf1573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c16919061523e565b5050505050565b600080fd5b6000819050919050565b613c3581613c22565b8114613c4057600080fd5b50565b600081359050613c5281613c2c565b92915050565b60008060408385031215613c6f57613c6e613c1d565b5b6000613c7d85828601613c43565b9250506020613c8e85828601613c43565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cd2578082015181840152602081019050613cb7565b83811115613ce1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d0382613c98565b613d0d8185613ca3565b9350613d1d818560208601613cb4565b613d2681613ce7565b840191505092915050565b60006020820190508181036000830152613d4b8184613cf8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7e82613d53565b9050919050565b613d8e81613d73565b8114613d9957600080fd5b50565b600081359050613dab81613d85565b92915050565b60008060408385031215613dc857613dc7613c1d565b5b6000613dd685828601613d9c565b9250506020613de785828601613c43565b9150509250929050565b60008115159050919050565b613e0681613df1565b82525050565b6000602082019050613e216000830184613dfd565b92915050565b600060208284031215613e3d57613e3c613c1d565b5b6000613e4b84828501613d9c565b91505092915050565b6000819050919050565b6000613e79613e74613e6f84613d53565b613e54565b613d53565b9050919050565b6000613e8b82613e5e565b9050919050565b6000613e9d82613e80565b9050919050565b613ead81613e92565b82525050565b6000602082019050613ec86000830184613ea4565b92915050565b613ed781613c22565b82525050565b6000602082019050613ef26000830184613ece565b92915050565b600060208284031215613f0e57613f0d613c1d565b5b6000613f1c84828501613c43565b91505092915050565b600080600060608486031215613f3e57613f3d613c1d565b5b6000613f4c86828701613d9c565b9350506020613f5d86828701613d9c565b9250506040613f6e86828701613c43565b9150509250925092565b613f8181613d73565b82525050565b6000602082019050613f9c6000830184613f78565b92915050565b600060ff82169050919050565b613fb881613fa2565b82525050565b6000602082019050613fd36000830184613faf565b92915050565b60008060408385031215613ff057613fef613c1d565b5b6000613ffe85828601613d9c565b925050602061400f85828601613d9c565b9150509250929050565b61402281613df1565b811461402d57600080fd5b50565b60008135905061403f81614019565b92915050565b6000806040838503121561405c5761405b613c1d565b5b600061406a85828601613d9c565b925050602061407b85828601614030565b9150509250929050565b60006020828403121561409b5761409a613c1d565b5b60006140a984828501614030565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140e8602083613ca3565b91506140f3826140b2565b602082019050919050565b60006020820190508181036000830152614117816140db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061415882613c22565b915061416383613c22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141985761419761411e565b5b828201905092915050565b7f53656c6c20466565000000000000000000000000000000000000000000000000600082015250565b60006141d9600883613ca3565b91506141e4826141a3565b602082019050919050565b60006020820190508181036000830152614208816141cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425657607f821691505b6020821081141561426a5761426961420f565b5b50919050565b600061427b82613c22565b915061428683613c22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142bf576142be61411e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061430482613c22565b915061430f83613c22565b92508261431f5761431e6142ca565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614386602f83613ca3565b91506143918261432a565b604082019050919050565b600060208201905081810360008301526143b581614379565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614418602883613ca3565b9150614423826143bc565b604082019050919050565b600060208201905081810360008301526144478161440b565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614484601a83613ca3565b915061448f8261444e565b602082019050919050565b600060208201905081810360008301526144b381614477565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e7300000000600082015250565b60006144f0601c83613ca3565b91506144fb826144ba565b602082019050919050565b6000602082019050818103600083015261451f816144e3565b9050919050565b60008151905061453581613c2c565b92915050565b60006020828403121561455157614550613c1d565b5b600061455f84828501614526565b91505092915050565b600060408201905061457d6000830185613f78565b61458a6020830184613ece565b9392505050565b6000815190506145a081614019565b92915050565b6000602082840312156145bc576145bb613c1d565b5b60006145ca84828501614591565b91505092915050565b7f4275792046656500000000000000000000000000000000000000000000000000600082015250565b6000614609600783613ca3565b9150614614826145d3565b602082019050919050565b60006020820190508181036000830152614638816145fc565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061469b603983613ca3565b91506146a68261463f565b604082019050919050565b600060208201905081810360008301526146ca8161468e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061472d602583613ca3565b9150614738826146d1565b604082019050919050565b6000602082019050818103600083015261475c81614720565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006147bf602483613ca3565b91506147ca82614763565b604082019050919050565b600060208201905081810360008301526147ee816147b2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614851603583613ca3565b915061485c826147f5565b604082019050919050565b6000602082019050818103600083015261488081614844565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e382520746f74616c20737570706c792e000000000000000000000000602082015250565b60006148e3603483613ca3565b91506148ee82614887565b604082019050919050565b60006020820190508181036000830152614912816148d6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614975602683613ca3565b915061498082614919565b604082019050919050565b600060208201905081810360008301526149a481614968565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a07602483613ca3565b9150614a12826149ab565b604082019050919050565b60006020820190508181036000830152614a36816149fa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a99602283613ca3565b9150614aa482614a3d565b604082019050919050565b60006020820190508181036000830152614ac881614a8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b2b602583613ca3565b9150614b3682614acf565b604082019050919050565b60006020820190508181036000830152614b5a81614b1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bbd602383613ca3565b9150614bc882614b61565b604082019050919050565b60006020820190508181036000830152614bec81614bb0565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c29601683613ca3565b9150614c3482614bf3565b602082019050919050565b60006020820190508181036000830152614c5881614c1c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e65207075726368617365207065722074776f206260208201527f6c6f636b7320616c6c6f7765642e000000000000000000000000000000000000604082015250565b6000614ce1604e83613ca3565b9150614cec82614c5f565b606082019050919050565b60006020820190508181036000830152614d1081614cd4565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d73603583613ca3565b9150614d7e82614d17565b604082019050919050565b60006020820190508181036000830152614da281614d66565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614ddf601383613ca3565b9150614dea82614da9565b602082019050919050565b60006020820190508181036000830152614e0e81614dd2565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e71603683613ca3565b9150614e7c82614e15565b604082019050919050565b60006020820190508181036000830152614ea081614e64565b9050919050565b6000614eb282613c22565b9150614ebd83613c22565b925082821015614ed057614ecf61411e565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f37602683613ca3565b9150614f4282614edb565b604082019050919050565b60006020820190508181036000830152614f6681614f2a565b9050919050565b600081905092915050565b50565b6000614f88600083614f6d565b9150614f9382614f78565b600082019050919050565b6000614fa982614f7b565b9150819050919050565b6000606082019050614fc86000830186613ece565b614fd56020830185613ece565b614fe26040830184613ece565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061505781613d85565b92915050565b60006020828403121561507357615072613c1d565b5b600061508184828501615048565b91505092915050565b6000819050919050565b60006150af6150aa6150a58461508a565b613e54565b613c22565b9050919050565b6150bf81615094565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6150fa81613d73565b82525050565b600061510c83836150f1565b60208301905092915050565b6000602082019050919050565b6000615130826150c5565b61513a81856150d0565b9350615145836150e1565b8060005b8381101561517657815161515d8882615100565b975061516883615118565b925050600181019050615149565b5085935050505092915050565b600060a0820190506151986000830188613ece565b6151a560208301876150b6565b81810360408301526151b78186615125565b90506151c66060830185613f78565b6151d36080830184613ece565b9695505050505050565b600060c0820190506151f26000830189613f78565b6151ff6020830188613ece565b61520c60408301876150b6565b61521960608301866150b6565b6152266080830185613f78565b61523360a0830184613ece565b979650505050505050565b60008060006060848603121561525757615256613c1d565b5b600061526586828701614526565b935050602061527686828701614526565b925050604061528786828701614526565b915050925092509256fea2646970667358221220f9603adb0b36df5abf05c54c8fee2bdba21d147701da0c07e84d00714332bce164736f6c63430008090033

Deployed Bytecode Sourcemap

29493:15552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35953:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8597:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10764:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30701:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29572:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9717:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36980:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30485:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34714:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11415:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29675:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9559:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12316:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44682:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44428:246;;;;;;;;;;;;;:::i;:::-;;29630:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29915:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37145:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35632:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30372:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29995:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9888:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2114:103;;;;;;;;;;;;;:::i;:::-;;33818:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35261:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30333:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33654:112;;;;;;;;;;;;;:::i;:::-;;1463:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29767:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30445:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35524:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8816:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36472:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30525:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13034:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10228:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30922:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29955:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36282:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34997:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30213:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29800:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34209:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30262:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10466:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29842:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34000:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30296:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2372:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30407:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29882:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35953:321;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36097:13:::1;36078:16;:32;;;;36140:13;36121:16;:32;;;;36199:16;;36180;;:35;;;;:::i;:::-;36164:13;:51;;;;36251:2;36234:13;;:19;;36226:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;35953:321:::0;;:::o;8597:100::-;8651:13;8684:5;8677:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8597:100;:::o;10764:169::-;10847:4;10864:39;10873:12;:10;:12::i;:::-;10887:7;10896:6;10864:8;:39::i;:::-;10921:4;10914:11;;10764:169;;;;:::o;30701:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;29572:51::-;;;:::o;9717:108::-;9778:7;9805:12;;9798:19;;9717:108;:::o;36980:157::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37087:9:::1;;;;;;;;;;;37059:38;;37076:9;37059:38;;;;;;;;;;;;37120:9;37108;;:21;;;;;;;;;;;;;;;;;;36980:157:::0;:::o;30485:33::-;;;;:::o;34714:275::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34851:4:::1;34843;34838:1;34822:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34821:26;;;;:::i;:::-;34820:35;;;;:::i;:::-;34810:6;:45;;34788:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;34974:6;34964;:17;;;;:::i;:::-;34941:20;:40;;;;34714:275:::0;:::o;11415:492::-;11555:4;11572:36;11582:6;11590:9;11601:6;11572:9;:36::i;:::-;11621:24;11648:11;:19;11660:6;11648:19;;;;;;;;;;;;;;;:33;11668:12;:10;:12::i;:::-;11648:33;;;;;;;;;;;;;;;;11621:60;;11720:6;11700:16;:26;;11692:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11807:57;11816:6;11824:12;:10;:12::i;:::-;11857:6;11838:16;:25;11807:8;:57::i;:::-;11895:4;11888:11;;;11415:492;;;;;:::o;29675:53::-;29721:6;29675:53;:::o;9559:93::-;9617:5;9642:2;9635:9;;9559:93;:::o;12316:215::-;12404:4;12421:80;12430:12;:10;:12::i;:::-;12444:7;12490:10;12453:11;:25;12465:12;:10;:12::i;:::-;12453:25;;;;;;;;;;;;;;;:34;12479:7;12453:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12421:8;:80::i;:::-;12519:4;12512:11;;12316:215;;;;:::o;44682:358::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44790:1:::1;44772:20;;:6;:20;;;;44764:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44860:4;44842:23;;:6;:23;;;;44834:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44909:24;44943:6;44936:24;;;44969:4;44936:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44909:66;;44993:6;44986:23;;;45010:3;45015:16;44986:46;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44753:287;44682:358:::0;;:::o;44428:246::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44478:15:::1;44511:4;44496:31;;;44536:4;44496:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44478:64;;44568:4;44553:30;;;44584:10;44596:7;44553:51;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44623:10;44615:28;;:51;44644:21;44615:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44467:207;44428:246::o:0;29630:38::-;;;:::o;29915:33::-;;;;;;;;;;;;;:::o;37145:126::-;37211:4;37235:19;:28;37255:7;37235:28;;;;;;;;;;;;;;;;;;;;;;;;;37228:35;;37145:126;;;:::o;35632:313::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35774:13:::1;35756:15;:31;;;;35816:13;35798:15;:31;;;;35873:15;;35855;;:33;;;;:::i;:::-;35840:12;:48;;;;35923:2;35907:12;;:18;;35899:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;35632:313:::0;;:::o;30372:28::-;;;;:::o;29995:31::-;;;;;;;;;;;;;:::o;9888:127::-;9962:7;9989:9;:18;9999:7;9989:18;;;;;;;;;;;;;;;;9982:25;;9888:127;;;:::o;2114:103::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2179:30:::1;2206:1;2179:18;:30::i;:::-;2114:103::o:0;33818:121::-;33870:4;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33904:5:::1;33887:14;;:22;;;;;;;;;;;;;;;;;;33927:4;33920:11;;33818:121:::0;:::o;35261:167::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35416:4:::1;35374:31;:39;35406:6;35374:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35261:167:::0;;:::o;30333:30::-;;;;:::o;33654:112::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33725:4:::1;33709:13;;:20;;;;;;;;;;;;;;;;;;33754:4;33740:11;;:18;;;;;;;;;;;;;;;;;;33654:112::o:0;1463:87::-;1509:7;1536:6;;;;;;;;;;;1529:13;;1463:87;:::o;29767:24::-;;;;;;;;;;;;;:::o;30445:31::-;;;;:::o;35524:100::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35609:7:::1;35595:11;;:21;;;;;;;;;;;;;;;;;;35524:100:::0;:::o;8816:104::-;8872:13;8905:7;8898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8816:104;:::o;36472:304::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36616:13:::1;36608:21;;:4;:21;;;;36586:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;36727:41;36756:4;36762:5;36727:28;:41::i;:::-;36472:304:::0;;:::o;30525:27::-;;;;:::o;13034:413::-;13127:4;13144:24;13171:11;:25;13183:12;:10;:12::i;:::-;13171:25;;;;;;;;;;;;;;;:34;13197:7;13171:34;;;;;;;;;;;;;;;;13144:61;;13244:15;13224:16;:35;;13216:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13337:67;13346:12;:10;:12::i;:::-;13360:7;13388:15;13369:16;:34;13337:8;:67::i;:::-;13435:4;13428:11;;;13034:413;;;;:::o;10228:175::-;10314:4;10331:42;10341:12;:10;:12::i;:::-;10355:9;10366:6;10331:9;:42::i;:::-;10391:4;10384:11;;10228:175;;;;:::o;30922:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;29955:33::-;;;;;;;;;;;;;:::o;36282:182::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36398:8:::1;36367:19;:28;36387:7;36367:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36438:7;36422:34;;;36447:8;36422:34;;;;;;:::i;:::-;;;;;;;;36282:182:::0;;:::o;34997:256::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35137:4:::1;35129;35124:1;35108:13;:11;:13::i;:::-;:17;;;;:::i;:::-;35107:26;;;;:::i;:::-;35106:35;;;;:::i;:::-;35096:6;:45;;35074:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;35238:6;35228;:17;;;;:::i;:::-;35216:9;:29;;;;34997:256:::0;:::o;30213:40::-;;;;;;;;;;;;;:::o;29800:35::-;;;;:::o;34209:497::-;34317:4;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34396:6:::1;34391:1;34375:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34374:28;;;;:::i;:::-;34361:9;:41;;34339:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;34551:4;34546:1;34530:13;:11;:13::i;:::-;:17;;;;:::i;:::-;34529:26;;;;:::i;:::-;34516:9;:39;;34494:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;34667:9;34646:18;:30;;;;34694:4;34687:11;;34209:497:::0;;;:::o;30262:27::-;;;;:::o;10466:151::-;10555:7;10582:11;:18;10594:5;10582:18;;;;;;;;;;;;;;;:27;10601:7;10582:27;;;;;;;;;;;;;;;;10575:34;;10466:151;;;;:::o;29842:33::-;;;;:::o;34000:135::-;34060:4;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34100:5:::1;34077:20;;:28;;;;;;;;;;;;;;;;;;34123:4;34116:11;;34000:135:::0;:::o;30296:30::-;;;;:::o;2372:201::-;1694:12;:10;:12::i;:::-;1683:23;;:7;:5;:7::i;:::-;:23;;;1675:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2481:1:::1;2461:22;;:8;:22;;;;2453:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2537:28;2556:8;2537:18;:28::i;:::-;2372:201:::0;:::o;30407:31::-;;;;:::o;29882:24::-;;;;:::o;327:98::-;380:7;407:10;400:17;;327:98;:::o;16718:380::-;16871:1;16854:19;;:5;:19;;;;16846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16952:1;16933:21;;:7;:21;;;;16925:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17036:6;17006:11;:18;17018:5;17006:18;;;;;;;;;;;;;;;:27;17025:7;17006:27;;;;;;;;;;;;;;;:36;;;;17074:7;17058:32;;17067:5;17058:32;;;17083:6;17058:32;;;;;;:::i;:::-;;;;;;;;16718:380;;;:::o;37279:4576::-;37427:1;37411:18;;:4;:18;;;;37403:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37504:1;37490:16;;:2;:16;;;;37482:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37573:1;37563:6;:11;37559:93;;;37591:28;37607:4;37613:2;37617:1;37591:15;:28::i;:::-;37634:7;;37559:93;37668:14;;;;;;;;;;;37664:2496;;;37729:7;:5;:7::i;:::-;37721:15;;:4;:15;;;;:49;;;;;37763:7;:5;:7::i;:::-;37757:13;;:2;:13;;;;37721:49;:86;;;;;37805:1;37791:16;;:2;:16;;;;37721:86;:128;;;;;37842:6;37828:21;;:2;:21;;;;37721:128;:158;;;;;37871:8;;;;;;;;;;;37870:9;37721:158;37699:2450;;;37919:13;;;;;;;;;;;37914:223;;37991:19;:25;38011:4;37991:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38020:19;:23;38040:2;38020:23;;;;;;;;;;;;;;;;;;;;;;;;;37991:52;37957:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;37914:223;38293:20;;;;;;;;;;;38289:650;;;38374:7;:5;:7::i;:::-;38368:13;;:2;:13;;;;:72;;;;;38424:15;38410:30;;:2;:30;;;;38368:72;:129;;;;;38483:13;38469:28;;:2;:28;;;;38368:129;38338:582;;;38665:12;38628:1;38586:28;:39;38615:9;38586:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;38548:267;;;;;;;;;;;;:::i;:::-;;;;;;;;;38884:12;38842:28;:39;38871:9;38842:39;;;;;;;;;;;;;;;:54;;;;38338:582;38289:650;39013:25;:31;39039:4;39013:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39070:31;:35;39102:2;39070:35;;;;;;;;;;;;;;;;;;;;;;;;;39069:36;39013:92;38987:1147;;;39192:20;;39182:6;:30;;39148:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39400:9;;39383:13;39393:2;39383:9;:13::i;:::-;39374:6;:22;;;;:::i;:::-;:35;;39340:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;38987:1147;;;39578:25;:29;39604:2;39578:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39633:31;:37;39665:4;39633:37;;;;;;;;;;;;;;;;;;;;;;;;;39632:38;39578:92;39552:582;;;39757:20;;39747:6;:30;;39713:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;39552:582;;;39914:31;:35;39946:2;39914:35;;;;;;;;;;;;;;;;;;;;;;;;;39909:225;;40034:9;;40017:13;40027:2;40017:9;:13::i;:::-;40008:6;:22;;;;:::i;:::-;:35;;39974:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39909:225;39552:582;38987:1147;37699:2450;37664:2496;40172:28;40203:24;40221:4;40203:9;:24::i;:::-;40172:55;;40240:12;40279:18;;40255:20;:42;;40240:57;;40328:7;:35;;;;;40352:11;;;;;;;;;;;40328:35;:61;;;;;40381:8;;;;;;;;;;;40380:9;40328:61;:110;;;;;40407:25;:31;40433:4;40407:31;;;;;;;;;;;;;;;;;;;;;;;;;40406:32;40328:110;:153;;;;;40456:19;:25;40476:4;40456:25;;;;;;;;;;;;;;;;;;;;;;;;;40455:26;40328:153;:194;;;;;40499:19;:23;40519:2;40499:23;;;;;;;;;;;;;;;;;;;;;;;;;40498:24;40328:194;40310:326;;;40560:4;40549:8;;:15;;;;;;;;;;;;;;;;;;40581:10;:8;:10::i;:::-;40619:5;40608:8;;:16;;;;;;;;;;;;;;;;;;40310:326;40648:12;40664:8;;;;;;;;;;;40663:9;40648:24;;40774:19;:25;40794:4;40774:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;40803:19;:23;40823:2;40803:23;;;;;;;;;;;;;;;;;;;;;;;;;40774:52;40770:100;;;40853:5;40843:15;;40770:100;40882:12;40987:7;40983:819;;;41039:25;:29;41065:2;41039:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41088:1;41072:13;;:17;41039:50;41035:618;;;41117:34;41147:3;41117:25;41128:13;;41117:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41110:41;;41220:13;;41200:16;;41193:4;:23;;;;:::i;:::-;41192:41;;;;:::i;:::-;41170:18;;:63;;;;;;;:::i;:::-;;;;;;;;41296:13;;41276:16;;41269:4;:23;;;;:::i;:::-;41268:41;;;;:::i;:::-;41252:12;;:57;;;;;;;:::i;:::-;;;;;;;;41035:618;;;41371:25;:31;41397:4;41371:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;41421:1;41406:12;;:16;41371:51;41367:286;;;41450:33;41479:3;41450:24;41461:12;;41450:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;41443:40;;41551:12;;41532:15;;41525:4;:22;;;;:::i;:::-;41524:39;;;;:::i;:::-;41502:18;;:61;;;;;;;:::i;:::-;;;;;;;;41625:12;;41606:15;;41599:4;:22;;;;:::i;:::-;41598:39;;;;:::i;:::-;41582:12;;:55;;;;;;;:::i;:::-;;;;;;;;41367:286;41035:618;41680:1;41673:4;:8;41669:91;;;41702:42;41718:4;41732;41739;41702:15;:42::i;:::-;41669:91;41786:4;41776:14;;;;;:::i;:::-;;;40983:819;41814:33;41830:4;41836:2;41840:6;41814:15;:33::i;:::-;37392:4463;;;;37279:4576;;;;:::o;2733:191::-;2807:16;2826:6;;;;;;;;;;;2807:25;;2852:8;2843:6;;:17;;;;;;;;;;;;;;;;;;2907:8;2876:40;;2897:8;2876:40;;;;;;;;;;;;2796:128;2733:191;:::o;36784:188::-;36901:5;36867:25;:31;36893:4;36867:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36958:5;36924:40;;36952:4;36924:40;;;;;;;;;;;;36784:188;;:::o;13937:733::-;14095:1;14077:20;;:6;:20;;;;14069:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14179:1;14158:23;;:9;:23;;;;14150:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14234:47;14255:6;14263:9;14274:6;14234:20;:47::i;:::-;14294:21;14318:9;:17;14328:6;14318:17;;;;;;;;;;;;;;;;14294:41;;14371:6;14354:13;:23;;14346:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14492:6;14476:13;:22;14456:9;:17;14466:6;14456:17;;;;;;;;;;;;;;;:42;;;;14544:6;14520:9;:20;14530:9;14520:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14585:9;14568:35;;14577:6;14568:35;;;14596:6;14568:35;;;;;;:::i;:::-;;;;;;;;14616:46;14636:6;14644:9;14655:6;14616:19;:46::i;:::-;14058:612;13937:733;;;:::o;42981:1439::-;43020:23;43046:24;43064:4;43046:9;:24::i;:::-;43020:50;;43081:25;43143:12;;43109:18;;:46;;;;:::i;:::-;43081:74;;43166:12;43214:1;43195:15;:20;:46;;;;43240:1;43219:17;:22;43195:46;43191:85;;;43258:7;;;;;43191:85;43331:2;43310:18;;:23;;;;:::i;:::-;43292:15;:41;43288:115;;;43389:2;43368:18;;:23;;;;:::i;:::-;43350:41;;43288:115;43464:23;43577:1;43544:17;43509:18;;43491:15;:36;;;;:::i;:::-;43490:71;;;;:::i;:::-;:88;;;;:::i;:::-;43464:114;;43589:26;43618:36;43638:15;43618;:19;;:36;;;;:::i;:::-;43589:65;;43667:25;43695:21;43667:49;;43729:36;43746:18;43729:16;:36::i;:::-;43778:18;43799:44;43825:17;43799:21;:25;;:44;;;;:::i;:::-;43778:65;;43856:17;43876:51;43909:17;43876:28;43891:12;;43876:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;43856:71;;43940:23;43979:9;43966:10;:22;;;;:::i;:::-;43940:48;;44022:1;44001:18;:22;;;;44049:1;44034:12;:16;;;;44085:9;;;;;;;;;;;44077:23;;44108:9;44077:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44063:59;;;;;44157:1;44139:15;:19;:42;;;;;44180:1;44162:15;:19;44139:42;44135:278;;;44198:46;44211:15;44228;44198:12;:46::i;:::-;44264:137;44297:18;44334:15;44368:18;;44264:137;;;;;;;;:::i;:::-;;;;;;;;44135:278;43009:1411;;;;;;;;;42981:1439;:::o;21850:98::-;21908:7;21939:1;21935;:5;;;;:::i;:::-;21928:12;;21850:98;;;;:::o;22249:::-;22307:7;22338:1;22334;:5;;;;:::i;:::-;22327:12;;22249:98;;;;:::o;17698:125::-;;;;:::o;18427:124::-;;;;:::o;21493:98::-;21551:7;21582:1;21578;:5;;;;:::i;:::-;21571:12;;21493:98;;;;:::o;41863:589::-;41989:21;42027:1;42013:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41989:40;;42058:4;42040;42045:1;42040:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42084:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42074:4;42079:1;42074:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42119:62;42136:4;42151:15;42169:11;42119:8;:62::i;:::-;42220:15;:66;;;42301:11;42327:1;42371:4;42398;42418:15;42220:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41918:534;41863:589;:::o;42460:513::-;42608:62;42625:4;42640:15;42658:11;42608:8;:62::i;:::-;42713:15;:31;;;42752:9;42785:4;42805:11;42831:1;42874;42917:7;:5;:7::i;:::-;42939:15;42713:252;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42460:513;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:474::-;7449:6;7457;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7603:117;7759:2;7785:53;7830:7;7821:6;7810:9;7806:22;7785:53;:::i;:::-;7775:63;;7730:118;7381:474;;;;;:::o;7861:116::-;7931:21;7946:5;7931:21;:::i;:::-;7924:5;7921:32;7911:60;;7967:1;7964;7957:12;7911:60;7861:116;:::o;7983:133::-;8026:5;8064:6;8051:20;8042:29;;8080:30;8104:5;8080:30;:::i;:::-;7983:133;;;;:::o;8122:468::-;8187:6;8195;8244:2;8232:9;8223:7;8219:23;8215:32;8212:119;;;8250:79;;:::i;:::-;8212:119;8370:1;8395:53;8440:7;8431:6;8420:9;8416:22;8395:53;:::i;:::-;8385:63;;8341:117;8497:2;8523:50;8565:7;8556:6;8545:9;8541:22;8523:50;:::i;:::-;8513:60;;8468:115;8122:468;;;;;:::o;8596:323::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:50;8894:7;8885:6;8874:9;8870:22;8852:50;:::i;:::-;8842:60;;8798:114;8596:323;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:158::-;10547:10;10543:1;10535:6;10531:14;10524:34;10407:158;:::o;10571:365::-;10713:3;10734:66;10798:1;10793:3;10734:66;:::i;:::-;10727:73;;10809:93;10898:3;10809:93;:::i;:::-;10927:2;10922:3;10918:12;10911:19;;10571:365;;;:::o;10942:419::-;11108:4;11146:2;11135:9;11131:18;11123:26;;11195:9;11189:4;11185:20;11181:1;11170:9;11166:17;11159:47;11223:131;11349:4;11223:131;:::i;:::-;11215:139;;10942:419;;;:::o;11367:180::-;11415:77;11412:1;11405:88;11512:4;11509:1;11502:15;11536:4;11533:1;11526:15;11553:320;11597:6;11634:1;11628:4;11624:12;11614:22;;11681:1;11675:4;11671:12;11702:18;11692:81;;11758:4;11750:6;11746:17;11736:27;;11692:81;11820:2;11812:6;11809:14;11789:18;11786:38;11783:84;;;11839:18;;:::i;:::-;11783:84;11604:269;11553:320;;;:::o;11879:348::-;11919:7;11942:20;11960:1;11942:20;:::i;:::-;11937:25;;11976:20;11994:1;11976:20;:::i;:::-;11971:25;;12164:1;12096:66;12092:74;12089:1;12086:81;12081:1;12074:9;12067:17;12063:105;12060:131;;;12171:18;;:::i;:::-;12060:131;12219:1;12216;12212:9;12201:20;;11879:348;;;;:::o;12233:180::-;12281:77;12278:1;12271:88;12378:4;12375:1;12368:15;12402:4;12399:1;12392:15;12419:185;12459:1;12476:20;12494:1;12476:20;:::i;:::-;12471:25;;12510:20;12528:1;12510:20;:::i;:::-;12505:25;;12549:1;12539:35;;12554:18;;:::i;:::-;12539:35;12596:1;12593;12589:9;12584:14;;12419:185;;;;:::o;12610:234::-;12750:34;12746:1;12738:6;12734:14;12727:58;12819:17;12814:2;12806:6;12802:15;12795:42;12610:234;:::o;12850:366::-;12992:3;13013:67;13077:2;13072:3;13013:67;:::i;:::-;13006:74;;13089:93;13178:3;13089:93;:::i;:::-;13207:2;13202:3;13198:12;13191:19;;12850:366;;;:::o;13222:419::-;13388:4;13426:2;13415:9;13411:18;13403:26;;13475:9;13469:4;13465:20;13461:1;13450:9;13446:17;13439:47;13503:131;13629:4;13503:131;:::i;:::-;13495:139;;13222:419;;;:::o;13647:227::-;13787:34;13783:1;13775:6;13771:14;13764:58;13856:10;13851:2;13843:6;13839:15;13832:35;13647:227;:::o;13880:366::-;14022:3;14043:67;14107:2;14102:3;14043:67;:::i;:::-;14036:74;;14119:93;14208:3;14119:93;:::i;:::-;14237:2;14232:3;14228:12;14221:19;;13880:366;;;:::o;14252:419::-;14418:4;14456:2;14445:9;14441:18;14433:26;;14505:9;14499:4;14495:20;14491:1;14480:9;14476:17;14469:47;14533:131;14659:4;14533:131;:::i;:::-;14525:139;;14252:419;;;:::o;14677:176::-;14817:28;14813:1;14805:6;14801:14;14794:52;14677:176;:::o;14859:366::-;15001:3;15022:67;15086:2;15081:3;15022:67;:::i;:::-;15015:74;;15098:93;15187:3;15098:93;:::i;:::-;15216:2;15211:3;15207:12;15200:19;;14859:366;;;:::o;15231:419::-;15397:4;15435:2;15424:9;15420:18;15412:26;;15484:9;15478:4;15474:20;15470:1;15459:9;15455:17;15448:47;15512:131;15638:4;15512:131;:::i;:::-;15504:139;;15231:419;;;:::o;15656:178::-;15796:30;15792:1;15784:6;15780:14;15773:54;15656:178;:::o;15840:366::-;15982:3;16003:67;16067:2;16062:3;16003:67;:::i;:::-;15996:74;;16079:93;16168:3;16079:93;:::i;:::-;16197:2;16192:3;16188:12;16181:19;;15840:366;;;:::o;16212:419::-;16378:4;16416:2;16405:9;16401:18;16393:26;;16465:9;16459:4;16455:20;16451:1;16440:9;16436:17;16429:47;16493:131;16619:4;16493:131;:::i;:::-;16485:139;;16212:419;;;:::o;16637:143::-;16694:5;16725:6;16719:13;16710:22;;16741:33;16768:5;16741:33;:::i;:::-;16637:143;;;;:::o;16786:351::-;16856:6;16905:2;16893:9;16884:7;16880:23;16876:32;16873:119;;;16911:79;;:::i;:::-;16873:119;17031:1;17056:64;17112:7;17103:6;17092:9;17088:22;17056:64;:::i;:::-;17046:74;;17002:128;16786:351;;;;:::o;17143:332::-;17264:4;17302:2;17291:9;17287:18;17279:26;;17315:71;17383:1;17372:9;17368:17;17359:6;17315:71;:::i;:::-;17396:72;17464:2;17453:9;17449:18;17440:6;17396:72;:::i;:::-;17143:332;;;;;:::o;17481:137::-;17535:5;17566:6;17560:13;17551:22;;17582:30;17606:5;17582:30;:::i;:::-;17481:137;;;;:::o;17624:345::-;17691:6;17740:2;17728:9;17719:7;17715:23;17711:32;17708:119;;;17746:79;;:::i;:::-;17708:119;17866:1;17891:61;17944:7;17935:6;17924:9;17920:22;17891:61;:::i;:::-;17881:71;;17837:125;17624:345;;;;:::o;17975:157::-;18115:9;18111:1;18103:6;18099:14;18092:33;17975:157;:::o;18138:365::-;18280:3;18301:66;18365:1;18360:3;18301:66;:::i;:::-;18294:73;;18376:93;18465:3;18376:93;:::i;:::-;18494:2;18489:3;18485:12;18478:19;;18138:365;;;:::o;18509:419::-;18675:4;18713:2;18702:9;18698:18;18690:26;;18762:9;18756:4;18752:20;18748:1;18737:9;18733:17;18726:47;18790:131;18916:4;18790:131;:::i;:::-;18782:139;;18509:419;;;:::o;18934:244::-;19074:34;19070:1;19062:6;19058:14;19051:58;19143:27;19138:2;19130:6;19126:15;19119:52;18934:244;:::o;19184:366::-;19326:3;19347:67;19411:2;19406:3;19347:67;:::i;:::-;19340:74;;19423:93;19512:3;19423:93;:::i;:::-;19541:2;19536:3;19532:12;19525:19;;19184:366;;;:::o;19556:419::-;19722:4;19760:2;19749:9;19745:18;19737:26;;19809:9;19803:4;19799:20;19795:1;19784:9;19780:17;19773:47;19837:131;19963:4;19837:131;:::i;:::-;19829:139;;19556:419;;;:::o;19981:224::-;20121:34;20117:1;20109:6;20105:14;20098:58;20190:7;20185:2;20177:6;20173:15;20166:32;19981:224;:::o;20211:366::-;20353:3;20374:67;20438:2;20433:3;20374:67;:::i;:::-;20367:74;;20450:93;20539:3;20450:93;:::i;:::-;20568:2;20563:3;20559:12;20552:19;;20211:366;;;:::o;20583:419::-;20749:4;20787:2;20776:9;20772:18;20764:26;;20836:9;20830:4;20826:20;20822:1;20811:9;20807:17;20800:47;20864:131;20990:4;20864:131;:::i;:::-;20856:139;;20583:419;;;:::o;21008:223::-;21148:34;21144:1;21136:6;21132:14;21125:58;21217:6;21212:2;21204:6;21200:15;21193:31;21008:223;:::o;21237:366::-;21379:3;21400:67;21464:2;21459:3;21400:67;:::i;:::-;21393:74;;21476:93;21565:3;21476:93;:::i;:::-;21594:2;21589:3;21585:12;21578:19;;21237:366;;;:::o;21609:419::-;21775:4;21813:2;21802:9;21798:18;21790:26;;21862:9;21856:4;21852:20;21848:1;21837:9;21833:17;21826:47;21890:131;22016:4;21890:131;:::i;:::-;21882:139;;21609:419;;;:::o;22034:240::-;22174:34;22170:1;22162:6;22158:14;22151:58;22243:23;22238:2;22230:6;22226:15;22219:48;22034:240;:::o;22280:366::-;22422:3;22443:67;22507:2;22502:3;22443:67;:::i;:::-;22436:74;;22519:93;22608:3;22519:93;:::i;:::-;22637:2;22632:3;22628:12;22621:19;;22280:366;;;:::o;22652:419::-;22818:4;22856:2;22845:9;22841:18;22833:26;;22905:9;22899:4;22895:20;22891:1;22880:9;22876:17;22869:47;22933:131;23059:4;22933:131;:::i;:::-;22925:139;;22652:419;;;:::o;23077:239::-;23217:34;23213:1;23205:6;23201:14;23194:58;23286:22;23281:2;23273:6;23269:15;23262:47;23077:239;:::o;23322:366::-;23464:3;23485:67;23549:2;23544:3;23485:67;:::i;:::-;23478:74;;23561:93;23650:3;23561:93;:::i;:::-;23679:2;23674:3;23670:12;23663:19;;23322:366;;;:::o;23694:419::-;23860:4;23898:2;23887:9;23883:18;23875:26;;23947:9;23941:4;23937:20;23933:1;23922:9;23918:17;23911:47;23975:131;24101:4;23975:131;:::i;:::-;23967:139;;23694:419;;;:::o;24119:225::-;24259:34;24255:1;24247:6;24243:14;24236:58;24328:8;24323:2;24315:6;24311:15;24304:33;24119:225;:::o;24350:366::-;24492:3;24513:67;24577:2;24572:3;24513:67;:::i;:::-;24506:74;;24589:93;24678:3;24589:93;:::i;:::-;24707:2;24702:3;24698:12;24691:19;;24350:366;;;:::o;24722:419::-;24888:4;24926:2;24915:9;24911:18;24903:26;;24975:9;24969:4;24965:20;24961:1;24950:9;24946:17;24939:47;25003:131;25129:4;25003:131;:::i;:::-;24995:139;;24722:419;;;:::o;25147:223::-;25287:34;25283:1;25275:6;25271:14;25264:58;25356:6;25351:2;25343:6;25339:15;25332:31;25147:223;:::o;25376:366::-;25518:3;25539:67;25603:2;25598:3;25539:67;:::i;:::-;25532:74;;25615:93;25704:3;25615:93;:::i;:::-;25733:2;25728:3;25724:12;25717:19;;25376:366;;;:::o;25748:419::-;25914:4;25952:2;25941:9;25937:18;25929:26;;26001:9;25995:4;25991:20;25987:1;25976:9;25972:17;25965:47;26029:131;26155:4;26029:131;:::i;:::-;26021:139;;25748:419;;;:::o;26173:221::-;26313:34;26309:1;26301:6;26297:14;26290:58;26382:4;26377:2;26369:6;26365:15;26358:29;26173:221;:::o;26400:366::-;26542:3;26563:67;26627:2;26622:3;26563:67;:::i;:::-;26556:74;;26639:93;26728:3;26639:93;:::i;:::-;26757:2;26752:3;26748:12;26741:19;;26400:366;;;:::o;26772:419::-;26938:4;26976:2;26965:9;26961:18;26953:26;;27025:9;27019:4;27015:20;27011:1;27000:9;26996:17;26989:47;27053:131;27179:4;27053:131;:::i;:::-;27045:139;;26772:419;;;:::o;27197:224::-;27337:34;27333:1;27325:6;27321:14;27314:58;27406:7;27401:2;27393:6;27389:15;27382:32;27197:224;:::o;27427:366::-;27569:3;27590:67;27654:2;27649:3;27590:67;:::i;:::-;27583:74;;27666:93;27755:3;27666:93;:::i;:::-;27784:2;27779:3;27775:12;27768:19;;27427:366;;;:::o;27799:419::-;27965:4;28003:2;27992:9;27988:18;27980:26;;28052:9;28046:4;28042:20;28038:1;28027:9;28023:17;28016:47;28080:131;28206:4;28080:131;:::i;:::-;28072:139;;27799:419;;;:::o;28224:222::-;28364:34;28360:1;28352:6;28348:14;28341:58;28433:5;28428:2;28420:6;28416:15;28409:30;28224:222;:::o;28452:366::-;28594:3;28615:67;28679:2;28674:3;28615:67;:::i;:::-;28608:74;;28691:93;28780:3;28691:93;:::i;:::-;28809:2;28804:3;28800:12;28793:19;;28452:366;;;:::o;28824:419::-;28990:4;29028:2;29017:9;29013:18;29005:26;;29077:9;29071:4;29067:20;29063:1;29052:9;29048:17;29041:47;29105:131;29231:4;29105:131;:::i;:::-;29097:139;;28824:419;;;:::o;29249:172::-;29389:24;29385:1;29377:6;29373:14;29366:48;29249:172;:::o;29427:366::-;29569:3;29590:67;29654:2;29649:3;29590:67;:::i;:::-;29583:74;;29666:93;29755:3;29666:93;:::i;:::-;29784:2;29779:3;29775:12;29768:19;;29427:366;;;:::o;29799:419::-;29965:4;30003:2;29992:9;29988:18;29980:26;;30052:9;30046:4;30042:20;30038:1;30027:9;30023:17;30016:47;30080:131;30206:4;30080:131;:::i;:::-;30072:139;;29799:419;;;:::o;30224:302::-;30364:34;30360:1;30352:6;30348:14;30341:58;30433:34;30428:2;30420:6;30416:15;30409:59;30502:16;30497:2;30489:6;30485:15;30478:41;30224:302;:::o;30532:366::-;30674:3;30695:67;30759:2;30754:3;30695:67;:::i;:::-;30688:74;;30771:93;30860:3;30771:93;:::i;:::-;30889:2;30884:3;30880:12;30873:19;;30532:366;;;:::o;30904:419::-;31070:4;31108:2;31097:9;31093:18;31085:26;;31157:9;31151:4;31147:20;31143:1;31132:9;31128:17;31121:47;31185:131;31311:4;31185:131;:::i;:::-;31177:139;;30904:419;;;:::o;31329:240::-;31469:34;31465:1;31457:6;31453:14;31446:58;31538:23;31533:2;31525:6;31521:15;31514:48;31329:240;:::o;31575:366::-;31717:3;31738:67;31802:2;31797:3;31738:67;:::i;:::-;31731:74;;31814:93;31903:3;31814:93;:::i;:::-;31932:2;31927:3;31923:12;31916:19;;31575:366;;;:::o;31947:419::-;32113:4;32151:2;32140:9;32136:18;32128:26;;32200:9;32194:4;32190:20;32186:1;32175:9;32171:17;32164:47;32228:131;32354:4;32228:131;:::i;:::-;32220:139;;31947:419;;;:::o;32372:169::-;32512:21;32508:1;32500:6;32496:14;32489:45;32372:169;:::o;32547:366::-;32689:3;32710:67;32774:2;32769:3;32710:67;:::i;:::-;32703:74;;32786:93;32875:3;32786:93;:::i;:::-;32904:2;32899:3;32895:12;32888:19;;32547:366;;;:::o;32919:419::-;33085:4;33123:2;33112:9;33108:18;33100:26;;33172:9;33166:4;33162:20;33158:1;33147:9;33143:17;33136:47;33200:131;33326:4;33200:131;:::i;:::-;33192:139;;32919:419;;;:::o;33344:241::-;33484:34;33480:1;33472:6;33468:14;33461:58;33553:24;33548:2;33540:6;33536:15;33529:49;33344:241;:::o;33591:366::-;33733:3;33754:67;33818:2;33813:3;33754:67;:::i;:::-;33747:74;;33830:93;33919:3;33830:93;:::i;:::-;33948:2;33943:3;33939:12;33932:19;;33591:366;;;:::o;33963:419::-;34129:4;34167:2;34156:9;34152:18;34144:26;;34216:9;34210:4;34206:20;34202:1;34191:9;34187:17;34180:47;34244:131;34370:4;34244:131;:::i;:::-;34236:139;;33963:419;;;:::o;34388:191::-;34428:4;34448:20;34466:1;34448:20;:::i;:::-;34443:25;;34482:20;34500:1;34482:20;:::i;:::-;34477:25;;34521:1;34518;34515:8;34512:34;;;34526:18;;:::i;:::-;34512:34;34571:1;34568;34564:9;34556:17;;34388:191;;;;:::o;34585:225::-;34725:34;34721:1;34713:6;34709:14;34702:58;34794:8;34789:2;34781:6;34777:15;34770:33;34585:225;:::o;34816:366::-;34958:3;34979:67;35043:2;35038:3;34979:67;:::i;:::-;34972:74;;35055:93;35144:3;35055:93;:::i;:::-;35173:2;35168:3;35164:12;35157:19;;34816:366;;;:::o;35188:419::-;35354:4;35392:2;35381:9;35377:18;35369:26;;35441:9;35435:4;35431:20;35427:1;35416:9;35412:17;35405:47;35469:131;35595:4;35469:131;:::i;:::-;35461:139;;35188:419;;;:::o;35613:147::-;35714:11;35751:3;35736:18;;35613:147;;;;:::o;35766:114::-;;:::o;35886:398::-;36045:3;36066:83;36147:1;36142:3;36066:83;:::i;:::-;36059:90;;36158:93;36247:3;36158:93;:::i;:::-;36276:1;36271:3;36267:11;36260:18;;35886:398;;;:::o;36290:379::-;36474:3;36496:147;36639:3;36496:147;:::i;:::-;36489:154;;36660:3;36653:10;;36290:379;;;:::o;36675:442::-;36824:4;36862:2;36851:9;36847:18;36839:26;;36875:71;36943:1;36932:9;36928:17;36919:6;36875:71;:::i;:::-;36956:72;37024:2;37013:9;37009:18;37000:6;36956:72;:::i;:::-;37038;37106:2;37095:9;37091:18;37082:6;37038:72;:::i;:::-;36675:442;;;;;;:::o;37123:180::-;37171:77;37168:1;37161:88;37268:4;37265:1;37258:15;37292:4;37289:1;37282:15;37309:180;37357:77;37354:1;37347:88;37454:4;37451:1;37444:15;37478:4;37475:1;37468:15;37495:143;37552:5;37583:6;37577:13;37568:22;;37599:33;37626:5;37599:33;:::i;:::-;37495:143;;;;:::o;37644:351::-;37714:6;37763:2;37751:9;37742:7;37738:23;37734:32;37731:119;;;37769:79;;:::i;:::-;37731:119;37889:1;37914:64;37970:7;37961:6;37950:9;37946:22;37914:64;:::i;:::-;37904:74;;37860:128;37644:351;;;;:::o;38001:85::-;38046:7;38075:5;38064:16;;38001:85;;;:::o;38092:158::-;38150:9;38183:61;38201:42;38210:32;38236:5;38210:32;:::i;:::-;38201:42;:::i;:::-;38183:61;:::i;:::-;38170:74;;38092:158;;;:::o;38256:147::-;38351:45;38390:5;38351:45;:::i;:::-;38346:3;38339:58;38256:147;;:::o;38409:114::-;38476:6;38510:5;38504:12;38494:22;;38409:114;;;:::o;38529:184::-;38628:11;38662:6;38657:3;38650:19;38702:4;38697:3;38693:14;38678:29;;38529:184;;;;:::o;38719:132::-;38786:4;38809:3;38801:11;;38839:4;38834:3;38830:14;38822:22;;38719:132;;;:::o;38857:108::-;38934:24;38952:5;38934:24;:::i;:::-;38929:3;38922:37;38857:108;;:::o;38971:179::-;39040:10;39061:46;39103:3;39095:6;39061:46;:::i;:::-;39139:4;39134:3;39130:14;39116:28;;38971:179;;;;:::o;39156:113::-;39226:4;39258;39253:3;39249:14;39241:22;;39156:113;;;:::o;39305:732::-;39424:3;39453:54;39501:5;39453:54;:::i;:::-;39523:86;39602:6;39597:3;39523:86;:::i;:::-;39516:93;;39633:56;39683:5;39633:56;:::i;:::-;39712:7;39743:1;39728:284;39753:6;39750:1;39747:13;39728:284;;;39829:6;39823:13;39856:63;39915:3;39900:13;39856:63;:::i;:::-;39849:70;;39942:60;39995:6;39942:60;:::i;:::-;39932:70;;39788:224;39775:1;39772;39768:9;39763:14;;39728:284;;;39732:14;40028:3;40021:10;;39429:608;;;39305:732;;;;:::o;40043:831::-;40306:4;40344:3;40333:9;40329:19;40321:27;;40358:71;40426:1;40415:9;40411:17;40402:6;40358:71;:::i;:::-;40439:80;40515:2;40504:9;40500:18;40491:6;40439:80;:::i;:::-;40566:9;40560:4;40556:20;40551:2;40540:9;40536:18;40529:48;40594:108;40697:4;40688:6;40594:108;:::i;:::-;40586:116;;40712:72;40780:2;40769:9;40765:18;40756:6;40712:72;:::i;:::-;40794:73;40862:3;40851:9;40847:19;40838:6;40794:73;:::i;:::-;40043:831;;;;;;;;:::o;40880:807::-;41129:4;41167:3;41156:9;41152:19;41144:27;;41181:71;41249:1;41238:9;41234:17;41225:6;41181:71;:::i;:::-;41262:72;41330:2;41319:9;41315:18;41306:6;41262:72;:::i;:::-;41344:80;41420:2;41409:9;41405:18;41396:6;41344:80;:::i;:::-;41434;41510:2;41499:9;41495:18;41486:6;41434:80;:::i;:::-;41524:73;41592:3;41581:9;41577:19;41568:6;41524:73;:::i;:::-;41607;41675:3;41664:9;41660:19;41651:6;41607:73;:::i;:::-;40880:807;;;;;;;;;:::o;41693:663::-;41781:6;41789;41797;41846:2;41834:9;41825:7;41821:23;41817:32;41814:119;;;41852:79;;:::i;:::-;41814:119;41972:1;41997:64;42053:7;42044:6;42033:9;42029:22;41997:64;:::i;:::-;41987:74;;41943:128;42110:2;42136:64;42192:7;42183:6;42172:9;42168:22;42136:64;:::i;:::-;42126:74;;42081:129;42249:2;42275:64;42331:7;42322:6;42311:9;42307:22;42275:64;:::i;:::-;42265:74;;42220:129;41693:663;;;;;:::o

Swarm Source

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