ETH Price: $2,992.60 (+3.81%)
Gas: 3 Gwei

Token

BritCoin (BRIT)
 

Overview

Max Total Supply

1,000,000,000 BRIT

Holders

67

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.094629801436279297 BRIT

Value
$0.00
0xa1cc352bc94caddfddaa4d095762f37b2b9bc57a
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:
BRITCOIN

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity =0.8.10 >=0.8.0 <0.9.0;

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

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

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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 IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int256 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
	}

	function logUint(uint256 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint256 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint256 p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
	}

	function log(uint256 p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
	}

	function log(uint256 p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
	}

	function log(uint256 p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
	}

	function log(string memory p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint256 p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint256 p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
	}

	function log(uint256 p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
	}

	function log(uint256 p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
	}

	function log(uint256 p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
	}

	function log(bool p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
	}

	function log(address p0, uint256 p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint256 p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint256 p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint256 p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint256 p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint256 p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}
function log(bool p0, bool p1, bool p2, bool p3, bool p4) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool,bool)", p0, p1, p2, p3,p4));
	}
}

contract BRITCOIN is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public britcoinWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;

    // enable these after minting by calling {enableTrading}
    bool public tradingActive = false;
    bool public swapEnabled = false;

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

    // blacklist
    mapping(address => bool) private blacklist; // to hold last Transfers temporarily during launch

    uint256 public buyTotalFees;
    uint256 public buyBritCoinFee;

    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellBritCoinFee;
    uint256 public sellLiquidityFee;

    uint256 public tokensForBritCoin;
    uint256 public tokensForLiquidity;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("BritCoin", "BRIT") {
        // uniswap interface
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Pair = _uniswapV2Pair;

        excludeFromMaxTransaction(address(_uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(_uniswapV2Pair), true);

        uint256 _totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 5_000_000 * 1e18; // 0.5% from total supply maxTransactionAmountTxn
        maxWallet = 10_000_000 * 1e18; // 1% from total supply maxWallet

        swapTokensAtAmount = (_totalSupply * 5) / 10000; // 0.05% swap wallet

        buyBritCoinFee = 3;
        buyLiquidityFee = 2;
        buyTotalFees = buyBritCoinFee + buyLiquidityFee;

        sellBritCoinFee = 4;
        sellLiquidityFee = 4;
        sellTotalFees = sellBritCoinFee + sellLiquidityFee;

        britcoinWallet = address(0xcd149d917Ad028A3f8803229Ea5EaC2229D37D0a);

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

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

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

    receive() external payable {}

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

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

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

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

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        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
    {
        require(updAds != address(0), "zero address");
        _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 _britcoinFee, uint256 _liquidityFee)
        external
        onlyOwner
    {
        buyBritCoinFee = _britcoinFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyBritCoinFee + buyLiquidityFee;

        require(buyTotalFees <= 20, "Must keep fees at 20% or less");
    }

    function updateSellFees(uint256 _britcoinFee, uint256 _liquidityFee)
        external
        onlyOwner
    {
        sellBritCoinFee = _britcoinFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellBritCoinFee + sellLiquidityFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% or less");
    }

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

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(pair != address(0), "zero address");
        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 updateBritCoinWallet(address newBritCoinWallet) external onlyOwner {
        require(newBritCoinWallet != address(0), "zero address");
        emit britcoinWalletUpdated(newBritCoinWallet, britcoinWallet);
        britcoinWallet = newBritCoinWallet;
    }

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

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(blacklist[from] != true, "Sender is blacklisted");
        require(blacklist[to] != true, "Receiver is blacklisted");

        // transfer 0 left
        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 2 blocks."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForBritCoin += (fees * sellBritCoinFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForBritCoin += (fees * buyBritCoinFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForBritCoin;
        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 - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

        uint256 ethForBritCoin = (ethBalance * tokensForBritCoin) / totalTokensToSwap;

        uint256 ethForLiquidity = ethBalance - ethForBritCoin;

        tokensForLiquidity = 0;
        tokensForBritCoin = 0;

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

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

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

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

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

        // calculate amount to burn
        uint256 amountToBurn = (liquidityPairBalance * percentForLPBurn) /
            10000;
        console.log("amountToBurn", amountToBurn);

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

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

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

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

        // calculate amount to burn
        uint256 amountToBurn = (liquidityPairBalance * percent) / 10000;

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

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

    // Note blacklisted can be bool, this is for gas optimization
    function setBlacklisted(address _address, bool _blacklisted)
        external
        onlyOwner
    {
        blacklist[_address] = _blacklisted;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"britcoinWalletUpdated","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":"britcoinWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBritCoinFee","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":"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBritCoinFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_blacklisted","type":"bool"}],"name":"setBlacklisted","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":"tokensForBritCoin","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newBritCoinWallet","type":"address"}],"name":"updateBritCoinWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_britcoinFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_britcoinFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600a556000600b60006101000a81548160ff021916908315150217905550610e10600c55610708600e556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506001601260006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600881526020017f42726974436f696e0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f425249540000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000af3565b5080600490805190602001906200014792919062000af3565b5050506200016a6200015e6200053a60201b60201c565b6200054260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200060860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000c0d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cc919062000c0d565b6040518363ffffffff1660e01b8152600401620002eb92919062000c50565b6020604051808303816000875af11580156200030b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000331919062000c0d565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037a8160016200060860201b60201c565b6200038d816001620006e660201b60201c565b60006b033b2e3c9fd0803ce800000090506a0422ca8b0a00a4250000006007819055506a084595161401484a000000600981905550612710600582620003d4919062000cb6565b620003e0919062000d46565b6008819055506003601581905550600260168190555060165460155462000408919062000d7e565b6014819055506004601881905550600460198190555060195460185462000430919062000d7e565b60178190555073cd149d917ad028a3f8803229ea5eac2229d37d0a600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ad6200049f6200078760201b60201c565b6001620007b160201b60201c565b620004c0306001620007b160201b60201c565b620004d561dead6001620007b160201b60201c565b620004f7620004e96200078760201b60201c565b60016200060860201b60201c565b6200050a3060016200060860201b60201c565b6200051f61dead60016200060860201b60201c565b620005313382620008df60201b60201c565b5050506200100f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200061862000a5860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200068b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006829062000e3c565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007c162000a5860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000834576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200082b9062000e3c565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008d3919062000e7b565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000952576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009499062000ee8565b60405180910390fd5b620009666000838362000ae960201b60201c565b80600260008282546200097a919062000d7e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620009d1919062000d7e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a38919062000f1b565b60405180910390a362000a546000838362000aee60201b60201c565b5050565b62000a686200053a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a8e6200078760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ae7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ade9062000f88565b60405180910390fd5b565b505050565b505050565b82805462000b019062000fd9565b90600052602060002090601f01602090048101928262000b25576000855562000b71565b82601f1062000b4057805160ff191683800117855562000b71565b8280016001018555821562000b71579182015b8281111562000b7057825182559160200191906001019062000b53565b5b50905062000b80919062000b84565b5090565b5b8082111562000b9f57600081600090555060010162000b85565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bd58262000ba8565b9050919050565b62000be78162000bc8565b811462000bf357600080fd5b50565b60008151905062000c078162000bdc565b92915050565b60006020828403121562000c265762000c2562000ba3565b5b600062000c368482850162000bf6565b91505092915050565b62000c4a8162000bc8565b82525050565b600060408201905062000c67600083018562000c3f565b62000c76602083018462000c3f565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cc38262000c7d565b915062000cd08362000c7d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d0c5762000d0b62000c87565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d538262000c7d565b915062000d608362000c7d565b92508262000d735762000d7262000d17565b5b828204905092915050565b600062000d8b8262000c7d565b915062000d988362000c7d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dd05762000dcf62000c87565b5b828201905092915050565b600082825260208201905092915050565b7f7a65726f20616464726573730000000000000000000000000000000000000000600082015250565b600062000e24600c8362000ddb565b915062000e318262000dec565b602082019050919050565b6000602082019050818103600083015262000e578162000e15565b9050919050565b60008115159050919050565b62000e758162000e5e565b82525050565b600060208201905062000e92600083018462000e6a565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ed0601f8362000ddb565b915062000edd8262000e98565b602082019050919050565b6000602082019050818103600083015262000f038162000ec1565b9050919050565b62000f158162000c7d565b82525050565b600060208201905062000f32600083018462000f0a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f7060208362000ddb565b915062000f7d8262000f38565b602082019050919050565b6000602082019050818103600083015262000fa38162000f61565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ff257607f821691505b6020821081141562001009576200100862000faa565b5b50919050565b60805160a05161553062001097600039600081816110a30152818161158b01528181611d9801528181611e4101528181611e6e015281816126e4015281816136500152818161373a0152613767015260008181610f340152818161268c015281816138c7015281816139a8015281816139cf01528181613a6b0152613a9201526155306000f3fe6080604052600436106103855760003560e01c80638a8c523c116101d1578063c8c8ebe411610102578063e8959dfc116100a0578063f2fde38b1161006f578063f2fde38b14610d2b578063f637434214610d54578063f8b45b0514610d7f578063fe72b27a14610daa5761038c565b8063e8959dfc14610c81578063ee277b3314610cac578063ef9f213e14610cd7578063f11a24d314610d005761038c565b8063d85ba063116100dc578063d85ba06314610bc3578063dd62ed3e14610bee578063e2f4560514610c2b578063e884f26014610c565761038c565b8063c8c8ebe414610b32578063d01dd6d214610b5d578063d257b34f14610b865761038c565b8063a4c82a001161016f578063bbc0c74211610149578063bbc0c74214610a8a578063c024666814610ab5578063c18bc19514610ade578063c876d0b914610b075761038c565b8063a4c82a00146109e5578063a9059cbb14610a10578063b62496f514610a4d5761038c565b806395d89b41116101ab57806395d89b41146109295780639a7a23d6146109545780639ec22c0e1461097d578063a457c2d7146109a85761038c565b80638a8c523c146108be5780638da5cb5b146108d5578063924de9b7146109005761038c565b8063313ce567116102b657806366ca9b8311610254578063715018a611610223578063715018a61461082a578063730c188814610841578063751039fc1461086a5780637571336a146108955761038c565b806366ca9b831461076e5780636a486a8e146107975780636ddd1713146107c257806370a08231146107ed5761038c565b806349bd5a5e1161029057806349bd5a5e146106b05780634a62bb65146106db5780634fbee1931461070657806354926afd146107435761038c565b8063313ce5671461061d57806339509351146106485780633d5f790d146106855761038c565b8063199ffc721161032357806323b872dd116102fd57806323b872dd1461055f57806327c8f8351461059c5780632c3e486c146105c75780632e82f1a0146105f25761038c565b8063199ffc72146104e05780631a8145bb1461050b578063203e727e146105365761038c565b806310d5de531161035f57806310d5de53146104225780631694505e1461045f57806318160ddd1461048a578063184c16c5146104b55761038c565b806302dbd8f81461039157806306fdde03146103ba578063095ea7b3146103e55761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103b860048036038101906103b39190613c41565b610de7565b005b3480156103c657600080fd5b506103cf610e5d565b6040516103dc9190613d1a565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613d9a565b610eef565b6040516104199190613df5565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613e10565b610f12565b6040516104569190613df5565b60405180910390f35b34801561046b57600080fd5b50610474610f32565b6040516104819190613e9c565b60405180910390f35b34801561049657600080fd5b5061049f610f56565b6040516104ac9190613ec6565b60405180910390f35b3480156104c157600080fd5b506104ca610f60565b6040516104d79190613ec6565b60405180910390f35b3480156104ec57600080fd5b506104f5610f66565b6040516105029190613ec6565b60405180910390f35b34801561051757600080fd5b50610520610f6c565b60405161052d9190613ec6565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613ee1565b610f72565b005b34801561056b57600080fd5b5061058660048036038101906105819190613f0e565b61100d565b6040516105939190613df5565b60405180910390f35b3480156105a857600080fd5b506105b161103c565b6040516105be9190613f70565b60405180910390f35b3480156105d357600080fd5b506105dc611042565b6040516105e99190613ec6565b60405180910390f35b3480156105fe57600080fd5b50610607611048565b6040516106149190613df5565b60405180910390f35b34801561062957600080fd5b5061063261105b565b60405161063f9190613fa7565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613d9a565b611064565b60405161067c9190613df5565b60405180910390f35b34801561069157600080fd5b5061069a61109b565b6040516106a79190613ec6565b60405180910390f35b3480156106bc57600080fd5b506106c56110a1565b6040516106d29190613f70565b60405180910390f35b3480156106e757600080fd5b506106f06110c5565b6040516106fd9190613df5565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190613e10565b6110d8565b60405161073a9190613df5565b60405180910390f35b34801561074f57600080fd5b5061075861112e565b6040516107659190613ec6565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613c41565b611134565b005b3480156107a357600080fd5b506107ac6111a9565b6040516107b99190613ec6565b60405180910390f35b3480156107ce57600080fd5b506107d76111af565b6040516107e49190613df5565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613e10565b6111c2565b6040516108219190613ec6565b60405180910390f35b34801561083657600080fd5b5061083f61120a565b005b34801561084d57600080fd5b5061086860048036038101906108639190613fee565b61121e565b005b34801561087657600080fd5b5061087f6112ea565b60405161088c9190613df5565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b79190614041565b611316565b005b3480156108ca57600080fd5b506108d36113e9565b005b3480156108e157600080fd5b506108ea611430565b6040516108f79190613f70565b60405180910390f35b34801561090c57600080fd5b5061092760048036038101906109229190614081565b61145a565b005b34801561093557600080fd5b5061093e61147f565b60405161094b9190613d1a565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190614041565b611511565b005b34801561098957600080fd5b50610992611626565b60405161099f9190613ec6565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190613d9a565b61162c565b6040516109dc9190613df5565b60405180910390f35b3480156109f157600080fd5b506109fa6116a3565b604051610a079190613ec6565b60405180910390f35b348015610a1c57600080fd5b50610a376004803603810190610a329190613d9a565b6116a9565b604051610a449190613df5565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f9190613e10565b6116cc565b604051610a819190613df5565b60405180910390f35b348015610a9657600080fd5b50610a9f6116ec565b604051610aac9190613df5565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190614041565b6116ff565b005b348015610aea57600080fd5b50610b056004803603810190610b009190613ee1565b611820565b005b348015610b1357600080fd5b50610b1c6118bb565b604051610b299190613df5565b60405180910390f35b348015610b3e57600080fd5b50610b476118ce565b604051610b549190613ec6565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f9190614041565b6118d4565b005b348015610b9257600080fd5b50610bad6004803603810190610ba89190613ee1565b611937565b604051610bba9190613df5565b60405180910390f35b348015610bcf57600080fd5b50610bd8611a18565b604051610be59190613ec6565b60405180910390f35b348015610bfa57600080fd5b50610c156004803603810190610c1091906140ae565b611a1e565b604051610c229190613ec6565b60405180910390f35b348015610c3757600080fd5b50610c40611aa5565b604051610c4d9190613ec6565b60405180910390f35b348015610c6257600080fd5b50610c6b611aab565b604051610c789190613df5565b60405180910390f35b348015610c8d57600080fd5b50610c96611ad7565b604051610ca39190613f70565b60405180910390f35b348015610cb857600080fd5b50610cc1611afd565b604051610cce9190613ec6565b60405180910390f35b348015610ce357600080fd5b50610cfe6004803603810190610cf99190613e10565b611b03565b005b348015610d0c57600080fd5b50610d15611c3b565b604051610d229190613ec6565b60405180910390f35b348015610d3757600080fd5b50610d526004803603810190610d4d9190613e10565b611c41565b005b348015610d6057600080fd5b50610d69611cc5565b604051610d769190613ec6565b60405180910390f35b348015610d8b57600080fd5b50610d94611ccb565b604051610da19190613ec6565b60405180910390f35b348015610db657600080fd5b50610dd16004803603810190610dcc9190613ee1565b611cd1565b604051610dde9190613df5565b60405180910390f35b610def611f27565b8160188190555080601981905550601954601854610e0d919061411d565b60178190555060196017541115610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906141bf565b60405180910390fd5b5050565b606060038054610e6c9061420e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e989061420e565b8015610ee55780601f10610eba57610100808354040283529160200191610ee5565b820191906000526020600020905b815481529060010190602001808311610ec857829003601f168201915b5050505050905090565b600080610efa611fa5565b9050610f07818585611fad565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600e5481565b600a5481565b601b5481565b610f7a611f27565b670de0b6b3a76400006103e86001610f90610f56565b610f9a9190614240565b610fa491906142c9565b610fae91906142c9565b811015610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061436c565b60405180910390fd5b670de0b6b3a7640000816110049190614240565b60078190555050565b600080611018611fa5565b9050611025858285612178565b611030858585612204565b60019150509392505050565b61dead81565b600c5481565b600b60009054906101000a900460ff1681565b60006012905090565b60008061106f611fa5565b90506110908185856110818589611a1e565b61108b919061411d565b611fad565b600191505092915050565b60185481565b7f000000000000000000000000000000000000000000000000000000000000000081565b601060009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601a5481565b61113c611f27565b816015819055508060168190555060165460155461115a919061411d565b6014819055506014805411156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c906143d8565b60405180910390fd5b5050565b60175481565b601060029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611212611f27565b61121c600061304e565b565b611226611f27565b61025883101561126b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112629061446a565b60405180910390fd5b6103e8821115801561127e575060008210155b6112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b4906144fc565b60405180910390fd5b82600c8190555081600a8190555080600b60006101000a81548160ff021916908315150217905550505050565b60006112f4611f27565b6000601060006101000a81548160ff0219169083151502179055506001905090565b61131e611f27565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590614568565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6113f1611f27565b6001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555042600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611462611f27565b80601060026101000a81548160ff02191690831515021790555050565b60606004805461148e9061420e565b80601f01602080910402602001604051908101604052809291908181526020018280546114ba9061420e565b80156115075780601f106114dc57610100808354040283529160200191611507565b820191906000526020600020905b8154815290600101906020018083116114ea57829003601f168201915b5050505050905090565b611519611f27565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614568565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906145fa565b60405180910390fd5b6116228282613114565b5050565b600f5481565b600080611637611fa5565b905060006116458286611a1e565b90508381101561168a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116819061468c565b60405180910390fd5b6116978286868403611fad565b60019250505092915050565b600d5481565b6000806116b4611fa5565b90506116c1818585612204565b600191505092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b601060019054906101000a900460ff1681565b611707611f27565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614568565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118149190613df5565b60405180910390a25050565b611828611f27565b670de0b6b3a76400006103e8600561183e610f56565b6118489190614240565b61185291906142c9565b61185c91906142c9565b81101561189e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118959061471e565b60405180910390fd5b670de0b6b3a7640000816118b29190614240565b60098190555050565b601260009054906101000a900460ff1681565b60075481565b6118dc611f27565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611941611f27565b620186a0600161194f610f56565b6119599190614240565b61196391906142c9565b8210156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906147b0565b60405180910390fd5b6103e860056119b2610f56565b6119bc9190614240565b6119c691906142c9565b821115611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90614842565b60405180910390fd5b8160088190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6000611ab5611f27565b6000601260006101000a81548160ff0219169083151502179055506001905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611b0b611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290614568565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7ba4e07d822eb6515c522cca43ba8f44152dce17949972a804564a4464abedb460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b611c49611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb0906148d4565b60405180910390fd5b611cc28161304e565b50565b60195481565b60095481565b6000611cdb611f27565b600e54600f54611ceb919061411d565b4211611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390614940565b60405180910390fd5b6103e8821115611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d68906149d2565b60405180910390fd5b42600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401611dd39190613f70565b602060405180830381865afa158015611df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e149190614a07565b905060006127108483611e279190614240565b611e3191906142c9565b90506000811115611e6a57611e697f000000000000000000000000000000000000000000000000000000000000000061dead836131b5565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ed757600080fd5b505af1158015611eeb573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b611f2f611fa5565b73ffffffffffffffffffffffffffffffffffffffff16611f4d611430565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614a80565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614b12565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490614ba4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161216b9190613ec6565b60405180910390a3505050565b60006121848484611a1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121fe57818110156121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790614c10565b60405180910390fd5b6121fd8484848403611fad565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614d34565b60405180910390fd5b60011515601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236f90614da0565b60405180910390fd5b60011515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614e0c565b60405180910390fd5b600081141561242657612421838360006131b5565b613049565b601060009054906101000a900460ff1615612af557612443611430565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124b15750612481611430565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ea5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612524575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253d5750600560149054906101000a900460ff16155b15612af457601060019054906101000a900460ff1661263757601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125f75750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262d90614e78565b60405180910390fd5b5b601260009054906101000a900460ff161561280b57612654611430565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126db57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561273357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561280a57436001601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612785919061411d565b106127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc90614f30565b60405180910390fd5b43601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128ae5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612955576007548111156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90614fc2565b60405180910390fd5b600954612904836111c2565b8261290f919061411d565b1115612950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129479061502e565b60405180910390fd5b612af3565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f85750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4757600754811115612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a39906150c0565b60405180910390fd5b612af2565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af157600954612aa4836111c2565b82612aaf919061411d565b1115612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae79061502e565b60405180910390fd5b5b5b5b5b5b6000612b00306111c2565b905060006008548210159050808015612b255750601060029054906101000a900460ff165b8015612b3e5750600560149054906101000a900460ff16155b8015612b945750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bea5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c405750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c84576001600560146101000a81548160ff021916908315150217905550612c68613436565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612cea5750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612d025750600b60009054906101000a900460ff165b8015612d1d5750600c54600d54612d19919061411d565b4210155b8015612d735750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8257612d80613627565b505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e385750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e4257600090505b6000811561303957601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ea557506000601754115b15612f3157606460175486612eba9190614240565b612ec491906142c9565b905060175460195482612ed79190614240565b612ee191906142c9565b601b6000828254612ef2919061411d565b9250508190555060175460185482612f0a9190614240565b612f1491906142c9565b601a6000828254612f25919061411d565b92505081905550613015565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f8c57506000601454115b1561301457606460145486612fa19190614240565b612fab91906142c9565b905060145460165482612fbe9190614240565b612fc891906142c9565b601b6000828254612fd9919061411d565b9250508190555060145460155482612ff19190614240565b612ffb91906142c9565b601a600082825461300c919061411d565b925050819055505b5b600081111561302a576130298730836131b5565b5b808561303691906150e0565b94505b6130448787876131b5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321c90614ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c90614d34565b60405180910390fd5b6132a083838361381e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331d90615186565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133b9919061411d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161341d9190613ec6565b60405180910390a3613430848484613823565b50505050565b6000613441306111c2565b90506000601a54601b54613455919061411d565b90506000808314806134675750600082145b1561347457505050613625565b60146008546134839190614240565b83111561349c5760146008546134999190614240565b92505b6000600283601b54866134af9190614240565b6134b991906142c9565b6134c391906142c9565b9050600081856134d391906150e0565b905060004790506134e382613828565b600081476134f191906150e0565b9050600086601a54836135049190614240565b61350e91906142c9565b90506000818361351e91906150e0565b90506000601b819055506000601a819055506000861180156135405750600081115b1561358d5761354f8682613a65565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601b54604051613584939291906151a6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135d39061520e565b60006040518083038185875af1925050503d8060008114613610576040519150601f19603f3d011682016040523d82523d6000602084013e613615565b606091505b5050809750505050505050505050505b565b600042600d8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161368b9190613f70565b602060405180830381865afa1580156136a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136cc9190614a07565b90506000612710600a54836136e19190614240565b6136eb91906142c9565b905061372c6040518060400160405280600c81526020017f616d6f756e74546f4275726e000000000000000000000000000000000000000081525082613b41565b6000811115613763576137627f000000000000000000000000000000000000000000000000000000000000000061dead836131b5565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137d057600080fd5b505af11580156137e4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000600267ffffffffffffffff81111561384557613844615223565b5b6040519080825280602002602001820160405280156138735781602001602082028036833780820191505090505b509050308160008151811061388b5761388a615252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613930573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139549190615296565b8160018151811061396857613967615252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139cd307f000000000000000000000000000000000000000000000000000000000000000084611fad565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a2f9594939291906153bc565b600060405180830381600087803b158015613a4957600080fd5b505af1158015613a5d573d6000803e3d6000fd5b505050505050565b613a90307f000000000000000000000000000000000000000000000000000000000000000084611fad565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613af796959493929190615416565b60606040518083038185885af1158015613b15573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b3a9190615477565b5050505050565b613bd98282604051602401613b579291906154ca565b6040516020818303038152906040527fb60e72cc000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bdd565b5050565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600080fd5b6000819050919050565b613c1e81613c0b565b8114613c2957600080fd5b50565b600081359050613c3b81613c15565b92915050565b60008060408385031215613c5857613c57613c06565b5b6000613c6685828601613c2c565b9250506020613c7785828601613c2c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cbb578082015181840152602081019050613ca0565b83811115613cca576000848401525b50505050565b6000601f19601f8301169050919050565b6000613cec82613c81565b613cf68185613c8c565b9350613d06818560208601613c9d565b613d0f81613cd0565b840191505092915050565b60006020820190508181036000830152613d348184613ce1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d6782613d3c565b9050919050565b613d7781613d5c565b8114613d8257600080fd5b50565b600081359050613d9481613d6e565b92915050565b60008060408385031215613db157613db0613c06565b5b6000613dbf85828601613d85565b9250506020613dd085828601613c2c565b9150509250929050565b60008115159050919050565b613def81613dda565b82525050565b6000602082019050613e0a6000830184613de6565b92915050565b600060208284031215613e2657613e25613c06565b5b6000613e3484828501613d85565b91505092915050565b6000819050919050565b6000613e62613e5d613e5884613d3c565b613e3d565b613d3c565b9050919050565b6000613e7482613e47565b9050919050565b6000613e8682613e69565b9050919050565b613e9681613e7b565b82525050565b6000602082019050613eb16000830184613e8d565b92915050565b613ec081613c0b565b82525050565b6000602082019050613edb6000830184613eb7565b92915050565b600060208284031215613ef757613ef6613c06565b5b6000613f0584828501613c2c565b91505092915050565b600080600060608486031215613f2757613f26613c06565b5b6000613f3586828701613d85565b9350506020613f4686828701613d85565b9250506040613f5786828701613c2c565b9150509250925092565b613f6a81613d5c565b82525050565b6000602082019050613f856000830184613f61565b92915050565b600060ff82169050919050565b613fa181613f8b565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b613fcb81613dda565b8114613fd657600080fd5b50565b600081359050613fe881613fc2565b92915050565b60008060006060848603121561400757614006613c06565b5b600061401586828701613c2c565b935050602061402686828701613c2c565b925050604061403786828701613fd9565b9150509250925092565b6000806040838503121561405857614057613c06565b5b600061406685828601613d85565b925050602061407785828601613fd9565b9150509250929050565b60006020828403121561409757614096613c06565b5b60006140a584828501613fd9565b91505092915050565b600080604083850312156140c5576140c4613c06565b5b60006140d385828601613d85565b92505060206140e485828601613d85565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412882613c0b565b915061413383613c0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614168576141676140ee565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006141a9601d83613c8c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061422657607f821691505b6020821081141561423a576142396141df565b5b50919050565b600061424b82613c0b565b915061425683613c0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428f5761428e6140ee565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142d482613c0b565b91506142df83613c0b565b9250826142ef576142ee61429a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614356602f83613c8c565b9150614361826142fa565b604082019050919050565b6000602082019050818103600083015261438581614349565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006143c2601d83613c8c565b91506143cd8261438c565b602082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614454603383613c8c565b915061445f826143f8565b604082019050919050565b6000602082019050818103600083015261448381614447565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006144e6603083613c8c565b91506144f18261448a565b604082019050919050565b60006020820190508181036000830152614515816144d9565b9050919050565b7f7a65726f20616464726573730000000000000000000000000000000000000000600082015250565b6000614552600c83613c8c565b915061455d8261451c565b602082019050919050565b6000602082019050818103600083015261458181614545565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145e4603983613c8c565b91506145ef82614588565b604082019050919050565b60006020820190508181036000830152614613816145d7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614676602583613c8c565b91506146818261461a565b604082019050919050565b600060208201905081810360008301526146a581614669565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614708602483613c8c565b9150614713826146ac565b604082019050919050565b60006020820190508181036000830152614737816146fb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061479a603583613c8c565b91506147a58261473e565b604082019050919050565b600060208201905081810360008301526147c98161478d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061482c603483613c8c565b9150614837826147d0565b604082019050919050565b6000602082019050818103600083015261485b8161481f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148be602683613c8c565b91506148c982614862565b604082019050919050565b600060208201905081810360008301526148ed816148b1565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061492a602083613c8c565b9150614935826148f4565b602082019050919050565b600060208201905081810360008301526149598161491d565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006149bc602a83613c8c565b91506149c782614960565b604082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b600081519050614a0181613c15565b92915050565b600060208284031215614a1d57614a1c613c06565b5b6000614a2b848285016149f2565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a6a602083613c8c565b9150614a7582614a34565b602082019050919050565b60006020820190508181036000830152614a9981614a5d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614afc602483613c8c565b9150614b0782614aa0565b604082019050919050565b60006020820190508181036000830152614b2b81614aef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b8e602283613c8c565b9150614b9982614b32565b604082019050919050565b60006020820190508181036000830152614bbd81614b81565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614bfa601d83613c8c565b9150614c0582614bc4565b602082019050919050565b60006020820190508181036000830152614c2981614bed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c8c602583613c8c565b9150614c9782614c30565b604082019050919050565b60006020820190508181036000830152614cbb81614c7f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d1e602383613c8c565b9150614d2982614cc2565b604082019050919050565b60006020820190508181036000830152614d4d81614d11565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000614d8a601583613c8c565b9150614d9582614d54565b602082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f526563656976657220697320626c61636b6c6973746564000000000000000000600082015250565b6000614df6601783613c8c565b9150614e0182614dc0565b602082019050919050565b60006020820190508181036000830152614e2581614de9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e62601683613c8c565b9150614e6d82614e2c565b602082019050919050565b60006020820190508181036000830152614e9181614e55565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e6520707572636861736520706572203220626c6f60208201527f636b732e00000000000000000000000000000000000000000000000000000000604082015250565b6000614f1a604483613c8c565b9150614f2582614e98565b606082019050919050565b60006020820190508181036000830152614f4981614f0d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fac603583613c8c565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615018601383613c8c565b915061502382614fe2565b602082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150aa603683613c8c565b91506150b58261504e565b604082019050919050565b600060208201905081810360008301526150d98161509d565b9050919050565b60006150eb82613c0b565b91506150f683613c0b565b925082821015615109576151086140ee565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615170602683613c8c565b915061517b82615114565b604082019050919050565b6000602082019050818103600083015261519f81615163565b9050919050565b60006060820190506151bb6000830186613eb7565b6151c86020830185613eb7565b6151d56040830184613eb7565b949350505050565b600081905092915050565b50565b60006151f86000836151dd565b9150615203826151e8565b600082019050919050565b6000615219826151eb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061529081613d6e565b92915050565b6000602082840312156152ac576152ab613c06565b5b60006152ba84828501615281565b91505092915050565b6000819050919050565b60006152e86152e36152de846152c3565b613e3d565b613c0b565b9050919050565b6152f8816152cd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61533381613d5c565b82525050565b6000615345838361532a565b60208301905092915050565b6000602082019050919050565b6000615369826152fe565b6153738185615309565b935061537e8361531a565b8060005b838110156153af5781516153968882615339565b97506153a183615351565b925050600181019050615382565b5085935050505092915050565b600060a0820190506153d16000830188613eb7565b6153de60208301876152ef565b81810360408301526153f0818661535e565b90506153ff6060830185613f61565b61540c6080830184613eb7565b9695505050505050565b600060c08201905061542b6000830189613f61565b6154386020830188613eb7565b61544560408301876152ef565b61545260608301866152ef565b61545f6080830185613f61565b61546c60a0830184613eb7565b979650505050505050565b6000806000606084860312156154905761548f613c06565b5b600061549e868287016149f2565b93505060206154af868287016149f2565b92505060406154c0868287016149f2565b9150509250925092565b600060408201905081810360008301526154e48185613ce1565b90506154f36020830184613eb7565b939250505056fea264697066735822122036a5768dad87ab87ef95d5df62dd2197a27118086dfb2fb90b0f3197b26d0a9664736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103855760003560e01c80638a8c523c116101d1578063c8c8ebe411610102578063e8959dfc116100a0578063f2fde38b1161006f578063f2fde38b14610d2b578063f637434214610d54578063f8b45b0514610d7f578063fe72b27a14610daa5761038c565b8063e8959dfc14610c81578063ee277b3314610cac578063ef9f213e14610cd7578063f11a24d314610d005761038c565b8063d85ba063116100dc578063d85ba06314610bc3578063dd62ed3e14610bee578063e2f4560514610c2b578063e884f26014610c565761038c565b8063c8c8ebe414610b32578063d01dd6d214610b5d578063d257b34f14610b865761038c565b8063a4c82a001161016f578063bbc0c74211610149578063bbc0c74214610a8a578063c024666814610ab5578063c18bc19514610ade578063c876d0b914610b075761038c565b8063a4c82a00146109e5578063a9059cbb14610a10578063b62496f514610a4d5761038c565b806395d89b41116101ab57806395d89b41146109295780639a7a23d6146109545780639ec22c0e1461097d578063a457c2d7146109a85761038c565b80638a8c523c146108be5780638da5cb5b146108d5578063924de9b7146109005761038c565b8063313ce567116102b657806366ca9b8311610254578063715018a611610223578063715018a61461082a578063730c188814610841578063751039fc1461086a5780637571336a146108955761038c565b806366ca9b831461076e5780636a486a8e146107975780636ddd1713146107c257806370a08231146107ed5761038c565b806349bd5a5e1161029057806349bd5a5e146106b05780634a62bb65146106db5780634fbee1931461070657806354926afd146107435761038c565b8063313ce5671461061d57806339509351146106485780633d5f790d146106855761038c565b8063199ffc721161032357806323b872dd116102fd57806323b872dd1461055f57806327c8f8351461059c5780632c3e486c146105c75780632e82f1a0146105f25761038c565b8063199ffc72146104e05780631a8145bb1461050b578063203e727e146105365761038c565b806310d5de531161035f57806310d5de53146104225780631694505e1461045f57806318160ddd1461048a578063184c16c5146104b55761038c565b806302dbd8f81461039157806306fdde03146103ba578063095ea7b3146103e55761038c565b3661038c57005b600080fd5b34801561039d57600080fd5b506103b860048036038101906103b39190613c41565b610de7565b005b3480156103c657600080fd5b506103cf610e5d565b6040516103dc9190613d1a565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190613d9a565b610eef565b6040516104199190613df5565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613e10565b610f12565b6040516104569190613df5565b60405180910390f35b34801561046b57600080fd5b50610474610f32565b6040516104819190613e9c565b60405180910390f35b34801561049657600080fd5b5061049f610f56565b6040516104ac9190613ec6565b60405180910390f35b3480156104c157600080fd5b506104ca610f60565b6040516104d79190613ec6565b60405180910390f35b3480156104ec57600080fd5b506104f5610f66565b6040516105029190613ec6565b60405180910390f35b34801561051757600080fd5b50610520610f6c565b60405161052d9190613ec6565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613ee1565b610f72565b005b34801561056b57600080fd5b5061058660048036038101906105819190613f0e565b61100d565b6040516105939190613df5565b60405180910390f35b3480156105a857600080fd5b506105b161103c565b6040516105be9190613f70565b60405180910390f35b3480156105d357600080fd5b506105dc611042565b6040516105e99190613ec6565b60405180910390f35b3480156105fe57600080fd5b50610607611048565b6040516106149190613df5565b60405180910390f35b34801561062957600080fd5b5061063261105b565b60405161063f9190613fa7565b60405180910390f35b34801561065457600080fd5b5061066f600480360381019061066a9190613d9a565b611064565b60405161067c9190613df5565b60405180910390f35b34801561069157600080fd5b5061069a61109b565b6040516106a79190613ec6565b60405180910390f35b3480156106bc57600080fd5b506106c56110a1565b6040516106d29190613f70565b60405180910390f35b3480156106e757600080fd5b506106f06110c5565b6040516106fd9190613df5565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190613e10565b6110d8565b60405161073a9190613df5565b60405180910390f35b34801561074f57600080fd5b5061075861112e565b6040516107659190613ec6565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613c41565b611134565b005b3480156107a357600080fd5b506107ac6111a9565b6040516107b99190613ec6565b60405180910390f35b3480156107ce57600080fd5b506107d76111af565b6040516107e49190613df5565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613e10565b6111c2565b6040516108219190613ec6565b60405180910390f35b34801561083657600080fd5b5061083f61120a565b005b34801561084d57600080fd5b5061086860048036038101906108639190613fee565b61121e565b005b34801561087657600080fd5b5061087f6112ea565b60405161088c9190613df5565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b79190614041565b611316565b005b3480156108ca57600080fd5b506108d36113e9565b005b3480156108e157600080fd5b506108ea611430565b6040516108f79190613f70565b60405180910390f35b34801561090c57600080fd5b5061092760048036038101906109229190614081565b61145a565b005b34801561093557600080fd5b5061093e61147f565b60405161094b9190613d1a565b60405180910390f35b34801561096057600080fd5b5061097b60048036038101906109769190614041565b611511565b005b34801561098957600080fd5b50610992611626565b60405161099f9190613ec6565b60405180910390f35b3480156109b457600080fd5b506109cf60048036038101906109ca9190613d9a565b61162c565b6040516109dc9190613df5565b60405180910390f35b3480156109f157600080fd5b506109fa6116a3565b604051610a079190613ec6565b60405180910390f35b348015610a1c57600080fd5b50610a376004803603810190610a329190613d9a565b6116a9565b604051610a449190613df5565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f9190613e10565b6116cc565b604051610a819190613df5565b60405180910390f35b348015610a9657600080fd5b50610a9f6116ec565b604051610aac9190613df5565b60405180910390f35b348015610ac157600080fd5b50610adc6004803603810190610ad79190614041565b6116ff565b005b348015610aea57600080fd5b50610b056004803603810190610b009190613ee1565b611820565b005b348015610b1357600080fd5b50610b1c6118bb565b604051610b299190613df5565b60405180910390f35b348015610b3e57600080fd5b50610b476118ce565b604051610b549190613ec6565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f9190614041565b6118d4565b005b348015610b9257600080fd5b50610bad6004803603810190610ba89190613ee1565b611937565b604051610bba9190613df5565b60405180910390f35b348015610bcf57600080fd5b50610bd8611a18565b604051610be59190613ec6565b60405180910390f35b348015610bfa57600080fd5b50610c156004803603810190610c1091906140ae565b611a1e565b604051610c229190613ec6565b60405180910390f35b348015610c3757600080fd5b50610c40611aa5565b604051610c4d9190613ec6565b60405180910390f35b348015610c6257600080fd5b50610c6b611aab565b604051610c789190613df5565b60405180910390f35b348015610c8d57600080fd5b50610c96611ad7565b604051610ca39190613f70565b60405180910390f35b348015610cb857600080fd5b50610cc1611afd565b604051610cce9190613ec6565b60405180910390f35b348015610ce357600080fd5b50610cfe6004803603810190610cf99190613e10565b611b03565b005b348015610d0c57600080fd5b50610d15611c3b565b604051610d229190613ec6565b60405180910390f35b348015610d3757600080fd5b50610d526004803603810190610d4d9190613e10565b611c41565b005b348015610d6057600080fd5b50610d69611cc5565b604051610d769190613ec6565b60405180910390f35b348015610d8b57600080fd5b50610d94611ccb565b604051610da19190613ec6565b60405180910390f35b348015610db657600080fd5b50610dd16004803603810190610dcc9190613ee1565b611cd1565b604051610dde9190613df5565b60405180910390f35b610def611f27565b8160188190555080601981905550601954601854610e0d919061411d565b60178190555060196017541115610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906141bf565b60405180910390fd5b5050565b606060038054610e6c9061420e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e989061420e565b8015610ee55780601f10610eba57610100808354040283529160200191610ee5565b820191906000526020600020905b815481529060010190602001808311610ec857829003601f168201915b5050505050905090565b600080610efa611fa5565b9050610f07818585611fad565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600e5481565b600a5481565b601b5481565b610f7a611f27565b670de0b6b3a76400006103e86001610f90610f56565b610f9a9190614240565b610fa491906142c9565b610fae91906142c9565b811015610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061436c565b60405180910390fd5b670de0b6b3a7640000816110049190614240565b60078190555050565b600080611018611fa5565b9050611025858285612178565b611030858585612204565b60019150509392505050565b61dead81565b600c5481565b600b60009054906101000a900460ff1681565b60006012905090565b60008061106f611fa5565b90506110908185856110818589611a1e565b61108b919061411d565b611fad565b600191505092915050565b60185481565b7f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd281565b601060009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b601a5481565b61113c611f27565b816015819055508060168190555060165460155461115a919061411d565b6014819055506014805411156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c906143d8565b60405180910390fd5b5050565b60175481565b601060029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611212611f27565b61121c600061304e565b565b611226611f27565b61025883101561126b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112629061446a565b60405180910390fd5b6103e8821115801561127e575060008210155b6112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b4906144fc565b60405180910390fd5b82600c8190555081600a8190555080600b60006101000a81548160ff021916908315150217905550505050565b60006112f4611f27565b6000601060006101000a81548160ff0219169083151502179055506001905090565b61131e611f27565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561138e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138590614568565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6113f1611f27565b6001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff02191690831515021790555042600d81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611462611f27565b80601060026101000a81548160ff02191690831515021790555050565b60606004805461148e9061420e565b80601f01602080910402602001604051908101604052809291908181526020018280546114ba9061420e565b80156115075780601f106114dc57610100808354040283529160200191611507565b820191906000526020600020905b8154815290600101906020018083116114ea57829003601f168201915b5050505050905090565b611519611f27565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158090614568565b60405180910390fd5b7f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906145fa565b60405180910390fd5b6116228282613114565b5050565b600f5481565b600080611637611fa5565b905060006116458286611a1e565b90508381101561168a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116819061468c565b60405180910390fd5b6116978286868403611fad565b60019250505092915050565b600d5481565b6000806116b4611fa5565b90506116c1818585612204565b600191505092915050565b601e6020528060005260406000206000915054906101000a900460ff1681565b601060019054906101000a900460ff1681565b611707611f27565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90614568565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118149190613df5565b60405180910390a25050565b611828611f27565b670de0b6b3a76400006103e8600561183e610f56565b6118489190614240565b61185291906142c9565b61185c91906142c9565b81101561189e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118959061471e565b60405180910390fd5b670de0b6b3a7640000816118b29190614240565b60098190555050565b601260009054906101000a900460ff1681565b60075481565b6118dc611f27565b80601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000611941611f27565b620186a0600161194f610f56565b6119599190614240565b61196391906142c9565b8210156119a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199c906147b0565b60405180910390fd5b6103e860056119b2610f56565b6119bc9190614240565b6119c691906142c9565b821115611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ff90614842565b60405180910390fd5b8160088190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6000611ab5611f27565b6000601260006101000a81548160ff0219169083151502179055506001905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b611b0b611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7290614568565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f7ba4e07d822eb6515c522cca43ba8f44152dce17949972a804564a4464abedb460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b611c49611f27565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb0906148d4565b60405180910390fd5b611cc28161304e565b50565b60195481565b60095481565b6000611cdb611f27565b600e54600f54611ceb919061411d565b4211611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2390614940565b60405180910390fd5b6103e8821115611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d68906149d2565b60405180910390fd5b42600f8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd26040518263ffffffff1660e01b8152600401611dd39190613f70565b602060405180830381865afa158015611df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e149190614a07565b905060006127108483611e279190614240565b611e3191906142c9565b90506000811115611e6a57611e697f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd261dead836131b5565b5b60007f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611ed757600080fd5b505af1158015611eeb573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b611f2f611fa5565b73ffffffffffffffffffffffffffffffffffffffff16611f4d611430565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614a80565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614b12565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490614ba4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161216b9190613ec6565b60405180910390a3505050565b60006121848484611a1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146121fe57818110156121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e790614c10565b60405180910390fd5b6121fd8484848403611fad565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122db90614d34565b60405180910390fd5b60011515601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236f90614da0565b60405180910390fd5b60011515601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561240c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240390614e0c565b60405180910390fd5b600081141561242657612421838360006131b5565b613049565b601060009054906101000a900460ff1615612af557612443611430565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124b15750612481611430565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124ea5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612524575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561253d5750600560149054906101000a900460ff16155b15612af457601060019054906101000a900460ff1661263757601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806125f75750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262d90614e78565b60405180910390fd5b5b601260009054906101000a900460ff161561280b57612654611430565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126db57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561273357507f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561280a57436001601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612785919061411d565b106127c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bc90614f30565b60405180910390fd5b43601160003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128ae5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612955576007548111156128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90614fc2565b60405180910390fd5b600954612904836111c2565b8261290f919061411d565b1115612950576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129479061502e565b60405180910390fd5b612af3565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f85750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4757600754811115612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a39906150c0565b60405180910390fd5b612af2565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612af157600954612aa4836111c2565b82612aaf919061411d565b1115612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae79061502e565b60405180910390fd5b5b5b5b5b5b6000612b00306111c2565b905060006008548210159050808015612b255750601060029054906101000a900460ff165b8015612b3e5750600560149054906101000a900460ff16155b8015612b945750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612bea5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c405750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c84576001600560146101000a81548160ff021916908315150217905550612c68613436565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612cea5750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612d025750600b60009054906101000a900460ff165b8015612d1d5750600c54600d54612d19919061411d565b4210155b8015612d735750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d8257612d80613627565b505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612e385750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612e4257600090505b6000811561303957601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ea557506000601754115b15612f3157606460175486612eba9190614240565b612ec491906142c9565b905060175460195482612ed79190614240565b612ee191906142c9565b601b6000828254612ef2919061411d565b9250508190555060175460185482612f0a9190614240565b612f1491906142c9565b601a6000828254612f25919061411d565b92505081905550613015565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f8c57506000601454115b1561301457606460145486612fa19190614240565b612fab91906142c9565b905060145460165482612fbe9190614240565b612fc891906142c9565b601b6000828254612fd9919061411d565b9250508190555060145460155482612ff19190614240565b612ffb91906142c9565b601a600082825461300c919061411d565b925050819055505b5b600081111561302a576130298730836131b5565b5b808561303691906150e0565b94505b6130448787876131b5565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321c90614ca2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328c90614d34565b60405180910390fd5b6132a083838361381e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331d90615186565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133b9919061411d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161341d9190613ec6565b60405180910390a3613430848484613823565b50505050565b6000613441306111c2565b90506000601a54601b54613455919061411d565b90506000808314806134675750600082145b1561347457505050613625565b60146008546134839190614240565b83111561349c5760146008546134999190614240565b92505b6000600283601b54866134af9190614240565b6134b991906142c9565b6134c391906142c9565b9050600081856134d391906150e0565b905060004790506134e382613828565b600081476134f191906150e0565b9050600086601a54836135049190614240565b61350e91906142c9565b90506000818361351e91906150e0565b90506000601b819055506000601a819055506000861180156135405750600081115b1561358d5761354f8682613a65565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601b54604051613584939291906151a6565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516135d39061520e565b60006040518083038185875af1925050503d8060008114613610576040519150601f19603f3d011682016040523d82523d6000602084013e613615565b606091505b5050809750505050505050505050505b565b600042600d8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd26040518263ffffffff1660e01b815260040161368b9190613f70565b602060405180830381865afa1580156136a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136cc9190614a07565b90506000612710600a54836136e19190614240565b6136eb91906142c9565b905061372c6040518060400160405280600c81526020017f616d6f756e74546f4275726e000000000000000000000000000000000000000081525082613b41565b6000811115613763576137627f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd261dead836131b5565b5b60007f000000000000000000000000a3f59ba7e5a2f08ae69ec656544a75de8e580bd290508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156137d057600080fd5b505af11580156137e4573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000600267ffffffffffffffff81111561384557613844615223565b5b6040519080825280602002602001820160405280156138735781602001602082028036833780820191505090505b509050308160008151811061388b5761388a615252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613930573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139549190615296565b8160018151811061396857613967615252565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139cd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fad565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a2f9594939291906153bc565b600060405180830381600087803b158015613a4957600080fd5b505af1158015613a5d573d6000803e3d6000fd5b505050505050565b613a90307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fad565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613af796959493929190615416565b60606040518083038185885af1158015613b15573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b3a9190615477565b5050505050565b613bd98282604051602401613b579291906154ca565b6040516020818303038152906040527fb60e72cc000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050613bdd565b5050565b60008151905060006a636f6e736f6c652e6c6f679050602083016000808483855afa5050505050565b600080fd5b6000819050919050565b613c1e81613c0b565b8114613c2957600080fd5b50565b600081359050613c3b81613c15565b92915050565b60008060408385031215613c5857613c57613c06565b5b6000613c6685828601613c2c565b9250506020613c7785828601613c2c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cbb578082015181840152602081019050613ca0565b83811115613cca576000848401525b50505050565b6000601f19601f8301169050919050565b6000613cec82613c81565b613cf68185613c8c565b9350613d06818560208601613c9d565b613d0f81613cd0565b840191505092915050565b60006020820190508181036000830152613d348184613ce1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d6782613d3c565b9050919050565b613d7781613d5c565b8114613d8257600080fd5b50565b600081359050613d9481613d6e565b92915050565b60008060408385031215613db157613db0613c06565b5b6000613dbf85828601613d85565b9250506020613dd085828601613c2c565b9150509250929050565b60008115159050919050565b613def81613dda565b82525050565b6000602082019050613e0a6000830184613de6565b92915050565b600060208284031215613e2657613e25613c06565b5b6000613e3484828501613d85565b91505092915050565b6000819050919050565b6000613e62613e5d613e5884613d3c565b613e3d565b613d3c565b9050919050565b6000613e7482613e47565b9050919050565b6000613e8682613e69565b9050919050565b613e9681613e7b565b82525050565b6000602082019050613eb16000830184613e8d565b92915050565b613ec081613c0b565b82525050565b6000602082019050613edb6000830184613eb7565b92915050565b600060208284031215613ef757613ef6613c06565b5b6000613f0584828501613c2c565b91505092915050565b600080600060608486031215613f2757613f26613c06565b5b6000613f3586828701613d85565b9350506020613f4686828701613d85565b9250506040613f5786828701613c2c565b9150509250925092565b613f6a81613d5c565b82525050565b6000602082019050613f856000830184613f61565b92915050565b600060ff82169050919050565b613fa181613f8b565b82525050565b6000602082019050613fbc6000830184613f98565b92915050565b613fcb81613dda565b8114613fd657600080fd5b50565b600081359050613fe881613fc2565b92915050565b60008060006060848603121561400757614006613c06565b5b600061401586828701613c2c565b935050602061402686828701613c2c565b925050604061403786828701613fd9565b9150509250925092565b6000806040838503121561405857614057613c06565b5b600061406685828601613d85565b925050602061407785828601613fd9565b9150509250929050565b60006020828403121561409757614096613c06565b5b60006140a584828501613fd9565b91505092915050565b600080604083850312156140c5576140c4613c06565b5b60006140d385828601613d85565b92505060206140e485828601613d85565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412882613c0b565b915061413383613c0b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614168576141676140ee565b5b828201905092915050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b60006141a9601d83613c8c565b91506141b482614173565b602082019050919050565b600060208201905081810360008301526141d88161419c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061422657607f821691505b6020821081141561423a576142396141df565b5b50919050565b600061424b82613c0b565b915061425683613c0b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561428f5761428e6140ee565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006142d482613c0b565b91506142df83613c0b565b9250826142ef576142ee61429a565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614356602f83613c8c565b9150614361826142fa565b604082019050919050565b6000602082019050818103600083015261438581614349565b9050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b60006143c2601d83613c8c565b91506143cd8261438c565b602082019050919050565b600060208201905081810360008301526143f1816143b5565b9050919050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614454603383613c8c565b915061445f826143f8565b604082019050919050565b6000602082019050818103600083015261448381614447565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b60006144e6603083613c8c565b91506144f18261448a565b604082019050919050565b60006020820190508181036000830152614515816144d9565b9050919050565b7f7a65726f20616464726573730000000000000000000000000000000000000000600082015250565b6000614552600c83613c8c565b915061455d8261451c565b602082019050919050565b6000602082019050818103600083015261458181614545565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006145e4603983613c8c565b91506145ef82614588565b604082019050919050565b60006020820190508181036000830152614613816145d7565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614676602583613c8c565b91506146818261461a565b604082019050919050565b600060208201905081810360008301526146a581614669565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614708602483613c8c565b9150614713826146ac565b604082019050919050565b60006020820190508181036000830152614737816146fb565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061479a603583613c8c565b91506147a58261473e565b604082019050919050565b600060208201905081810360008301526147c98161478d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061482c603483613c8c565b9150614837826147d0565b604082019050919050565b6000602082019050818103600083015261485b8161481f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148be602683613c8c565b91506148c982614862565b604082019050919050565b600060208201905081810360008301526148ed816148b1565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b600061492a602083613c8c565b9150614935826148f4565b602082019050919050565b600060208201905081810360008301526149598161491d565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b60006149bc602a83613c8c565b91506149c782614960565b604082019050919050565b600060208201905081810360008301526149eb816149af565b9050919050565b600081519050614a0181613c15565b92915050565b600060208284031215614a1d57614a1c613c06565b5b6000614a2b848285016149f2565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614a6a602083613c8c565b9150614a7582614a34565b602082019050919050565b60006020820190508181036000830152614a9981614a5d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614afc602483613c8c565b9150614b0782614aa0565b604082019050919050565b60006020820190508181036000830152614b2b81614aef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b8e602283613c8c565b9150614b9982614b32565b604082019050919050565b60006020820190508181036000830152614bbd81614b81565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614bfa601d83613c8c565b9150614c0582614bc4565b602082019050919050565b60006020820190508181036000830152614c2981614bed565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c8c602583613c8c565b9150614c9782614c30565b604082019050919050565b60006020820190508181036000830152614cbb81614c7f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d1e602383613c8c565b9150614d2982614cc2565b604082019050919050565b60006020820190508181036000830152614d4d81614d11565b9050919050565b7f53656e64657220697320626c61636b6c69737465640000000000000000000000600082015250565b6000614d8a601583613c8c565b9150614d9582614d54565b602082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b7f526563656976657220697320626c61636b6c6973746564000000000000000000600082015250565b6000614df6601783613c8c565b9150614e0182614dc0565b602082019050919050565b60006020820190508181036000830152614e2581614de9565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614e62601683613c8c565b9150614e6d82614e2c565b602082019050919050565b60006020820190508181036000830152614e9181614e55565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e6520707572636861736520706572203220626c6f60208201527f636b732e00000000000000000000000000000000000000000000000000000000604082015250565b6000614f1a604483613c8c565b9150614f2582614e98565b606082019050919050565b60006020820190508181036000830152614f4981614f0d565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614fac603583613c8c565b9150614fb782614f50565b604082019050919050565b60006020820190508181036000830152614fdb81614f9f565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000615018601383613c8c565b915061502382614fe2565b602082019050919050565b600060208201905081810360008301526150478161500b565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006150aa603683613c8c565b91506150b58261504e565b604082019050919050565b600060208201905081810360008301526150d98161509d565b9050919050565b60006150eb82613c0b565b91506150f683613c0b565b925082821015615109576151086140ee565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615170602683613c8c565b915061517b82615114565b604082019050919050565b6000602082019050818103600083015261519f81615163565b9050919050565b60006060820190506151bb6000830186613eb7565b6151c86020830185613eb7565b6151d56040830184613eb7565b949350505050565b600081905092915050565b50565b60006151f86000836151dd565b9150615203826151e8565b600082019050919050565b6000615219826151eb565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061529081613d6e565b92915050565b6000602082840312156152ac576152ab613c06565b5b60006152ba84828501615281565b91505092915050565b6000819050919050565b60006152e86152e36152de846152c3565b613e3d565b613c0b565b9050919050565b6152f8816152cd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61533381613d5c565b82525050565b6000615345838361532a565b60208301905092915050565b6000602082019050919050565b6000615369826152fe565b6153738185615309565b935061537e8361531a565b8060005b838110156153af5781516153968882615339565b97506153a183615351565b925050600181019050615382565b5085935050505092915050565b600060a0820190506153d16000830188613eb7565b6153de60208301876152ef565b81810360408301526153f0818661535e565b90506153ff6060830185613f61565b61540c6080830184613eb7565b9695505050505050565b600060c08201905061542b6000830189613f61565b6154386020830188613eb7565b61544560408301876152ef565b61545260608301866152ef565b61545f6080830185613f61565b61546c60a0830184613eb7565b979650505050505050565b6000806000606084860312156154905761548f613c06565b5b600061549e868287016149f2565b93505060206154af868287016149f2565b92505060406154c0868287016149f2565b9150509250925092565b600060408201905081810360008301526154e48185613ce1565b90506154f36020830184613eb7565b939250505056fea264697066735822122036a5768dad87ab87ef95d5df62dd2197a27118086dfb2fb90b0f3197b26d0a9664736f6c634300080a0033

Deployed Bytecode Sourcemap

89528:18828:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96417:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7910:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10261:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91178:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89571:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9030:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90105:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89919:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90996:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95104:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11042:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89674:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90015:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89975:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8872:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11746:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90880:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89629:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90203:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97846:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90957:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96078:331;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90845:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90347:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9201:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5115:103;;;;;;;;;;;;;:::i;:::-;;105674:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94212:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95651:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94005:155;;;;;;;;;;;;;:::i;:::-;;4467:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95970:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8129:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97008:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90159:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12487:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90067:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9534:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91399:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90307:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96761:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95387:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90565:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89804:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108197:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;94599:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90734:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9790:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89846:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94394:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89766:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90768;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97570:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90806:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5373:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90917:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89886:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107070:1052;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96417:336;4353:13;:11;:13::i;:::-;96557:12:::1;96539:15;:30;;;;96599:13;96580:16;:32;;;;96657:16;;96639:15;;:34;;;;:::i;:::-;96623:13;:50;;;;96709:2;96692:13;;:19;;96684:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;96417:336:::0;;:::o;7910:100::-;7964:13;7997:5;7990:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7910:100;:::o;10261:201::-;10344:4;10361:13;10377:12;:10;:12::i;:::-;10361:28;;10400:32;10409:5;10416:7;10425:6;10400:8;:32::i;:::-;10450:4;10443:11;;;10261:201;;;;:::o;91178:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;89571:51::-;;;:::o;9030:108::-;9091:7;9118:12;;9111:19;;9030:108;:::o;90105:47::-;;;;:::o;89919:36::-;;;;:::o;90996:33::-;;;;:::o;95104:275::-;4353:13;:11;:13::i;:::-;95241:4:::1;95233;95228:1;95212:13;:11;:13::i;:::-;:17;;;;:::i;:::-;95211:26;;;;:::i;:::-;95210:35;;;;:::i;:::-;95200:6;:45;;95178:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;95364:6;95354;:17;;;;:::i;:::-;95331:20;:40;;;;95104:275:::0;:::o;11042:295::-;11173:4;11190:15;11208:12;:10;:12::i;:::-;11190:30;;11231:38;11247:4;11253:7;11262:6;11231:15;:38::i;:::-;11280:27;11290:4;11296:2;11300:6;11280:9;:27::i;:::-;11325:4;11318:11;;;11042:295;;;;;:::o;89674:53::-;89720:6;89674:53;:::o;90015:45::-;;;;:::o;89975:33::-;;;;;;;;;;;;;:::o;8872:93::-;8930:5;8955:2;8948:9;;8872:93;:::o;11746:238::-;11834:4;11851:13;11867:12;:10;:12::i;:::-;11851:28;;11890:64;11899:5;11906:7;11943:10;11915:25;11925:5;11932:7;11915:9;:25::i;:::-;:38;;;;:::i;:::-;11890:8;:64::i;:::-;11972:4;11965:11;;;11746:238;;;;:::o;90880:30::-;;;;:::o;89629:38::-;;;:::o;90203:33::-;;;;;;;;;;;;;:::o;97846:126::-;97912:4;97936:19;:28;97956:7;97936:28;;;;;;;;;;;;;;;;;;;;;;;;;97929:35;;97846:126;;;:::o;90957:32::-;;;;:::o;96078:331::-;4353:13;:11;:13::i;:::-;96216:12:::1;96199:14;:29;;;;96257:13;96239:15;:31;;;;96313:15;;96296:14;;:32;;;;:::i;:::-;96281:12;:47;;;;96365:2;96349:12:::0;::::1;:18;;96341:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;96078:331:::0;;:::o;90845:28::-;;;;:::o;90347:31::-;;;;;;;;;;;;;:::o;9201:127::-;9275:7;9302:9;:18;9312:7;9302:18;;;;;;;;;;;;;;;;9295:25;;9201:127;;;:::o;5115:103::-;4353:13;:11;:13::i;:::-;5180:30:::1;5207:1;5180:18;:30::i;:::-;5115:103::o:0;105674:555::-;4353:13;:11;:13::i;:::-;105876:3:::1;105853:19;:26;;105831:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;106003:4;105991:8;:16;;:33;;;;;106023:1;106011:8;:13;;105991:33;105969:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;106129:19;106111:15;:37;;;;106178:8;106159:16;:27;;;;106213:8;106197:13;;:24;;;;;;;;;;;;;;;;;;105674:555:::0;;;:::o;94212:121::-;94264:4;4353:13;:11;:13::i;:::-;94298:5:::1;94281:14;;:22;;;;;;;;;;;;;;;;;;94321:4;94314:11;;94212:121:::0;:::o;95651:223::-;4353:13;:11;:13::i;:::-;95790:1:::1;95772:20;;:6;:20;;;;95764:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;95862:4;95820:31;:39;95852:6;95820:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;95651:223:::0;;:::o;94005:155::-;4353:13;:11;:13::i;:::-;94076:4:::1;94060:13;;:20;;;;;;;;;;;;;;;;;;94105:4;94091:11;;:18;;;;;;;;;;;;;;;;;;94137:15;94120:14;:32;;;;94005:155::o:0;4467:87::-;4513:7;4540:6;;;;;;;;;;;4533:13;;4467:87;:::o;95970:100::-;4353:13;:11;:13::i;:::-;96055:7:::1;96041:11;;:21;;;;;;;;;;;;;;;;;;95970:100:::0;:::o;8129:104::-;8185:13;8218:7;8211:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8129:104;:::o;97008:358::-;4353:13;:11;:13::i;:::-;97146:1:::1;97130:18;;:4;:18;;;;97122:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;97206:13;97198:21;;:4;:21;;;;97176:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;97317:41;97346:4;97352:5;97317:28;:41::i;:::-;97008:358:::0;;:::o;90159:35::-;;;;:::o;12487:436::-;12580:4;12597:13;12613:12;:10;:12::i;:::-;12597:28;;12636:24;12663:25;12673:5;12680:7;12663:9;:25::i;:::-;12636:52;;12727:15;12707:16;:35;;12699:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12820:60;12829:5;12836:7;12864:15;12845:16;:34;12820:8;:60::i;:::-;12911:4;12904:11;;;;12487:436;;;;:::o;90067:29::-;;;;:::o;9534:193::-;9613:4;9630:13;9646:12;:10;:12::i;:::-;9630:28;;9669;9679:5;9686:2;9690:6;9669:9;:28::i;:::-;9715:4;9708:11;;;9534:193;;;;:::o;91399:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;90307:33::-;;;;;;;;;;;;;:::o;96761:239::-;4353:13;:11;:13::i;:::-;96873:1:::1;96854:21;;:7;:21;;;;96846:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;96934:8;96903:19;:28;96923:7;96903:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;96974:7;96958:34;;;96983:8;96958:34;;;;;;:::i;:::-;;;;;;;;96761:239:::0;;:::o;95387:256::-;4353:13;:11;:13::i;:::-;95527:4:::1;95519;95514:1;95498:13;:11;:13::i;:::-;:17;;;;:::i;:::-;95497:26;;;;:::i;:::-;95496:35;;;;:::i;:::-;95486:6;:45;;95464:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;95628:6;95618;:17;;;;:::i;:::-;95606:9;:29;;;;95387:256:::0;:::o;90565:39::-;;;;;;;;;;;;;:::o;89804:35::-;;;;:::o;108197:156::-;4353:13;:11;:13::i;:::-;108333:12:::1;108311:9;:19;108321:8;108311:19;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;108197:156:::0;;:::o;94599:497::-;94707:4;4353:13;:11;:13::i;:::-;94786:6:::1;94781:1;94765:13;:11;:13::i;:::-;:17;;;;:::i;:::-;94764:28;;;;:::i;:::-;94751:9;:41;;94729:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;94941:4;94936:1;94920:13;:11;:13::i;:::-;:17;;;;:::i;:::-;94919:26;;;;:::i;:::-;94906:9;:39;;94884:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;95057:9;95036:18;:30;;;;95084:4;95077:11;;94599:497:::0;;;:::o;90734:27::-;;;;:::o;9790:151::-;9879:7;9906:11;:18;9918:5;9906:18;;;;;;;;;;;;;;;:27;9925:7;9906:27;;;;;;;;;;;;;;;;9899:34;;9790:151;;;;:::o;89846:33::-;;;;:::o;94394:135::-;94454:4;4353:13;:11;:13::i;:::-;94494:5:::1;94471:20;;:28;;;;;;;;;;;;;;;;;;94517:4;94510:11;;94394:135:::0;:::o;89766:29::-;;;;;;;;;;;;;:::o;90768:::-;;;;:::o;97570:268::-;4353:13;:11;:13::i;:::-;97694:1:::1;97665:31;;:17;:31;;;;97657:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;97770:14;;;;;;;;;;;97729:56;;97751:17;97729:56;;;;;;;;;;;;97813:17;97796:14;;:34;;;;;;;;;;;;;;;;;;97570:268:::0;:::o;90806:30::-;;;;:::o;5373:201::-;4353:13;:11;:13::i;:::-;5482:1:::1;5462:22;;:8;:22;;;;5454:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5538:28;5557:8;5538:18;:28::i;:::-;5373:201:::0;:::o;90917:31::-;;;;:::o;89886:24::-;;;;:::o;107070:1052::-;107181:4;4353:13;:11;:13::i;:::-;107266:19:::1;;107243:20;;:42;;;;:::i;:::-;107225:15;:60;107203:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;107375:4;107364:7;:15;;107356:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;107460:15;107437:20;:38;;;;107530:28;107561:4;:14;;;107576:13;107561:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;107530:60;;107640:20;107698:5;107687:7;107664:20;:30;;;;:::i;:::-;107663:40;;;;:::i;:::-;107640:63;;107823:1;107808:12;:16;107804:110;;;107841:61;107857:13;107880:6;107889:12;107841:15;:61::i;:::-;107804:110;107989:19;108026:13;107989:51;;108051:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;108078:14;;;;;;;;;;108110:4;108103:11;;;;;107070:1052:::0;;;:::o;4632:132::-;4707:12;:10;:12::i;:::-;4696:23;;:7;:5;:7::i;:::-;:23;;;4688:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4632:132::o;111:98::-;164:7;191:10;184:17;;111:98;:::o;16112:380::-;16265:1;16248:19;;:5;:19;;;;16240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16346:1;16327:21;;:7;:21;;;;16319:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16430:6;16400:11;:18;16412:5;16400:18;;;;;;;;;;;;;;;:27;16419:7;16400:27;;;;;;;;;;;;;;;:36;;;;16468:7;16452:32;;16461:5;16452:32;;;16477:6;16452:32;;;;;;:::i;:::-;;;;;;;;16112:380;;;:::o;16783:453::-;16918:24;16945:25;16955:5;16962:7;16945:9;:25::i;:::-;16918:52;;17005:17;16985:16;:37;16981:248;;17067:6;17047:16;:26;;17039:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17151:51;17160:5;17167:7;17195:6;17176:16;:25;17151:8;:51::i;:::-;16981:248;16907:329;16783:453;;;:::o;98030:5024::-;98178:1;98162:18;;:4;:18;;;;98154:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;98255:1;98241:16;;:2;:16;;;;98233:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;98335:4;98316:23;;:9;:15;98326:4;98316:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;;98308:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;98401:4;98384:21;;:9;:13;98394:2;98384:13;;;;;;;;;;;;;;;;;;;;;;;;;:21;;;;98376:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;98488:1;98478:6;:11;98474:93;;;98506:28;98522:4;98528:2;98532:1;98506:15;:28::i;:::-;98549:7;;98474:93;98581:14;;;;;;;;;;;98577:2488;;;98642:7;:5;:7::i;:::-;98634:15;;:4;:15;;;;:49;;;;;98676:7;:5;:7::i;:::-;98670:13;;:2;:13;;;;98634:49;:86;;;;;98718:1;98704:16;;:2;:16;;;;98634:86;:128;;;;;98755:6;98741:21;;:2;:21;;;;98634:128;:158;;;;;98784:8;;;;;;;;;;;98783:9;98634:158;98612:2442;;;98832:13;;;;;;;;;;;98827:223;;98904:19;:25;98924:4;98904:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;98933:19;:23;98953:2;98933:23;;;;;;;;;;;;;;;;;;;;;;;;;98904:52;98870:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;98827:223;99206:20;;;;;;;;;;;99202:640;;;99287:7;:5;:7::i;:::-;99281:13;;:2;:13;;;;:72;;;;;99337:15;99323:30;;:2;:30;;;;99281:72;:129;;;;;99396:13;99382:28;;:2;:28;;;;99281:129;99251:572;;;99578:12;99541:1;99499:28;:39;99528:9;99499:39;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:91;99461:257;;;;;;;;;;;;:::i;:::-;;;;;;;;;99787:12;99745:28;:39;99774:9;99745:39;;;;;;;;;;;;;;;:54;;;;99251:572;99202:640;99917:25;:31;99943:4;99917:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;99974:31;:35;100006:2;99974:35;;;;;;;;;;;;;;;;;;;;;;;;;99973:36;99917:92;99891:1148;;;100096:20;;100086:6;:30;;100052:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;100304:9;;100287:13;100297:2;100287:9;:13::i;:::-;100278:6;:22;;;;:::i;:::-;:35;;100244:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;99891:1148;;;100483:25;:29;100509:2;100483:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;100538:31;:37;100570:4;100538:37;;;;;;;;;;;;;;;;;;;;;;;;;100537:38;100483:92;100457:582;;;100662:20;;100652:6;:30;;100618:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;100457:582;;;100819:31;:35;100851:2;100819:35;;;;;;;;;;;;;;;;;;;;;;;;;100814:225;;100939:9;;100922:13;100932:2;100922:9;:13::i;:::-;100913:6;:22;;;;:::i;:::-;:35;;100879:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;100814:225;100457:582;99891:1148;98612:2442;98577:2488;101077:28;101108:24;101126:4;101108:9;:24::i;:::-;101077:55;;101145:12;101184:18;;101160:20;:42;;101145:57;;101233:7;:35;;;;;101257:11;;;;;;;;;;;101233:35;:61;;;;;101286:8;;;;;;;;;;;101285:9;101233:61;:110;;;;;101312:25;:31;101338:4;101312:31;;;;;;;;;;;;;;;;;;;;;;;;;101311:32;101233:110;:153;;;;;101361:19;:25;101381:4;101361:25;;;;;;;;;;;;;;;;;;;;;;;;;101360:26;101233:153;:194;;;;;101404:19;:23;101424:2;101404:23;;;;;;;;;;;;;;;;;;;;;;;;;101403:24;101233:194;101215:326;;;101465:4;101454:8;;:15;;;;;;;;;;;;;;;;;;101486:10;:8;:10::i;:::-;101524:5;101513:8;;:16;;;;;;;;;;;;;;;;;;101215:326;101572:8;;;;;;;;;;;101571:9;:55;;;;;101597:25;:29;101623:2;101597:29;;;;;;;;;;;;;;;;;;;;;;;;;101571:55;:85;;;;;101643:13;;;;;;;;;;;101571:85;:153;;;;;101709:15;;101692:14;;:32;;;;:::i;:::-;101673:15;:51;;101571:153;:196;;;;;101742:19;:25;101762:4;101742:25;;;;;;;;;;;;;;;;;;;;;;;;;101741:26;101571:196;101553:282;;;101794:29;:27;:29::i;:::-;;101553:282;101847:12;101863:8;;;;;;;;;;;101862:9;101847:24;;101973:19;:25;101993:4;101973:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;102002:19;:23;102022:2;102002:23;;;;;;;;;;;;;;;;;;;;;;;;;101973:52;101969:100;;;102052:5;102042:15;;101969:100;102081:12;102186:7;102182:819;;;102238:25;:29;102264:2;102238:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;102287:1;102271:13;;:17;102238:50;102234:618;;;102343:3;102326:13;;102317:6;:22;;;;:::i;:::-;102316:30;;;;:::i;:::-;102309:37;;102415:13;;102395:16;;102388:4;:23;;;;:::i;:::-;102387:41;;;;:::i;:::-;102365:18;;:63;;;;;;;:::i;:::-;;;;;;;;102495:13;;102476:15;;102469:4;:22;;;;:::i;:::-;102468:40;;;;:::i;:::-;102447:17;;:61;;;;;;;:::i;:::-;;;;;;;;102234:618;;;102570:25;:31;102596:4;102570:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;102620:1;102605:12;;:16;102570:51;102566:286;;;102675:3;102659:12;;102650:6;:21;;;;:::i;:::-;102649:29;;;;:::i;:::-;102642:36;;102746:12;;102727:15;;102720:4;:22;;;;:::i;:::-;102719:39;;;;:::i;:::-;102697:18;;:61;;;;;;;:::i;:::-;;;;;;;;102824:12;;102806:14;;102799:4;:21;;;;:::i;:::-;102798:38;;;;:::i;:::-;102777:17;;:59;;;;;;;:::i;:::-;;;;;;;;102566:286;102234:618;102879:1;102872:4;:8;102868:91;;;102901:42;102917:4;102931;102938;102901:15;:42::i;:::-;102868:91;102985:4;102975:14;;;;;:::i;:::-;;;102182:819;103013:33;103029:4;103035:2;103039:6;103013:15;:33::i;:::-;98143:4911;;;;98030:5024;;;;:::o;5734:191::-;5808:16;5827:6;;;;;;;;;;;5808:25;;5853:8;5844:6;;:17;;;;;;;;;;;;;;;;;;5908:8;5877:40;;5898:8;5877:40;;;;;;;;;;;;5797:128;5734:191;:::o;97374:188::-;97491:5;97457:25;:31;97483:4;97457:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;97548:5;97514:40;;97542:4;97514:40;;;;;;;;;;;;97374:188;;:::o;13393:671::-;13540:1;13524:18;;:4;:18;;;;13516:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13617:1;13603:16;;:2;:16;;;;13595:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13672:38;13693:4;13699:2;13703:6;13672:20;:38::i;:::-;13723:19;13745:9;:15;13755:4;13745:15;;;;;;;;;;;;;;;;13723:37;;13794:6;13779:11;:21;;13771:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13911:6;13897:11;:20;13879:9;:15;13889:4;13879:15;;;;;;;;;;;;;;;:38;;;;13956:6;13939:9;:13;13949:2;13939:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;13995:2;13980:26;;13989:4;13980:26;;;13999:6;13980:26;;;;;;:::i;:::-;;;;;;;;14019:37;14039:4;14045:2;14049:6;14019:19;:37::i;:::-;13505:559;13393:671;;;:::o;104184:1482::-;104223:23;104249:24;104267:4;104249:9;:24::i;:::-;104223:50;;104284:25;104333:17;;104312:18;;:38;;;;:::i;:::-;104284:66;;104361:12;104409:1;104390:15;:20;:46;;;;104435:1;104414:17;:22;104390:46;104386:85;;;104453:7;;;;;104386:85;104526:2;104505:18;;:23;;;;:::i;:::-;104487:15;:41;104483:115;;;104584:2;104563:18;;:23;;;;:::i;:::-;104545:41;;104483:115;104659:23;104772:1;104739:17;104704:18;;104686:15;:36;;;;:::i;:::-;104685:71;;;;:::i;:::-;:88;;;;:::i;:::-;104659:114;;104784:26;104831:15;104813;:33;;;;:::i;:::-;104784:62;;104859:25;104887:21;104859:49;;104921:36;104938:18;104921:16;:36::i;:::-;104970:18;105015:17;104991:21;:41;;;;:::i;:::-;104970:62;;105045:22;105105:17;105084;;105071:10;:30;;;;:::i;:::-;105070:52;;;;:::i;:::-;105045:77;;105135:23;105174:14;105161:10;:27;;;;:::i;:::-;105135:53;;105222:1;105201:18;:22;;;;105254:1;105234:17;:21;;;;105290:1;105272:15;:19;:42;;;;;105313:1;105295:15;:19;105272:42;105268:278;;;105331:46;105344:15;105361;105331:12;:46::i;:::-;105397:137;105430:18;105467:15;105501:18;;105397:137;;;;;;;;:::i;:::-;;;;;;;;105268:278;105580:14;;;;;;;;;;;105572:28;;105608:21;105572:86;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105558:100;;;;;104212:1454;;;;;;;;;104184:1482;:::o;106237:825::-;106294:4;106328:15;106311:14;:32;;;;106398:28;106429:4;:14;;;106444:13;106429:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106398:60;;106508:20;106588:5;106555:16;;106532:20;:39;;;;:::i;:::-;106531:62;;;;:::i;:::-;106508:85;;106604:41;;;;;;;;;;;;;;;;;;106632:12;106604:11;:41::i;:::-;106765:1;106750:12;:16;106746:110;;;106783:61;106799:13;106822:6;106831:12;106783:15;:61::i;:::-;106746:110;106931:19;106968:13;106931:51;;106993:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107020:12;;;;;;;;;;107050:4;107043:11;;;;;106237:825;:::o;17836:125::-;;;;:::o;18565:124::-;;;;:::o;103062:589::-;103188:21;103226:1;103212:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103188:40;;103257:4;103239;103244:1;103239:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;103283:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;103273:4;103278:1;103273:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;103318:62;103335:4;103350:15;103368:11;103318:8;:62::i;:::-;103419:15;:66;;;103500:11;103526:1;103570:4;103597;103617:15;103419:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103117:534;103062:589;:::o;103659:517::-;103807:62;103824:4;103839:15;103857:11;103807:8;:62::i;:::-;103912:15;:31;;;103951:9;103984:4;104004:11;104030:1;104073;89720:6;104142:15;103912:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;103659:517;;:::o;30021:138::-;30083:71;30146:2;30150;30099:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30083:15;:71::i;:::-;30021:138;;:::o;24064:295::-;24129:21;24153:7;:14;24129:38;;24172:22;24015:42;24172:40;;24265:2;24256:7;24252:16;24348:1;24345;24330:13;24316:12;24300:14;24293:5;24282:68;24226:129;;;;24064:295;:::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:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:613::-;7716:6;7724;7732;7781:2;7769:9;7760:7;7756:23;7752:32;7749:119;;;7787:79;;:::i;:::-;7749:119;7907:1;7932:53;7977:7;7968:6;7957:9;7953:22;7932:53;:::i;:::-;7922:63;;7878:117;8034:2;8060:53;8105:7;8096:6;8085:9;8081:22;8060:53;:::i;:::-;8050:63;;8005:118;8162:2;8188:50;8230:7;8221:6;8210:9;8206:22;8188:50;:::i;:::-;8178:60;;8133:115;7642:613;;;;;:::o;8261:468::-;8326:6;8334;8383:2;8371:9;8362:7;8358:23;8354:32;8351:119;;;8389:79;;:::i;:::-;8351:119;8509:1;8534:53;8579:7;8570:6;8559:9;8555:22;8534:53;:::i;:::-;8524:63;;8480:117;8636:2;8662:50;8704:7;8695:6;8684:9;8680:22;8662:50;:::i;:::-;8652:60;;8607:115;8261:468;;;;;:::o;8735:323::-;8791:6;8840:2;8828:9;8819:7;8815:23;8811:32;8808:119;;;8846:79;;:::i;:::-;8808:119;8966:1;8991:50;9033:7;9024:6;9013:9;9009:22;8991:50;:::i;:::-;8981:60;;8937:114;8735:323;;;;:::o;9064:474::-;9132:6;9140;9189:2;9177:9;9168:7;9164:23;9160:32;9157:119;;;9195:79;;:::i;:::-;9157:119;9315:1;9340:53;9385:7;9376:6;9365:9;9361:22;9340:53;:::i;:::-;9330:63;;9286:117;9442:2;9468:53;9513:7;9504:6;9493:9;9489:22;9468:53;:::i;:::-;9458:63;;9413:118;9064:474;;;;;:::o;9544:180::-;9592:77;9589:1;9582:88;9689:4;9686:1;9679:15;9713:4;9710:1;9703:15;9730:305;9770:3;9789:20;9807:1;9789:20;:::i;:::-;9784:25;;9823:20;9841:1;9823:20;:::i;:::-;9818:25;;9977:1;9909:66;9905:74;9902:1;9899:81;9896:107;;;9983:18;;:::i;:::-;9896:107;10027:1;10024;10020:9;10013:16;;9730:305;;;;:::o;10041:179::-;10181:31;10177:1;10169:6;10165:14;10158:55;10041:179;:::o;10226:366::-;10368:3;10389:67;10453:2;10448:3;10389:67;:::i;:::-;10382:74;;10465:93;10554:3;10465:93;:::i;:::-;10583:2;10578:3;10574:12;10567:19;;10226:366;;;:::o;10598:419::-;10764:4;10802:2;10791:9;10787:18;10779:26;;10851:9;10845:4;10841:20;10837:1;10826:9;10822:17;10815:47;10879:131;11005:4;10879:131;:::i;:::-;10871:139;;10598:419;;;:::o;11023:180::-;11071:77;11068:1;11061:88;11168:4;11165:1;11158:15;11192:4;11189:1;11182:15;11209:320;11253:6;11290:1;11284:4;11280:12;11270:22;;11337:1;11331:4;11327:12;11358:18;11348:81;;11414:4;11406:6;11402:17;11392:27;;11348:81;11476:2;11468:6;11465:14;11445:18;11442:38;11439:84;;;11495:18;;:::i;:::-;11439:84;11260:269;11209:320;;;:::o;11535:348::-;11575:7;11598:20;11616:1;11598:20;:::i;:::-;11593:25;;11632:20;11650:1;11632:20;:::i;:::-;11627:25;;11820:1;11752:66;11748:74;11745:1;11742:81;11737:1;11730:9;11723:17;11719:105;11716:131;;;11827:18;;:::i;:::-;11716:131;11875:1;11872;11868:9;11857:20;;11535:348;;;;:::o;11889:180::-;11937:77;11934:1;11927:88;12034:4;12031:1;12024:15;12058:4;12055:1;12048:15;12075:185;12115:1;12132:20;12150:1;12132:20;:::i;:::-;12127:25;;12166:20;12184:1;12166:20;:::i;:::-;12161:25;;12205:1;12195:35;;12210:18;;:::i;:::-;12195:35;12252:1;12249;12245:9;12240:14;;12075:185;;;;:::o;12266:234::-;12406:34;12402:1;12394:6;12390:14;12383:58;12475:17;12470:2;12462:6;12458:15;12451:42;12266:234;:::o;12506:366::-;12648:3;12669:67;12733:2;12728:3;12669:67;:::i;:::-;12662:74;;12745:93;12834:3;12745:93;:::i;:::-;12863:2;12858:3;12854:12;12847:19;;12506:366;;;:::o;12878:419::-;13044:4;13082:2;13071:9;13067:18;13059:26;;13131:9;13125:4;13121:20;13117:1;13106:9;13102:17;13095:47;13159:131;13285:4;13159:131;:::i;:::-;13151:139;;12878:419;;;:::o;13303:179::-;13443:31;13439:1;13431:6;13427:14;13420:55;13303:179;:::o;13488:366::-;13630:3;13651:67;13715:2;13710:3;13651:67;:::i;:::-;13644:74;;13727:93;13816:3;13727:93;:::i;:::-;13845:2;13840:3;13836:12;13829:19;;13488:366;;;:::o;13860:419::-;14026:4;14064:2;14053:9;14049:18;14041:26;;14113:9;14107:4;14103:20;14099:1;14088:9;14084:17;14077:47;14141:131;14267:4;14141:131;:::i;:::-;14133:139;;13860:419;;;:::o;14285:238::-;14425:34;14421:1;14413:6;14409:14;14402:58;14494:21;14489:2;14481:6;14477:15;14470:46;14285:238;:::o;14529:366::-;14671:3;14692:67;14756:2;14751:3;14692:67;:::i;:::-;14685:74;;14768:93;14857:3;14768:93;:::i;:::-;14886:2;14881:3;14877:12;14870:19;;14529:366;;;:::o;14901:419::-;15067:4;15105:2;15094:9;15090:18;15082:26;;15154:9;15148:4;15144:20;15140:1;15129:9;15125:17;15118:47;15182:131;15308:4;15182:131;:::i;:::-;15174:139;;14901:419;;;:::o;15326:235::-;15466:34;15462:1;15454:6;15450:14;15443:58;15535:18;15530:2;15522:6;15518:15;15511:43;15326:235;:::o;15567:366::-;15709:3;15730:67;15794:2;15789:3;15730:67;:::i;:::-;15723:74;;15806:93;15895:3;15806:93;:::i;:::-;15924:2;15919:3;15915:12;15908:19;;15567:366;;;:::o;15939:419::-;16105:4;16143:2;16132:9;16128:18;16120:26;;16192:9;16186:4;16182:20;16178:1;16167:9;16163:17;16156:47;16220:131;16346:4;16220:131;:::i;:::-;16212:139;;15939:419;;;:::o;16364:162::-;16504:14;16500:1;16492:6;16488:14;16481:38;16364:162;:::o;16532:366::-;16674:3;16695:67;16759:2;16754:3;16695:67;:::i;:::-;16688:74;;16771:93;16860:3;16771:93;:::i;:::-;16889:2;16884:3;16880:12;16873:19;;16532:366;;;:::o;16904:419::-;17070:4;17108:2;17097:9;17093:18;17085:26;;17157:9;17151:4;17147:20;17143:1;17132:9;17128:17;17121:47;17185:131;17311:4;17185:131;:::i;:::-;17177:139;;16904:419;;;:::o;17329:244::-;17469:34;17465:1;17457:6;17453:14;17446:58;17538:27;17533:2;17525:6;17521:15;17514:52;17329:244;:::o;17579:366::-;17721:3;17742:67;17806:2;17801:3;17742:67;:::i;:::-;17735:74;;17818:93;17907:3;17818:93;:::i;:::-;17936:2;17931:3;17927:12;17920:19;;17579:366;;;:::o;17951:419::-;18117:4;18155:2;18144:9;18140:18;18132:26;;18204:9;18198:4;18194:20;18190:1;18179:9;18175:17;18168:47;18232:131;18358:4;18232:131;:::i;:::-;18224:139;;17951:419;;;:::o;18376:224::-;18516:34;18512:1;18504:6;18500:14;18493:58;18585:7;18580:2;18572:6;18568:15;18561:32;18376:224;:::o;18606:366::-;18748:3;18769:67;18833:2;18828:3;18769:67;:::i;:::-;18762:74;;18845:93;18934:3;18845:93;:::i;:::-;18963:2;18958:3;18954:12;18947:19;;18606:366;;;:::o;18978:419::-;19144:4;19182:2;19171:9;19167:18;19159:26;;19231:9;19225:4;19221:20;19217:1;19206:9;19202:17;19195:47;19259:131;19385:4;19259:131;:::i;:::-;19251:139;;18978:419;;;:::o;19403:223::-;19543:34;19539:1;19531:6;19527:14;19520:58;19612:6;19607:2;19599:6;19595:15;19588:31;19403:223;:::o;19632:366::-;19774:3;19795:67;19859:2;19854:3;19795:67;:::i;:::-;19788:74;;19871:93;19960:3;19871:93;:::i;:::-;19989:2;19984:3;19980:12;19973:19;;19632:366;;;:::o;20004:419::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:240::-;20569:34;20565:1;20557:6;20553:14;20546:58;20638:23;20633:2;20625:6;20621:15;20614:48;20429:240;:::o;20675:366::-;20817:3;20838:67;20902:2;20897:3;20838:67;:::i;:::-;20831:74;;20914:93;21003:3;20914:93;:::i;:::-;21032:2;21027:3;21023:12;21016:19;;20675:366;;;:::o;21047:419::-;21213:4;21251:2;21240:9;21236:18;21228:26;;21300:9;21294:4;21290:20;21286:1;21275:9;21271:17;21264:47;21328:131;21454:4;21328:131;:::i;:::-;21320:139;;21047:419;;;:::o;21472:239::-;21612:34;21608:1;21600:6;21596:14;21589:58;21681:22;21676:2;21668:6;21664:15;21657:47;21472:239;:::o;21717:366::-;21859:3;21880:67;21944:2;21939:3;21880:67;:::i;:::-;21873:74;;21956:93;22045:3;21956:93;:::i;:::-;22074:2;22069:3;22065:12;22058:19;;21717:366;;;:::o;22089:419::-;22255:4;22293:2;22282:9;22278:18;22270:26;;22342:9;22336:4;22332:20;22328:1;22317:9;22313:17;22306:47;22370:131;22496:4;22370:131;:::i;:::-;22362:139;;22089:419;;;:::o;22514:225::-;22654:34;22650:1;22642:6;22638:14;22631:58;22723:8;22718:2;22710:6;22706:15;22699:33;22514:225;:::o;22745:366::-;22887:3;22908:67;22972:2;22967:3;22908:67;:::i;:::-;22901:74;;22984:93;23073:3;22984:93;:::i;:::-;23102:2;23097:3;23093:12;23086:19;;22745:366;;;:::o;23117:419::-;23283:4;23321:2;23310:9;23306:18;23298:26;;23370:9;23364:4;23360:20;23356:1;23345:9;23341:17;23334:47;23398:131;23524:4;23398:131;:::i;:::-;23390:139;;23117:419;;;:::o;23542:182::-;23682:34;23678:1;23670:6;23666:14;23659:58;23542:182;:::o;23730:366::-;23872:3;23893:67;23957:2;23952:3;23893:67;:::i;:::-;23886:74;;23969:93;24058:3;23969:93;:::i;:::-;24087:2;24082:3;24078:12;24071:19;;23730:366;;;:::o;24102:419::-;24268:4;24306:2;24295:9;24291:18;24283:26;;24355:9;24349:4;24345:20;24341:1;24330:9;24326:17;24319:47;24383:131;24509:4;24383:131;:::i;:::-;24375:139;;24102:419;;;:::o;24527:229::-;24667:34;24663:1;24655:6;24651:14;24644:58;24736:12;24731:2;24723:6;24719:15;24712:37;24527:229;:::o;24762:366::-;24904:3;24925:67;24989:2;24984:3;24925:67;:::i;:::-;24918:74;;25001:93;25090:3;25001:93;:::i;:::-;25119:2;25114:3;25110:12;25103:19;;24762:366;;;:::o;25134:419::-;25300:4;25338:2;25327:9;25323:18;25315:26;;25387:9;25381:4;25377:20;25373:1;25362:9;25358:17;25351:47;25415:131;25541:4;25415:131;:::i;:::-;25407:139;;25134:419;;;:::o;25559:143::-;25616:5;25647:6;25641:13;25632:22;;25663:33;25690:5;25663:33;:::i;:::-;25559:143;;;;:::o;25708:351::-;25778:6;25827:2;25815:9;25806:7;25802:23;25798:32;25795:119;;;25833:79;;:::i;:::-;25795:119;25953:1;25978:64;26034:7;26025:6;26014:9;26010:22;25978:64;:::i;:::-;25968:74;;25924:128;25708:351;;;;:::o;26065:182::-;26205:34;26201:1;26193:6;26189:14;26182:58;26065:182;:::o;26253:366::-;26395:3;26416:67;26480:2;26475:3;26416:67;:::i;:::-;26409:74;;26492:93;26581:3;26492:93;:::i;:::-;26610:2;26605:3;26601:12;26594:19;;26253:366;;;:::o;26625:419::-;26791:4;26829:2;26818:9;26814:18;26806:26;;26878:9;26872:4;26868:20;26864:1;26853:9;26849:17;26842:47;26906:131;27032:4;26906:131;:::i;:::-;26898:139;;26625:419;;;:::o;27050:223::-;27190:34;27186:1;27178:6;27174:14;27167:58;27259:6;27254:2;27246:6;27242:15;27235:31;27050:223;:::o;27279:366::-;27421:3;27442:67;27506:2;27501:3;27442:67;:::i;:::-;27435:74;;27518:93;27607:3;27518:93;:::i;:::-;27636:2;27631:3;27627:12;27620:19;;27279:366;;;:::o;27651:419::-;27817:4;27855:2;27844:9;27840:18;27832:26;;27904:9;27898:4;27894:20;27890:1;27879:9;27875:17;27868:47;27932:131;28058:4;27932:131;:::i;:::-;27924:139;;27651:419;;;:::o;28076:221::-;28216:34;28212:1;28204:6;28200:14;28193:58;28285:4;28280:2;28272:6;28268:15;28261:29;28076:221;:::o;28303:366::-;28445:3;28466:67;28530:2;28525:3;28466:67;:::i;:::-;28459:74;;28542:93;28631:3;28542:93;:::i;:::-;28660:2;28655:3;28651:12;28644:19;;28303:366;;;:::o;28675:419::-;28841:4;28879:2;28868:9;28864:18;28856:26;;28928:9;28922:4;28918:20;28914:1;28903:9;28899:17;28892:47;28956:131;29082:4;28956:131;:::i;:::-;28948:139;;28675:419;;;:::o;29100:179::-;29240:31;29236:1;29228:6;29224:14;29217:55;29100:179;:::o;29285:366::-;29427:3;29448:67;29512:2;29507:3;29448:67;:::i;:::-;29441:74;;29524:93;29613:3;29524:93;:::i;:::-;29642:2;29637:3;29633:12;29626:19;;29285:366;;;:::o;29657:419::-;29823:4;29861:2;29850:9;29846:18;29838:26;;29910:9;29904:4;29900:20;29896:1;29885:9;29881:17;29874:47;29938:131;30064:4;29938:131;:::i;:::-;29930:139;;29657:419;;;:::o;30082:224::-;30222:34;30218:1;30210:6;30206:14;30199:58;30291:7;30286:2;30278:6;30274:15;30267:32;30082:224;:::o;30312:366::-;30454:3;30475:67;30539:2;30534:3;30475:67;:::i;:::-;30468:74;;30551:93;30640:3;30551:93;:::i;:::-;30669:2;30664:3;30660:12;30653:19;;30312:366;;;:::o;30684:419::-;30850:4;30888:2;30877:9;30873:18;30865:26;;30937:9;30931:4;30927:20;30923:1;30912:9;30908:17;30901:47;30965:131;31091:4;30965:131;:::i;:::-;30957:139;;30684:419;;;:::o;31109:222::-;31249:34;31245:1;31237:6;31233:14;31226:58;31318:5;31313:2;31305:6;31301:15;31294:30;31109:222;:::o;31337:366::-;31479:3;31500:67;31564:2;31559:3;31500:67;:::i;:::-;31493:74;;31576:93;31665:3;31576:93;:::i;:::-;31694:2;31689:3;31685:12;31678:19;;31337:366;;;:::o;31709:419::-;31875:4;31913:2;31902:9;31898:18;31890:26;;31962:9;31956:4;31952:20;31948:1;31937:9;31933:17;31926:47;31990:131;32116:4;31990:131;:::i;:::-;31982:139;;31709:419;;;:::o;32134:171::-;32274:23;32270:1;32262:6;32258:14;32251:47;32134:171;:::o;32311:366::-;32453:3;32474:67;32538:2;32533:3;32474:67;:::i;:::-;32467:74;;32550:93;32639:3;32550:93;:::i;:::-;32668:2;32663:3;32659:12;32652:19;;32311:366;;;:::o;32683:419::-;32849:4;32887:2;32876:9;32872:18;32864:26;;32936:9;32930:4;32926:20;32922:1;32911:9;32907:17;32900:47;32964:131;33090:4;32964:131;:::i;:::-;32956:139;;32683:419;;;:::o;33108:173::-;33248:25;33244:1;33236:6;33232:14;33225:49;33108:173;:::o;33287:366::-;33429:3;33450:67;33514:2;33509:3;33450:67;:::i;:::-;33443:74;;33526:93;33615:3;33526:93;:::i;:::-;33644:2;33639:3;33635:12;33628:19;;33287:366;;;:::o;33659:419::-;33825:4;33863:2;33852:9;33848:18;33840:26;;33912:9;33906:4;33902:20;33898:1;33887:9;33883:17;33876:47;33940:131;34066:4;33940:131;:::i;:::-;33932:139;;33659:419;;;:::o;34084:172::-;34224:24;34220:1;34212:6;34208:14;34201:48;34084:172;:::o;34262:366::-;34404:3;34425:67;34489:2;34484:3;34425:67;:::i;:::-;34418:74;;34501:93;34590:3;34501:93;:::i;:::-;34619:2;34614:3;34610:12;34603:19;;34262:366;;;:::o;34634:419::-;34800:4;34838:2;34827:9;34823:18;34815:26;;34887:9;34881:4;34877:20;34873:1;34862:9;34858:17;34851:47;34915:131;35041:4;34915:131;:::i;:::-;34907:139;;34634:419;;;:::o;35059:292::-;35199:34;35195:1;35187:6;35183:14;35176:58;35268:34;35263:2;35255:6;35251:15;35244:59;35337:6;35332:2;35324:6;35320:15;35313:31;35059:292;:::o;35357:366::-;35499:3;35520:67;35584:2;35579:3;35520:67;:::i;:::-;35513:74;;35596:93;35685:3;35596:93;:::i;:::-;35714:2;35709:3;35705:12;35698:19;;35357:366;;;:::o;35729:419::-;35895:4;35933:2;35922:9;35918:18;35910:26;;35982:9;35976:4;35972:20;35968:1;35957:9;35953:17;35946:47;36010:131;36136:4;36010:131;:::i;:::-;36002:139;;35729:419;;;:::o;36154:240::-;36294:34;36290:1;36282:6;36278:14;36271:58;36363:23;36358:2;36350:6;36346:15;36339:48;36154:240;:::o;36400:366::-;36542:3;36563:67;36627:2;36622:3;36563:67;:::i;:::-;36556:74;;36639:93;36728:3;36639:93;:::i;:::-;36757:2;36752:3;36748:12;36741:19;;36400:366;;;:::o;36772:419::-;36938:4;36976:2;36965:9;36961:18;36953:26;;37025:9;37019:4;37015:20;37011:1;37000:9;36996:17;36989:47;37053:131;37179:4;37053:131;:::i;:::-;37045:139;;36772:419;;;:::o;37197:169::-;37337:21;37333:1;37325:6;37321:14;37314:45;37197:169;:::o;37372:366::-;37514:3;37535:67;37599:2;37594:3;37535:67;:::i;:::-;37528:74;;37611:93;37700:3;37611:93;:::i;:::-;37729:2;37724:3;37720:12;37713:19;;37372:366;;;:::o;37744:419::-;37910:4;37948:2;37937:9;37933:18;37925:26;;37997:9;37991:4;37987:20;37983:1;37972:9;37968:17;37961:47;38025:131;38151:4;38025:131;:::i;:::-;38017:139;;37744:419;;;:::o;38169:241::-;38309:34;38305:1;38297:6;38293:14;38286:58;38378:24;38373:2;38365:6;38361:15;38354:49;38169:241;:::o;38416:366::-;38558:3;38579:67;38643:2;38638:3;38579:67;:::i;:::-;38572:74;;38655:93;38744:3;38655:93;:::i;:::-;38773:2;38768:3;38764:12;38757:19;;38416:366;;;:::o;38788:419::-;38954:4;38992:2;38981:9;38977:18;38969:26;;39041:9;39035:4;39031:20;39027:1;39016:9;39012:17;39005:47;39069:131;39195:4;39069:131;:::i;:::-;39061:139;;38788:419;;;:::o;39213:191::-;39253:4;39273:20;39291:1;39273:20;:::i;:::-;39268:25;;39307:20;39325:1;39307:20;:::i;:::-;39302:25;;39346:1;39343;39340:8;39337:34;;;39351:18;;:::i;:::-;39337:34;39396:1;39393;39389:9;39381:17;;39213:191;;;;:::o;39410:225::-;39550:34;39546:1;39538:6;39534:14;39527:58;39619:8;39614:2;39606:6;39602:15;39595:33;39410:225;:::o;39641:366::-;39783:3;39804:67;39868:2;39863:3;39804:67;:::i;:::-;39797:74;;39880:93;39969:3;39880:93;:::i;:::-;39998:2;39993:3;39989:12;39982:19;;39641:366;;;:::o;40013:419::-;40179:4;40217:2;40206:9;40202:18;40194:26;;40266:9;40260:4;40256:20;40252:1;40241:9;40237:17;40230:47;40294:131;40420:4;40294:131;:::i;:::-;40286:139;;40013:419;;;:::o;40438:442::-;40587:4;40625:2;40614:9;40610:18;40602:26;;40638:71;40706:1;40695:9;40691:17;40682:6;40638:71;:::i;:::-;40719:72;40787:2;40776:9;40772:18;40763:6;40719:72;:::i;:::-;40801;40869:2;40858:9;40854:18;40845:6;40801:72;:::i;:::-;40438:442;;;;;;:::o;40886:147::-;40987:11;41024:3;41009:18;;40886:147;;;;:::o;41039:114::-;;:::o;41159:398::-;41318:3;41339:83;41420:1;41415:3;41339:83;:::i;:::-;41332:90;;41431:93;41520:3;41431:93;:::i;:::-;41549:1;41544:3;41540:11;41533:18;;41159:398;;;:::o;41563:379::-;41747:3;41769:147;41912:3;41769:147;:::i;:::-;41762:154;;41933:3;41926:10;;41563:379;;;:::o;41948:180::-;41996:77;41993:1;41986:88;42093:4;42090:1;42083:15;42117:4;42114:1;42107:15;42134:180;42182:77;42179:1;42172:88;42279:4;42276:1;42269:15;42303:4;42300:1;42293:15;42320:143;42377:5;42408:6;42402:13;42393:22;;42424:33;42451:5;42424:33;:::i;:::-;42320:143;;;;:::o;42469:351::-;42539:6;42588:2;42576:9;42567:7;42563:23;42559:32;42556:119;;;42594:79;;:::i;:::-;42556:119;42714:1;42739:64;42795:7;42786:6;42775:9;42771:22;42739:64;:::i;:::-;42729:74;;42685:128;42469:351;;;;:::o;42826:85::-;42871:7;42900:5;42889:16;;42826:85;;;:::o;42917:158::-;42975:9;43008:61;43026:42;43035:32;43061:5;43035:32;:::i;:::-;43026:42;:::i;:::-;43008:61;:::i;:::-;42995:74;;42917:158;;;:::o;43081:147::-;43176:45;43215:5;43176:45;:::i;:::-;43171:3;43164:58;43081:147;;:::o;43234:114::-;43301:6;43335:5;43329:12;43319:22;;43234:114;;;:::o;43354:184::-;43453:11;43487:6;43482:3;43475:19;43527:4;43522:3;43518:14;43503:29;;43354:184;;;;:::o;43544:132::-;43611:4;43634:3;43626:11;;43664:4;43659:3;43655:14;43647:22;;43544:132;;;:::o;43682:108::-;43759:24;43777:5;43759:24;:::i;:::-;43754:3;43747:37;43682:108;;:::o;43796:179::-;43865:10;43886:46;43928:3;43920:6;43886:46;:::i;:::-;43964:4;43959:3;43955:14;43941:28;;43796:179;;;;:::o;43981:113::-;44051:4;44083;44078:3;44074:14;44066:22;;43981:113;;;:::o;44130:732::-;44249:3;44278:54;44326:5;44278:54;:::i;:::-;44348:86;44427:6;44422:3;44348:86;:::i;:::-;44341:93;;44458:56;44508:5;44458:56;:::i;:::-;44537:7;44568:1;44553:284;44578:6;44575:1;44572:13;44553:284;;;44654:6;44648:13;44681:63;44740:3;44725:13;44681:63;:::i;:::-;44674:70;;44767:60;44820:6;44767:60;:::i;:::-;44757:70;;44613:224;44600:1;44597;44593:9;44588:14;;44553:284;;;44557:14;44853:3;44846:10;;44254:608;;;44130:732;;;;:::o;44868:831::-;45131:4;45169:3;45158:9;45154:19;45146:27;;45183:71;45251:1;45240:9;45236:17;45227:6;45183:71;:::i;:::-;45264:80;45340:2;45329:9;45325:18;45316:6;45264:80;:::i;:::-;45391:9;45385:4;45381:20;45376:2;45365:9;45361:18;45354:48;45419:108;45522:4;45513:6;45419:108;:::i;:::-;45411:116;;45537:72;45605:2;45594:9;45590:18;45581:6;45537:72;:::i;:::-;45619:73;45687:3;45676:9;45672:19;45663:6;45619:73;:::i;:::-;44868:831;;;;;;;;:::o;45705:807::-;45954:4;45992:3;45981:9;45977:19;45969:27;;46006:71;46074:1;46063:9;46059:17;46050:6;46006:71;:::i;:::-;46087:72;46155:2;46144:9;46140:18;46131:6;46087:72;:::i;:::-;46169:80;46245:2;46234:9;46230:18;46221:6;46169:80;:::i;:::-;46259;46335:2;46324:9;46320:18;46311:6;46259:80;:::i;:::-;46349:73;46417:3;46406:9;46402:19;46393:6;46349:73;:::i;:::-;46432;46500:3;46489:9;46485:19;46476:6;46432:73;:::i;:::-;45705:807;;;;;;;;;:::o;46518:663::-;46606:6;46614;46622;46671:2;46659:9;46650:7;46646:23;46642:32;46639:119;;;46677:79;;:::i;:::-;46639:119;46797:1;46822:64;46878:7;46869:6;46858:9;46854:22;46822:64;:::i;:::-;46812:74;;46768:128;46935:2;46961:64;47017:7;47008:6;46997:9;46993:22;46961:64;:::i;:::-;46951:74;;46906:129;47074:2;47100:64;47156:7;47147:6;47136:9;47132:22;47100:64;:::i;:::-;47090:74;;47045:129;46518:663;;;;;:::o;47187:423::-;47328:4;47366:2;47355:9;47351:18;47343:26;;47415:9;47409:4;47405:20;47401:1;47390:9;47386:17;47379:47;47443:78;47516:4;47507:6;47443:78;:::i;:::-;47435:86;;47531:72;47599:2;47588:9;47584:18;47575:6;47531:72;:::i;:::-;47187:423;;;;;:::o

Swarm Source

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