S Price: $0.741344 (-8.20%)

Token

Based Share (BSHARE)

Overview

Max Total Supply

1 BSHARE

Holders

2

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.999999999999999976 BSHARE

Value
$0.00
0xc7d92bdf8f2b50b4a0c6bec31d78a455379efbff
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BasedShare

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-23
*/

/*
Based Tomb an Algorithmic Token on Sonic backed by real yields!
/*

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IWETH is IERC20 {
    function deposit() external payable;

    function withdraw(uint256) external;
}
pragma solidity 0.8.19;

interface IOracle {
    function update() external;

    function consult(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 amountOut);

    function twap(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 _amountOut);
}
pragma solidity 0.8.19;

library SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint8 a, uint8 b) internal pure returns (uint8) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint8 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint8 a, uint8 b) internal pure returns (uint8) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
pragma solidity 0.8.19;

contract Operator is Context, Ownable {

    mapping(address => bool) private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() {
    _operator[_msgSender()] = true;
    }

    function operator() public view returns (bool) {
        return _operator[_msgSender()];
    }

    modifier onlyOperator() {
        require(
            _operator[_msgSender()] == true,
            "operator: caller is not the operator"
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return _operator[_msgSender()];
    }

    function setOperator(address newOperator) public onlyOwner {
        _operator[newOperator] = true;
    }

    function removeOperator(address oldOperator) public onlyOwner {
        _operator[oldOperator] = false;
    }

}
pragma solidity ^0.8.0;

interface IRouter {
    struct Route {
        address from;
        address to;
        bool stable;
        address factory;
    }

    error ETHTransferFailed();
    error Expired();
    error InsufficientAmount();
    error InsufficientAmountA();
    error InsufficientAmountB();
    error InsufficientAmountADesired();
    error InsufficientAmountBDesired();
    error InsufficientAmountAOptimal();
    error InsufficientLiquidity();
    error InsufficientOutputAmount();
    error InvalidAmountInForETHDeposit();
    error InvalidTokenInForETHDeposit();
    error InvalidPath();
    error InvalidRouteA();
    error InvalidRouteB();
    error OnlyWETH();
    error PoolDoesNotExist();
    error PoolFactoryDoesNotExist();
    error SameAddresses();
    error ZeroAddress();

    /// @notice Address of FactoryRegistry.sol
    function factoryRegistry() external view returns (address);

    /// @notice Address of Protocol PoolFactory.sol
    function defaultFactory() external view returns (address);

    /// @notice Address of Voter.sol
    function voter() external view returns (address);

    /// @notice Interface of WETH contract used for WETH => ETH wrapping/unwrapping
    function weth() external view returns (IWETH);

    /// @dev Represents Ether. Used by zapper to determine whether to return assets as ETH/WETH.
    function ETHER() external view returns (address);

    /// @dev Struct containing information necessary to zap in and out of pools
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           Stable or volatile pool
    /// @param factory          factory of pool
    /// @param amountOutMinA    Minimum amount expected from swap leg of zap via routesA
    /// @param amountOutMinB    Minimum amount expected from swap leg of zap via routesB
    /// @param amountAMin       Minimum amount of tokenA expected from liquidity leg of zap
    /// @param amountBMin       Minimum amount of tokenB expected from liquidity leg of zap
    struct Zap {
        address tokenA;
        address tokenB;
        bool stable;
        address factory;
        uint256 amountOutMinA;
        uint256 amountOutMinB;
        uint256 amountAMin;
        uint256 amountBMin;
    }

    /// @notice Sort two tokens by which address value is less than the other
    /// @param tokenA   Address of token to sort
    /// @param tokenB   Address of token to sort
    /// @return token0  Lower address value between tokenA and tokenB
    /// @return token1  Higher address value between tokenA and tokenB
    function sortTokens(address tokenA, address tokenB) external pure returns (address token0, address token1);

    /// @notice Calculate the address of a pool by its' factory.
    ///         Used by all Router functions containing a `Route[]` or `_factory` argument.
    ///         Reverts if _factory is not approved by the FactoryRegistry
    /// @dev Returns a randomly generated address for a nonexistent pool
    /// @param tokenA   Address of token to query
    /// @param tokenB   Address of token to query
    /// @param stable   True if pool is stable, false if volatile
    /// @param _factory Address of factory which created the pool
    function poolFor(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory
    ) external view returns (address pool);

    /// @notice Fetch and sort the reserves for a pool
    /// @param tokenA       .
    /// @param tokenB       .
    /// @param stable       True if pool is stable, false if volatile
    /// @param _factory     Address of PoolFactory for tokenA and tokenB
    /// @return reserveA    Amount of reserves of the sorted token A
    /// @return reserveB    Amount of reserves of the sorted token B
    function getReserves(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory
    ) external view returns (uint256 reserveA, uint256 reserveB);

    /// @notice Perform chained getAmountOut calculations on any number of pools
    function getAmountsOut(uint256 amountIn, Route[] memory routes) external view returns (uint256[] memory amounts);

    // **** ADD LIQUIDITY ****

    /// @notice Quote the amount deposited into a Pool
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           True if pool is stable, false if volatile
    /// @param _factory         Address of PoolFactory for tokenA and tokenB
    /// @param amountADesired   Amount of tokenA desired to deposit
    /// @param amountBDesired   Amount of tokenB desired to deposit
    /// @return amountA         Amount of tokenA to actually deposit
    /// @return amountB         Amount of tokenB to actually deposit
    /// @return liquidity       Amount of liquidity token returned from deposit
    function quoteAddLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 amountADesired,
        uint256 amountBDesired
    ) external view returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    /// @notice Quote the amount of liquidity removed from a Pool
    /// @param tokenA       .
    /// @param tokenB       .
    /// @param stable       True if pool is stable, false if volatile
    /// @param _factory     Address of PoolFactory for tokenA and tokenB
    /// @param liquidity    Amount of liquidity to remove
    /// @return amountA     Amount of tokenA received
    /// @return amountB     Amount of tokenB received
    function quoteRemoveLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 liquidity
    ) external view returns (uint256 amountA, uint256 amountB);

    /// @notice Add liquidity of two tokens to a Pool
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           True if pool is stable, false if volatile
    /// @param amountADesired   Amount of tokenA desired to deposit
    /// @param amountBDesired   Amount of tokenB desired to deposit
    /// @param amountAMin       Minimum amount of tokenA to deposit
    /// @param amountBMin       Minimum amount of tokenB to deposit
    /// @param to               Recipient of liquidity token
    /// @param deadline         Deadline to receive liquidity
    /// @return amountA         Amount of tokenA to actually deposit
    /// @return amountB         Amount of tokenB to actually deposit
    /// @return liquidity       Amount of liquidity token returned from deposit
    function addLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    /// @notice Add liquidity of a token and WETH (transferred as ETH) to a Pool
    /// @param token                .
    /// @param stable               True if pool is stable, false if volatile
    /// @param amountTokenDesired   Amount of token desired to deposit
    /// @param amountTokenMin       Minimum amount of token to deposit
    /// @param amountETHMin         Minimum amount of ETH to deposit
    /// @param to                   Recipient of liquidity token
    /// @param deadline             Deadline to add liquidity
    /// @return amountToken         Amount of token to actually deposit
    /// @return amountETH           Amount of tokenETH to actually deposit
    /// @return liquidity           Amount of liquidity token returned from deposit
    function addLiquidityETH(
        address token,
        bool stable,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    // **** REMOVE LIQUIDITY ****

    /// @notice Remove liquidity of two tokens from a Pool
    /// @param tokenA       .
    /// @param tokenB       .
    /// @param stable       True if pool is stable, false if volatile
    /// @param liquidity    Amount of liquidity to remove
    /// @param amountAMin   Minimum amount of tokenA to receive
    /// @param amountBMin   Minimum amount of tokenB to receive
    /// @param to           Recipient of tokens received
    /// @param deadline     Deadline to remove liquidity
    /// @return amountA     Amount of tokenA received
    /// @return amountB     Amount of tokenB received
    function removeLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    /// @notice Remove liquidity of a token and WETH (returned as ETH) from a Pool
    /// @param token            .
    /// @param stable           True if pool is stable, false if volatile
    /// @param liquidity        Amount of liquidity to remove
    /// @param amountTokenMin   Minimum amount of token to receive
    /// @param amountETHMin     Minimum amount of ETH to receive
    /// @param to               Recipient of liquidity token
    /// @param deadline         Deadline to receive liquidity
    /// @return amountToken     Amount of token received
    /// @return amountETH       Amount of ETH received
    function removeLiquidityETH(
        address token,
        bool stable,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    /// @notice Remove liquidity of a fee-on-transfer token and WETH (returned as ETH) from a Pool
    /// @param token            .
    /// @param stable           True if pool is stable, false if volatile
    /// @param liquidity        Amount of liquidity to remove
    /// @param amountTokenMin   Minimum amount of token to receive
    /// @param amountETHMin     Minimum amount of ETH to receive
    /// @param to               Recipient of liquidity token
    /// @param deadline         Deadline to receive liquidity
    /// @return amountETH       Amount of ETH received
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        bool stable,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    // **** SWAP ****

    /// @notice Swap one token for another
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    /// @return amounts     Array of amounts returned per route
    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    /// @notice Swap ETH for a token
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    /// @return amounts     Array of amounts returned per route
    function swapExactETHForTokens(
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    /// @notice Swap a token for WETH (returned as ETH)
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired ETH
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    /// @return amounts     Array of amounts returned per route
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    /// @notice Swap one token for another without slippage protection
    /// @return amounts     Array of amounts to swap  per route
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function UNSAFE_swapExactTokensForTokens(
        uint256[] memory amounts,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory);

    // **** SWAP (supporting fee-on-transfer tokens) ****

    /// @notice Swap one token for another supporting fee-on-transfer tokens
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external;

    /// @notice Swap ETH for a token supporting fee-on-transfer tokens
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external payable;

    /// @notice Swap a token for WETH (returned as ETH) supporting fee-on-transfer tokens
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired ETH
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external;

    /// @notice Zap a token A into a pool (B, C). (A can be equal to B or C).
    ///         Supports standard ERC20 tokens only (i.e. not fee-on-transfer tokens etc).
    ///         Slippage is required for the initial swap.
    ///         Additional slippage may be required when adding liquidity as the
    ///         price of the token may have changed.
    /// @param tokenIn      Token you are zapping in from (i.e. input token).
    /// @param amountInA    Amount of input token you wish to send down routesA
    /// @param amountInB    Amount of input token you wish to send down routesB
    /// @param zapInPool    Contains zap struct information. See Zap struct.
    /// @param routesA      Route used to convert input token to tokenA
    /// @param routesB      Route used to convert input token to tokenB
    /// @param to           Address you wish to mint liquidity to.
    /// @param stake        Auto-stake liquidity in corresponding gauge.
    /// @return liquidity   Amount of LP tokens created from zapping in.
    function zapIn(
        address tokenIn,
        uint256 amountInA,
        uint256 amountInB,
        Zap calldata zapInPool,
        Route[] calldata routesA,
        Route[] calldata routesB,
        address to,
        bool stake
    ) external payable returns (uint256 liquidity);

    /// @notice Zap out a pool (B, C) into A.
    ///         Supports standard ERC20 tokens only (i.e. not fee-on-transfer tokens etc).
    ///         Slippage is required for the removal of liquidity.
    ///         Additional slippage may be required on the swap as the
    ///         price of the token may have changed.
    /// @param tokenOut     Token you are zapping out to (i.e. output token).
    /// @param liquidity    Amount of liquidity you wish to remove.
    /// @param zapOutPool   Contains zap struct information. See Zap struct.
    /// @param routesA      Route used to convert tokenA into output token.
    /// @param routesB      Route used to convert tokenB into output token.
    function zapOut(
        address tokenOut,
        uint256 liquidity,
        Zap calldata zapOutPool,
        Route[] calldata routesA,
        Route[] calldata routesB
    ) external;

    /// @notice Used to generate params required for zapping in.
    ///         Zap in => remove liquidity then swap.
    ///         Apply slippage to expected swap values to account for changes in reserves in between.
    /// @dev Output token refers to the token you want to zap in from.
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           .
    /// @param _factory         .
    /// @param amountInA        Amount of input token you wish to send down routesA
    /// @param amountInB        Amount of input token you wish to send down routesB
    /// @param routesA          Route used to convert input token to tokenA
    /// @param routesB          Route used to convert input token to tokenB
    /// @return amountOutMinA   Minimum output expected from swapping input token to tokenA.
    /// @return amountOutMinB   Minimum output expected from swapping input token to tokenB.
    /// @return amountAMin      Minimum amount of tokenA expected from depositing liquidity.
    /// @return amountBMin      Minimum amount of tokenB expected from depositing liquidity.
    function generateZapInParams(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 amountInA,
        uint256 amountInB,
        Route[] calldata routesA,
        Route[] calldata routesB
    ) external view returns (uint256 amountOutMinA, uint256 amountOutMinB, uint256 amountAMin, uint256 amountBMin);

    /// @notice Used to generate params required for zapping out.
    ///         Zap out => swap then add liquidity.
    ///         Apply slippage to expected liquidity values to account for changes in reserves in between.
    /// @dev Output token refers to the token you want to zap out of.
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           .
    /// @param _factory         .
    /// @param liquidity        Amount of liquidity being zapped out of into a given output token.
    /// @param routesA          Route used to convert tokenA into output token.
    /// @param routesB          Route used to convert tokenB into output token.
    /// @return amountOutMinA   Minimum output expected from swapping tokenA into output token.
    /// @return amountOutMinB   Minimum output expected from swapping tokenB into output token.
    /// @return amountAMin      Minimum amount of tokenA expected from withdrawing liquidity.
    /// @return amountBMin      Minimum amount of tokenB expected from withdrawing liquidity.
    function generateZapOutParams(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 liquidity,
        Route[] calldata routesA,
        Route[] calldata routesB
    ) external view returns (uint256 amountOutMinA, uint256 amountOutMinB, uint256 amountAMin, uint256 amountBMin);

    /// @notice Used by zapper to determine appropriate ratio of A to B to deposit liquidity. Assumes stable pool.
    /// @dev Returns stable liquidity ratio of B to (A + B).
    ///      E.g. if ratio is 0.4, it means there is more of A than there is of B.
    ///      Therefore you should deposit more of token A than B.
    /// @param tokenA   tokenA of stable pool you are zapping into.
    /// @param tokenB   tokenB of stable pool you are zapping into.
    /// @param factory  Factory that created stable pool.
    /// @return ratio   Ratio of token0 to token1 required to deposit into zap.
    function quoteStableLiquidityRatio(
        address tokenA,
        address tokenB,
        address factory
    ) external view returns (uint256 ratio);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to
     * 0 before setting it to a non-zero value.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}
pragma solidity 0.8.19;

interface IBasisAsset {
    function burn(uint256 amount) external;

    function burnFrom(address from, uint256 amount) external;
}

contract BasedShare is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 public constant LIQUIDITY_ALLOCATION = 1 ether; // plus one
    IRouter public constant ROUTER =
        IRouter(0x1D368773735ee1E678950B7A97bcA2CafB330CDc);
    address public constant FACTORY =
        0x2dA25E7446A70D7be65fd4c053948BEcAA6374c8;
    address public constant WETH = 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38;
    address public BASED;
    bool public swap = true;

    constructor(address _BASED) ERC20("Based Share", "BSHARE") {
        BASED = _BASED;
        _mint(_msgSender(), LIQUIDITY_ALLOCATION);
        taxManager = _msgSender();
    }

    function setTaxManager(address _taxManager) public onlyTaxManager {
        taxManager = _taxManager;
    }

    function _burnBASED(uint256 taxAmount) internal {
        IRouter.Route[] memory routes = new IRouter.Route[](2);

        routes[0] = IRouter.Route({
            from: address(this),
            to: WETH,
            stable: false,
            factory: FACTORY
        });

        routes[1] = IRouter.Route({
            from: WETH,
            to: BASED,
            stable: true,
            factory: FACTORY
        });

        IERC20(address(this)).approve(address(ROUTER), taxAmount);
        ROUTER.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            taxAmount,
            0,
            routes,
            address(this),
            block.timestamp.add(60)
        );

        uint256 amountToBurn = IERC20(BASED).balanceOf(address(this));
        IBasisAsset(BASED).burn(amountToBurn);
    }

    function mint(address account, uint256 amount) external onlyOperator {
        _mint(account, amount);
    }

    address public taxManager;
    address public oracle;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;
    mapping(address => bool) public isLP;

    // Current tax rate
    uint256 public taxRate;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [
        0,
        5e17,
        6e17,
        7e17,
        8e17,
        9e17,
        9.7e17,
        1e18,
        1.05e18,
        1.10e18
    ];
    uint256[] public taxTiersRates = [
        1000,
        800,
        700,
        500,
        250,
        100,
        0,
        0,
        0,
        0
    ];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    modifier onlyTaxManager() {
        require(taxManager == _msgSender(), "Caller is not the tax office");
        _;
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersTwapsCount(),
            "Index has to lower than count of tax tiers"
        );
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersRatesCount(),
            "Index has to lower than count of tax tiers"
        );
        taxTiersRates[_index] = _value;
        return true;
    }

    function _getBasedPrice() internal view returns (uint256 _basedPrice) {
        try IOracle(oracle).twap(address(BASED), 1e18) returns (
            uint144 _price
        ) {
            return uint256(_price);
        } catch {
            revert("Based: failed to fetch BASED price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _basedPrice) internal returns (uint256) {
        for (
            uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1);
            tierId >= 0;
            --tierId
        ) {
            if (_basedPrice >= taxTiersTwaps[tierId]) {
                require(
                    taxTiersRates[tierId] < 10000,
                    "tax equal or bigger to 100%"
                );
                taxRate = taxTiersRates[tierId];
                return taxTiersRates[tierId];
            }
        }
        return 0;
    }

    function setLP(address _LP, bool _isLP) public onlyTaxManager {
        isLP[_LP] = _isLP;
    }

    function setSwap(bool _swap) public onlyTaxManager {
        swap = _swap;
    }

    function enableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = false;
    }

    function setOracle(address _oracle) public onlyTaxManager {
        require(_oracle != address(0), "oracle address cannot be 0 address");
        oracle = _oracle;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxManager {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate <= 2000, "tax equal or bigger to 20%");
        taxRate = _taxRate;
    }

    function excludeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transferUSHARE(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            allowance(sender, _msgSender()).sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );

        return true;
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        address sender = _msgSender();
        _transferUSHARE(sender, recipient, amount);
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);
        if (swap) {
            _transfer(sender, address(this), taxAmount);
            _burnBASED(taxAmount);
        } else {
            _burn(sender, taxAmount);
        }
        _transfer(sender, recipient, amountAfterTax);
    }

    function _transferUSHARE(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 currentTaxRate = 0;
        if (autoCalculateTax) {
            uint256 currentBasedPrice = _getBasedPrice();
            currentTaxRate = _updateTaxRate(currentBasedPrice);
        }
        if (!autoCalculateTax) {
            currentTaxRate = taxRate;
        }
        if (
            (isLP[recipient]) &&
            currentTaxRate != 0 &&
            !excludedAddresses[sender] &&
            !excludedAddresses[recipient]
        ) {
            _transferWithTax(sender, recipient, amount);
        } else {
            _transfer(sender, recipient, amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_BASED","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASED","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FACTORY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"autoCalculateTax","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oldOperator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_LP","type":"address"},{"internalType":"bool","name":"_isLP","type":"bool"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swap","type":"bool"}],"name":"setSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxManager","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600760146101000a81548160ff021916908315150217905550604051806101400160405280600067ffffffffffffffff1681526020016706f05b59d3b2000067ffffffffffffffff168152602001670853a0d2313c000067ffffffffffffffff1681526020016709b6e64a8ec6000067ffffffffffffffff168152602001670b1a2bc2ec50000067ffffffffffffffff168152602001670c7d713b49da000067ffffffffffffffff168152602001670d7621dc5821000067ffffffffffffffff168152602001670de0b6b3a764000067ffffffffffffffff168152602001670e92596fd629000067ffffffffffffffff168152602001670f43fc2c04ee000067ffffffffffffffff16815250600c90600a6200012492919062000606565b506040518061014001604052806103e861ffff16815260200161032061ffff1681526020016102bc61ffff1681526020016101f461ffff16815260200160fa61ffff168152602001606461ffff168152602001600061ffff168152602001600061ffff168152602001600061ffff168152602001600061ffff16815250600d90600a620001b392919062000664565b50348015620001c157600080fd5b50604051620054bf380380620054bf8339818101604052810190620001e7919062000745565b6040518060400160405280600b81526020017f42617365642053686172650000000000000000000000000000000000000000008152506040518060400160405280600681526020017f42534841524500000000000000000000000000000000000000000000000000008152508160039081620002649190620009f1565b508060049081620002769190620009f1565b505050620002996200028d620003c160201b60201c565b620003c960201b60201c565b600160066000620002af620003c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200036a62000355620003c160201b60201c565b670de0b6b3a76400006200048f60201b60201c565b6200037a620003c160201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000bf3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000501576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f89062000b39565b60405180910390fd5b6200051560008383620005fc60201b60201c565b806002600082825462000529919062000b8a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005dc919062000bd6565b60405180910390a3620005f8600083836200060160201b60201c565b5050565b505050565b505050565b82805482825590600052602060002090810192821562000651579160200282015b8281111562000650578251829067ffffffffffffffff1690559160200191906001019062000627565b5b509050620006609190620006bc565b5090565b828054828255906000526020600020908101928215620006a9579160200282015b82811115620006a8578251829061ffff1690559160200191906001019062000685565b5b509050620006b89190620006bc565b5090565b5b80821115620006d7576000816000905550600101620006bd565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200070d82620006e0565b9050919050565b6200071f8162000700565b81146200072b57600080fd5b50565b6000815190506200073f8162000714565b92915050565b6000602082840312156200075e576200075d620006db565b5b60006200076e848285016200072e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f957607f821691505b6020821081036200080f576200080e620007b1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200083a565b6200088586836200083a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008d2620008cc620008c6846200089d565b620008a7565b6200089d565b9050919050565b6000819050919050565b620008ee83620008b1565b62000906620008fd82620008d9565b84845462000847565b825550505050565b600090565b6200091d6200090e565b6200092a818484620008e3565b505050565b5b8181101562000952576200094660008262000913565b60018101905062000930565b5050565b601f821115620009a1576200096b8162000815565b62000976846200082a565b8101602085101562000986578190505b6200099e62000995856200082a565b8301826200092f565b50505b505050565b600082821c905092915050565b6000620009c660001984600802620009a6565b1980831691505092915050565b6000620009e18383620009b3565b9150826002028217905092915050565b620009fc8262000777565b67ffffffffffffffff81111562000a185762000a1762000782565b5b62000a248254620007e0565b62000a3182828562000956565b600060209050601f83116001811462000a69576000841562000a54578287015190505b62000a608582620009d3565b86555062000ad0565b601f19841662000a798662000815565b60005b8281101562000aa35784890151825560018201915060208501945060208101905062000a7c565b8683101562000ac3578489015162000abf601f891682620009b3565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b21601f8362000ad8565b915062000b2e8262000ae9565b602082019050919050565b6000602082019050818103600083015262000b548162000b12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b97826200089d565b915062000ba4836200089d565b925082820190508082111562000bbf5762000bbe62000b5b565b5b92915050565b62000bd0816200089d565b82525050565b600060208201905062000bed600083018462000bc5565b92915050565b6148bc8062000c036000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c8063771a3a1d11610182578063a9059cbb116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a9535146108ea578063f2fde38b14610908578063f9428f3814610924578063ff87fc7c14610942576102bb565b8063cf011b261461085a578063dd62ed3e1461088a578063ebca1bd9146108ba576102bb565b8063a9059cbb14610788578063ac8a584a146107b8578063ad5c4648146107d4578063b3ab15fb146107f2578063b87c5a4a1461080e578063c6d69a301461083e576102bb565b80638d3cc8181161013b5780638d3cc818146106b05780638da5cb5b146106ce57806393995d4b146106ec57806395d89b411461071c578063a457c2d71461073a578063a6431bba1461076a576102bb565b8063771a3a1d146105ee57806379cc67901461060c5780637adbf973146106285780637dc0d1d0146106445780637df0f767146106625780638119c06514610692576102bb565b806340c10f19116102265780635c29908d116101df5780635c29908d1461052c57806363046c861461055c57806365bbacd91461057a57806366206ce91461058457806370a08231146105b4578063715018a6146105e4576102bb565b806340c10f191461046a57806342966c681461048657806342c6b4f1146104a25780634456eda2146104d25780634d237730146104f0578063570ca7351461050e576102bb565b806328d679381161027857806328d67938146103945780632dd31000146103b0578063313ce567146103ce57806332fe7b26146103ec5780633758e6ce1461040a578063395093511461043a576102bb565b806306fdde03146102c0578063095e3913146102de578063095ea7b3146102fa57806314f89c981461032a57806318160ddd1461034657806323b872dd14610364575b600080fd5b6102c861094c565b6040516102d591906132a5565b60405180910390f35b6102f860048036038101906102f3919061332a565b6109de565b005b610314600480360381019061030f919061338d565b610ab9565b60405161032191906133e8565b60405180910390f35b610344600480360381019061033f919061342f565b610adc565b005b61034e610b90565b60405161035b919061346b565b60405180910390f35b61037e60048036038101906103799190613486565b610b9a565b60405161038b91906133e8565b60405180910390f35b6103ae60048036038101906103a991906134d9565b610c00565b005b6103b8610cf2565b6040516103c59190613528565b60405180910390f35b6103d6610d0a565b6040516103e3919061355f565b60405180910390f35b6103f4610d13565b60405161040191906135d9565b60405180910390f35b610424600480360381019061041f919061332a565b610d2b565b60405161043191906133e8565b60405180910390f35b610454600480360381019061044f919061338d565b610eb2565b60405161046191906133e8565b60405180910390f35b610484600480360381019061047f919061338d565b610ee9565b005b6104a0600480360381019061049b91906135f4565b610f91565b005b6104bc60048036038101906104b791906135f4565b610fa5565b6040516104c9919061346b565b60405180910390f35b6104da610fc9565b6040516104e791906133e8565b60405180910390f35b6104f8611024565b6040516105059190613528565b60405180910390f35b61051661104a565b60405161052391906133e8565b60405180910390f35b610546600480360381019061054191906135f4565b6110a5565b604051610553919061346b565b60405180910390f35b6105646110c9565b6040516105719190613528565b60405180910390f35b6105826110ef565b005b61059e6004803603810190610599919061364d565b6111a3565b6040516105ab91906133e8565b60405180910390f35b6105ce60048036038101906105c9919061332a565b6113a4565b6040516105db919061346b565b60405180910390f35b6105ec6113ec565b005b6105f6611400565b604051610603919061346b565b60405180910390f35b6106266004803603810190610621919061338d565b611406565b005b610642600480360381019061063d919061332a565b611426565b005b61064c611570565b6040516106599190613528565b60405180910390f35b61067c6004803603810190610677919061332a565b611596565b60405161068991906133e8565b60405180910390f35b61069a6115b6565b6040516106a791906133e8565b60405180910390f35b6106b86115c9565b6040516106c591906133e8565b60405180910390f35b6106d66115dc565b6040516106e39190613528565b60405180910390f35b6107066004803603810190610701919061332a565b611606565b60405161071391906133e8565b60405180910390f35b61072461178c565b60405161073191906132a5565b60405180910390f35b610754600480360381019061074f919061338d565b61181e565b60405161076191906133e8565b60405180910390f35b610772611895565b60405161077f919061346b565b60405180910390f35b6107a2600480360381019061079d919061338d565b6118a2565b6040516107af91906133e8565b60405180910390f35b6107d260048036038101906107cd919061332a565b6118c5565b005b6107dc611928565b6040516107e99190613528565b60405180910390f35b61080c6004803603810190610807919061332a565b611940565b005b6108286004803603810190610823919061364d565b6119a3565b60405161083591906133e8565b60405180910390f35b610858600480360381019061085391906135f4565b611aff565b005b610874600480360381019061086f919061332a565b611c35565b60405161088191906133e8565b60405180910390f35b6108a4600480360381019061089f919061368d565b611c55565b6040516108b1919061346b565b60405180910390f35b6108d460048036038101906108cf919061332a565b611cdc565b6040516108e191906133e8565b60405180910390f35b6108f2611d32565b6040516108ff919061346b565b60405180910390f35b610922600480360381019061091d919061332a565b611d3f565b005b61092c611dc2565b604051610939919061346b565b60405180910390f35b61094a611dce565b005b60606003805461095b906136fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610987906136fc565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b6109e6611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613779565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ac4611e82565b9050610ad1818585611e8a565b600191505092915050565b610ae4611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613779565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b6000600254905090565b6000610ba7848484612053565b610bf584610bb3611e82565b610bf08560405180606001604052806028815260200161485f60289139610be18a610bdc611e82565b611c55565b6121ca9092919063ffffffff16565b611e8a565b600190509392505050565b610c08611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90613779565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b732da25e7446a70d7be65fd4c053948becaa6374c881565b60006012905090565b731d368773735ee1e678950b7a97bca2cafb330cdc81565b6000610d35611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90613779565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906137e5565b60405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600080610ebd611e82565b9050610ede818585610ecf8589611c55565b610ed99190613834565b611e8a565b600191505092915050565b6001151560066000610ef9611e82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906138da565b60405180910390fd5b610f8d828261221f565b5050565b610fa2610f9c611e82565b82612375565b50565b600c8181548110610fb557600080fd5b906000526020600020016000915090505481565b600060066000610fd7611e82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060066000611058611e82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b600d81815481106110b557600080fd5b906000526020600020016000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110f7611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613779565b60405180910390fd5b6000600960146101000a81548160ff021916908315150217905550565b60006111ad611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613779565b60405180910390fd5b60008360ff161015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613946565b60405180910390fd5b61128b611895565b8360ff16106112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906139d8565b60405180910390fd5b60008360ff16111561131557600c6001846112ea91906139f8565b60ff16815481106112fe576112fd613a2d565b5b9060005260206000200154821161131457600080fd5b5b6113306001611322611895565b61254290919063ffffffff16565b8360ff16101561137457600c6001846113499190613a5c565b60ff168154811061135d5761135c613a2d565b5b9060005260206000200154821061137357600080fd5b5b81600c8460ff168154811061138c5761138b613a2d565b5b90600052602060002001819055506001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f4612558565b6113fe60006125d6565b565b600b5481565b61141882611412611e82565b8361269c565b6114228282612375565b5050565b61142e611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390613b03565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b600760149054906101000a900460ff1681565b600960149054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611610611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613779565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613b6f565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b60606004805461179b906136fc565b80601f01602080910402602001604051908101604052809291908181526020018280546117c7906136fc565b80156118145780601f106117e957610100808354040283529160200191611814565b820191906000526020600020905b8154815290600101906020018083116117f757829003601f168201915b5050505050905090565b600080611829611e82565b905060006118378286611c55565b90508381101561187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613c01565b60405180910390fd5b6118898286868403611e8a565b60019250505092915050565b6000600c80549050905090565b6000806118ad611e82565b90506118ba818585612053565b600191505092915050565b6118cd612558565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b73039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b611948612558565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006119ad611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390613779565b60405180910390fd5b60008360ff161015611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90613946565b60405180910390fd5b611a8b611d32565b8360ff1610611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906139d8565b60405180910390fd5b81600d8460ff1681548110611ae757611ae6613a2d565b5b90600052602060002001819055506001905092915050565b611b07611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613779565b60405180910390fd5b600960149054906101000a900460ff1615611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90613c93565b60405180910390fd5b6107d0811115611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613cff565b60405180910390fd5b80600b8190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d80549050905090565b611d47612558565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90613d91565b60405180910390fd5b611dbf816125d6565b50565b670de0b6b3a764000081565b611dd6611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90613779565b60405180910390fd5b6001600960146101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613e23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f90613eb5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612046919061346b565b60405180910390a3505050565b6000600960149054906101000a900460ff1615612083576000612074612728565b905061207f81612845565b9150505b600960149054906101000a900460ff1661209d57600b5490505b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120f7575060008114155b801561214d5750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121a35750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121b8576121b384848461296f565b6121c4565b6121c38484846129fe565b5b50505050565b6000838311158290612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220991906132a5565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590613f21565b60405180910390fd5b61229a60008383612c74565b80600260008282546122ac9190613834565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161235d919061346b565b60405180910390a361237160008383612c79565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db90613fb3565b60405180910390fd5b6123f082600083612c74565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90614045565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612529919061346b565b60405180910390a361253d83600084612c79565b505050565b600081836125509190614065565b905092915050565b612560611e82565b73ffffffffffffffffffffffffffffffffffffffff1661257e6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb906140e5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126a88484611c55565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146127225781811015612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614151565b60405180910390fd5b6127218484848403611e8a565b5b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636808a128600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a76400006040518363ffffffff1660e01b81526004016127b19291906141ac565b602060405180830381865afa9250505080156127eb57506040513d601f19601f820116820180604052508101906127e8919061421f565b60015b61282a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612821906142be565b60405180910390fd5b8071ffffffffffffffffffffffffffffffffffff1691505090565b6000806128666001612855611895565b60ff16612c7e90919063ffffffff16565b90505b60008160ff161061296457600c8160ff168154811061288b5761288a613a2d565b5b9060005260206000200154831061295357612710600d8260ff16815481106128b6576128b5613a2d565b5b906000526020600020015410612901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f89061432a565b60405180910390fd5b600d8160ff168154811061291857612917613a2d565b5b9060005260206000200154600b81905550600d8160ff16815481106129405761293f613a2d565b5b906000526020600020015491505061296a565b8061295d9061434a565b9050612869565b50600090505b919050565b600061299a61271061298c600b5485612cc890919063ffffffff16565b612cde90919063ffffffff16565b905060006129b1828461254290919063ffffffff16565b9050600760149054906101000a900460ff16156129e1576129d38530846129fe565b6129dc82612cf4565b6129ec565b6129eb8583612375565b5b6129f78585836129fe565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a64906143e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614477565b60405180910390fd5b612ae7838383612c74565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6490614509565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c5b919061346b565b60405180910390a3612c6e848484612c79565b50505050565b505050565b505050565b6000612cc083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613129565b905092915050565b60008183612cd69190614529565b905092915050565b60008183612cec919061459a565b905092915050565b6000600267ffffffffffffffff811115612d1157612d106145cb565b5b604051908082528060200260200182016040528015612d4a57816020015b612d376131a9565b815260200190600190039081612d2f5790505b50905060405180608001604052803073ffffffffffffffffffffffffffffffffffffffff16815260200173039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff168152602001600015158152602001732da25e7446a70d7be65fd4c053948becaa6374c873ffffffffffffffffffffffffffffffffffffffff1681525081600081518110612def57612dee613a2d565b5b6020026020010181905250604051806080016040528073039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff168152602001600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600115158152602001732da25e7446a70d7be65fd4c053948becaa6374c873ffffffffffffffffffffffffffffffffffffffff1681525081600181518110612ebe57612ebd613a2d565b5b60200260200101819052503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3731d368773735ee1e678950b7a97bca2cafb330cdc846040518363ffffffff1660e01b8152600401612f189291906145fa565b6020604051808303816000875af1158015612f37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5b9190614638565b50731d368773735ee1e678950b7a97bca2cafb330cdc73ffffffffffffffffffffffffffffffffffffffff166388cd821e8360008430612fa5603c4261319390919063ffffffff16565b6040518663ffffffff1660e01b8152600401612fc59594939291906147c2565b600060405180830381600087803b158015612fdf57600080fd5b505af1158015612ff3573d6000803e3d6000fd5b505050506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016130549190613528565b602060405180830381865afa158015613071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130959190614831565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016130f2919061346b565b600060405180830381600087803b15801561310c57600080fd5b505af1158015613120573d6000803e3d6000fd5b50505050505050565b60008360ff168360ff1611158290613177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316e91906132a5565b60405180910390fd5b506000838561318691906139f8565b9050809150509392505050565b600081836131a19190613834565b905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561324f578082015181840152602081019050613234565b60008484015250505050565b6000601f19601f8301169050919050565b600061327782613215565b6132818185613220565b9350613291818560208601613231565b61329a8161325b565b840191505092915050565b600060208201905081810360008301526132bf818461326c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132f7826132cc565b9050919050565b613307816132ec565b811461331257600080fd5b50565b600081359050613324816132fe565b92915050565b6000602082840312156133405761333f6132c7565b5b600061334e84828501613315565b91505092915050565b6000819050919050565b61336a81613357565b811461337557600080fd5b50565b60008135905061338781613361565b92915050565b600080604083850312156133a4576133a36132c7565b5b60006133b285828601613315565b92505060206133c385828601613378565b9150509250929050565b60008115159050919050565b6133e2816133cd565b82525050565b60006020820190506133fd60008301846133d9565b92915050565b61340c816133cd565b811461341757600080fd5b50565b60008135905061342981613403565b92915050565b600060208284031215613445576134446132c7565b5b60006134538482850161341a565b91505092915050565b61346581613357565b82525050565b6000602082019050613480600083018461345c565b92915050565b60008060006060848603121561349f5761349e6132c7565b5b60006134ad86828701613315565b93505060206134be86828701613315565b92505060406134cf86828701613378565b9150509250925092565b600080604083850312156134f0576134ef6132c7565b5b60006134fe85828601613315565b925050602061350f8582860161341a565b9150509250929050565b613522816132ec565b82525050565b600060208201905061353d6000830184613519565b92915050565b600060ff82169050919050565b61355981613543565b82525050565b60006020820190506135746000830184613550565b92915050565b6000819050919050565b600061359f61359a613595846132cc565b61357a565b6132cc565b9050919050565b60006135b182613584565b9050919050565b60006135c3826135a6565b9050919050565b6135d3816135b8565b82525050565b60006020820190506135ee60008301846135ca565b92915050565b60006020828403121561360a576136096132c7565b5b600061361884828501613378565b91505092915050565b61362a81613543565b811461363557600080fd5b50565b60008135905061364781613621565b92915050565b60008060408385031215613664576136636132c7565b5b600061367285828601613638565b925050602061368385828601613378565b9150509250929050565b600080604083850312156136a4576136a36132c7565b5b60006136b285828601613315565b92505060206136c385828601613315565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061371457607f821691505b602082108103613727576137266136cd565b5b50919050565b7f43616c6c6572206973206e6f742074686520746178206f666669636500000000600082015250565b6000613763601c83613220565b915061376e8261372d565b602082019050919050565b6000602082019050818103600083015261379281613756565b9050919050565b7f616464726573732063616e2774206265206578636c7564656400000000000000600082015250565b60006137cf601983613220565b91506137da82613799565b602082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061383f82613357565b915061384a83613357565b925082820190508082111561386257613861613805565b5b92915050565b7f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b60006138c4602483613220565b91506138cf82613868565b604082019050919050565b600060208201905081810360008301526138f3816138b7565b9050919050565b7f496e6465782068617320746f20626520686967686572207468616e2030000000600082015250565b6000613930601d83613220565b915061393b826138fa565b602082019050919050565b6000602082019050818103600083015261395f81613923565b9050919050565b7f496e6465782068617320746f206c6f776572207468616e20636f756e74206f6660008201527f2074617820746965727300000000000000000000000000000000000000000000602082015250565b60006139c2602a83613220565b91506139cd82613966565b604082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b6000613a0382613543565b9150613a0e83613543565b9250828203905060ff811115613a2757613a26613805565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a6782613543565b9150613a7283613543565b9250828201905060ff811115613a8b57613a8a613805565b5b92915050565b7f6f7261636c6520616464726573732063616e6e6f74206265203020616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aed602283613220565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b7f616464726573732063616e277420626520696e636c7564656400000000000000600082015250565b6000613b59601983613220565b9150613b6482613b23565b602082019050919050565b60006020820190508181036000830152613b8881613b4c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613beb602583613220565b9150613bf682613b8f565b604082019050919050565b60006020820190508181036000830152613c1a81613bde565b9050919050565b7f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e6160008201527f626c656400000000000000000000000000000000000000000000000000000000602082015250565b6000613c7d602483613220565b9150613c8882613c21565b604082019050919050565b60006020820190508181036000830152613cac81613c70565b9050919050565b7f74617820657175616c206f722062696767657220746f20323025000000000000600082015250565b6000613ce9601a83613220565b9150613cf482613cb3565b602082019050919050565b60006020820190508181036000830152613d1881613cdc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d7b602683613220565b9150613d8682613d1f565b604082019050919050565b60006020820190508181036000830152613daa81613d6e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e0d602483613220565b9150613e1882613db1565b604082019050919050565b60006020820190508181036000830152613e3c81613e00565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e9f602283613220565b9150613eaa82613e43565b604082019050919050565b60006020820190508181036000830152613ece81613e92565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613f0b601f83613220565b9150613f1682613ed5565b602082019050919050565b60006020820190508181036000830152613f3a81613efe565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f9d602183613220565b9150613fa882613f41565b604082019050919050565b60006020820190508181036000830152613fcc81613f90565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061402f602283613220565b915061403a82613fd3565b604082019050919050565b6000602082019050818103600083015261405e81614022565b9050919050565b600061407082613357565b915061407b83613357565b925082820390508181111561409357614092613805565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140cf602083613220565b91506140da82614099565b602082019050919050565b600060208201905081810360008301526140fe816140c2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061413b601d83613220565b915061414682614105565b602082019050919050565b6000602082019050818103600083015261416a8161412e565b9050919050565b6000819050919050565b600061419661419161418c84614171565b61357a565b613357565b9050919050565b6141a68161417b565b82525050565b60006040820190506141c16000830185613519565b6141ce602083018461419d565b9392505050565b600071ffffffffffffffffffffffffffffffffffff82169050919050565b6141fc816141d5565b811461420757600080fd5b50565b600081519050614219816141f3565b92915050565b600060208284031215614235576142346132c7565b5b60006142438482850161420a565b91505092915050565b7f42617365643a206661696c656420746f2066657463682042415345442070726960008201527f63652066726f6d204f7261636c65000000000000000000000000000000000000602082015250565b60006142a8602e83613220565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f74617820657175616c206f722062696767657220746f20313030250000000000600082015250565b6000614314601b83613220565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b600061435582613543565b91506000820361436857614367613805565b5b600182039050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143cf602583613220565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614461602383613220565b915061446c82614405565b604082019050919050565b6000602082019050818103600083015261449081614454565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006144f3602683613220565b91506144fe82614497565b604082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b600061453482613357565b915061453f83613357565b925082820261454d81613357565b9150828204841483151761456457614563613805565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145a582613357565b91506145b083613357565b9250826145c0576145bf61456b565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060408201905061460f6000830185613519565b61461c602083018461345c565b9392505050565b60008151905061463281613403565b92915050565b60006020828403121561464e5761464d6132c7565b5b600061465c84828501614623565b91505092915050565b6000819050919050565b600061468a61468561468084614665565b61357a565b613357565b9050919050565b61469a8161466f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146d5816132ec565b82525050565b6146e4816133cd565b82525050565b60808201600082015161470060008501826146cc565b50602082015161471360208501826146cc565b50604082015161472660408501826146db565b50606082015161473960608501826146cc565b50505050565b600061474b83836146ea565b60808301905092915050565b6000602082019050919050565b600061476f826146a0565b61477981856146ab565b9350614784836146bc565b8060005b838110156147b557815161479c888261473f565b97506147a783614757565b925050600181019050614788565b5085935050505092915050565b600060a0820190506147d7600083018861345c565b6147e46020830187614691565b81810360408301526147f68186614764565b90506148056060830185613519565b614812608083018461345c565b9695505050505050565b60008151905061482b81613361565b92915050565b600060208284031215614847576148466132c7565b5b60006148558482850161481c565b9150509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ccdb6e1abcd79934bbfb45e6a6a382175ce5d3d9a2c13b6ac493bbbc352a2db564736f6c63430008130033000000000000000000000000336c0ddcf11c844178df37a6304f03cfd2e25b13

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c8063771a3a1d11610182578063a9059cbb116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a9535146108ea578063f2fde38b14610908578063f9428f3814610924578063ff87fc7c14610942576102bb565b8063cf011b261461085a578063dd62ed3e1461088a578063ebca1bd9146108ba576102bb565b8063a9059cbb14610788578063ac8a584a146107b8578063ad5c4648146107d4578063b3ab15fb146107f2578063b87c5a4a1461080e578063c6d69a301461083e576102bb565b80638d3cc8181161013b5780638d3cc818146106b05780638da5cb5b146106ce57806393995d4b146106ec57806395d89b411461071c578063a457c2d71461073a578063a6431bba1461076a576102bb565b8063771a3a1d146105ee57806379cc67901461060c5780637adbf973146106285780637dc0d1d0146106445780637df0f767146106625780638119c06514610692576102bb565b806340c10f19116102265780635c29908d116101df5780635c29908d1461052c57806363046c861461055c57806365bbacd91461057a57806366206ce91461058457806370a08231146105b4578063715018a6146105e4576102bb565b806340c10f191461046a57806342966c681461048657806342c6b4f1146104a25780634456eda2146104d25780634d237730146104f0578063570ca7351461050e576102bb565b806328d679381161027857806328d67938146103945780632dd31000146103b0578063313ce567146103ce57806332fe7b26146103ec5780633758e6ce1461040a578063395093511461043a576102bb565b806306fdde03146102c0578063095e3913146102de578063095ea7b3146102fa57806314f89c981461032a57806318160ddd1461034657806323b872dd14610364575b600080fd5b6102c861094c565b6040516102d591906132a5565b60405180910390f35b6102f860048036038101906102f3919061332a565b6109de565b005b610314600480360381019061030f919061338d565b610ab9565b60405161032191906133e8565b60405180910390f35b610344600480360381019061033f919061342f565b610adc565b005b61034e610b90565b60405161035b919061346b565b60405180910390f35b61037e60048036038101906103799190613486565b610b9a565b60405161038b91906133e8565b60405180910390f35b6103ae60048036038101906103a991906134d9565b610c00565b005b6103b8610cf2565b6040516103c59190613528565b60405180910390f35b6103d6610d0a565b6040516103e3919061355f565b60405180910390f35b6103f4610d13565b60405161040191906135d9565b60405180910390f35b610424600480360381019061041f919061332a565b610d2b565b60405161043191906133e8565b60405180910390f35b610454600480360381019061044f919061338d565b610eb2565b60405161046191906133e8565b60405180910390f35b610484600480360381019061047f919061338d565b610ee9565b005b6104a0600480360381019061049b91906135f4565b610f91565b005b6104bc60048036038101906104b791906135f4565b610fa5565b6040516104c9919061346b565b60405180910390f35b6104da610fc9565b6040516104e791906133e8565b60405180910390f35b6104f8611024565b6040516105059190613528565b60405180910390f35b61051661104a565b60405161052391906133e8565b60405180910390f35b610546600480360381019061054191906135f4565b6110a5565b604051610553919061346b565b60405180910390f35b6105646110c9565b6040516105719190613528565b60405180910390f35b6105826110ef565b005b61059e6004803603810190610599919061364d565b6111a3565b6040516105ab91906133e8565b60405180910390f35b6105ce60048036038101906105c9919061332a565b6113a4565b6040516105db919061346b565b60405180910390f35b6105ec6113ec565b005b6105f6611400565b604051610603919061346b565b60405180910390f35b6106266004803603810190610621919061338d565b611406565b005b610642600480360381019061063d919061332a565b611426565b005b61064c611570565b6040516106599190613528565b60405180910390f35b61067c6004803603810190610677919061332a565b611596565b60405161068991906133e8565b60405180910390f35b61069a6115b6565b6040516106a791906133e8565b60405180910390f35b6106b86115c9565b6040516106c591906133e8565b60405180910390f35b6106d66115dc565b6040516106e39190613528565b60405180910390f35b6107066004803603810190610701919061332a565b611606565b60405161071391906133e8565b60405180910390f35b61072461178c565b60405161073191906132a5565b60405180910390f35b610754600480360381019061074f919061338d565b61181e565b60405161076191906133e8565b60405180910390f35b610772611895565b60405161077f919061346b565b60405180910390f35b6107a2600480360381019061079d919061338d565b6118a2565b6040516107af91906133e8565b60405180910390f35b6107d260048036038101906107cd919061332a565b6118c5565b005b6107dc611928565b6040516107e99190613528565b60405180910390f35b61080c6004803603810190610807919061332a565b611940565b005b6108286004803603810190610823919061364d565b6119a3565b60405161083591906133e8565b60405180910390f35b610858600480360381019061085391906135f4565b611aff565b005b610874600480360381019061086f919061332a565b611c35565b60405161088191906133e8565b60405180910390f35b6108a4600480360381019061089f919061368d565b611c55565b6040516108b1919061346b565b60405180910390f35b6108d460048036038101906108cf919061332a565b611cdc565b6040516108e191906133e8565b60405180910390f35b6108f2611d32565b6040516108ff919061346b565b60405180910390f35b610922600480360381019061091d919061332a565b611d3f565b005b61092c611dc2565b604051610939919061346b565b60405180910390f35b61094a611dce565b005b60606003805461095b906136fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610987906136fc565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b6109e6611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90613779565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610ac4611e82565b9050610ad1818585611e8a565b600191505092915050565b610ae4611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613779565b60405180910390fd5b80600760146101000a81548160ff02191690831515021790555050565b6000600254905090565b6000610ba7848484612053565b610bf584610bb3611e82565b610bf08560405180606001604052806028815260200161485f60289139610be18a610bdc611e82565b611c55565b6121ca9092919063ffffffff16565b611e8a565b600190509392505050565b610c08611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e90613779565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b732da25e7446a70d7be65fd4c053948becaa6374c881565b60006012905090565b731d368773735ee1e678950b7a97bca2cafb330cdc81565b6000610d35611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb90613779565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e48906137e5565b60405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600080610ebd611e82565b9050610ede818585610ecf8589611c55565b610ed99190613834565b611e8a565b600191505092915050565b6001151560066000610ef9611e82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906138da565b60405180910390fd5b610f8d828261221f565b5050565b610fa2610f9c611e82565b82612375565b50565b600c8181548110610fb557600080fd5b906000526020600020016000915090505481565b600060066000610fd7611e82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060066000611058611e82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905090565b600d81815481106110b557600080fd5b906000526020600020016000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110f7611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90613779565b60405180910390fd5b6000600960146101000a81548160ff021916908315150217905550565b60006111ad611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613779565b60405180910390fd5b60008360ff161015611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90613946565b60405180910390fd5b61128b611895565b8360ff16106112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c6906139d8565b60405180910390fd5b60008360ff16111561131557600c6001846112ea91906139f8565b60ff16815481106112fe576112fd613a2d565b5b9060005260206000200154821161131457600080fd5b5b6113306001611322611895565b61254290919063ffffffff16565b8360ff16101561137457600c6001846113499190613a5c565b60ff168154811061135d5761135c613a2d565b5b9060005260206000200154821061137357600080fd5b5b81600c8460ff168154811061138c5761138b613a2d565b5b90600052602060002001819055506001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113f4612558565b6113fe60006125d6565b565b600b5481565b61141882611412611e82565b8361269c565b6114228282612375565b5050565b61142e611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613779565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390613b03565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b600760149054906101000a900460ff1681565b600960149054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000611610611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461169f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169690613779565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661172b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172290613b6f565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b60606004805461179b906136fc565b80601f01602080910402602001604051908101604052809291908181526020018280546117c7906136fc565b80156118145780601f106117e957610100808354040283529160200191611814565b820191906000526020600020905b8154815290600101906020018083116117f757829003601f168201915b5050505050905090565b600080611829611e82565b905060006118378286611c55565b90508381101561187c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187390613c01565b60405180910390fd5b6118898286868403611e8a565b60019250505092915050565b6000600c80549050905090565b6000806118ad611e82565b90506118ba818585612053565b600191505092915050565b6118cd612558565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b73039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b611948612558565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60006119ad611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3390613779565b60405180910390fd5b60008360ff161015611a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7a90613946565b60405180910390fd5b611a8b611d32565b8360ff1610611acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac6906139d8565b60405180910390fd5b81600d8460ff1681548110611ae757611ae6613a2d565b5b90600052602060002001819055506001905092915050565b611b07611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613779565b60405180910390fd5b600960149054906101000a900460ff1615611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90613c93565b60405180910390fd5b6107d0811115611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290613cff565b60405180910390fd5b80600b8190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d80549050905090565b611d47612558565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dad90613d91565b60405180910390fd5b611dbf816125d6565b50565b670de0b6b3a764000081565b611dd6611e82565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90613779565b60405180910390fd5b6001600960146101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090613e23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f90613eb5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612046919061346b565b60405180910390a3505050565b6000600960149054906101000a900460ff1615612083576000612074612728565b905061207f81612845565b9150505b600960149054906101000a900460ff1661209d57600b5490505b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120f7575060008114155b801561214d5750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121a35750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121b8576121b384848461296f565b6121c4565b6121c38484846129fe565b5b50505050565b6000838311158290612212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220991906132a5565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228590613f21565b60405180910390fd5b61229a60008383612c74565b80600260008282546122ac9190613834565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161235d919061346b565b60405180910390a361237160008383612c79565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db90613fb3565b60405180910390fd5b6123f082600083612c74565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90614045565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612529919061346b565b60405180910390a361253d83600084612c79565b505050565b600081836125509190614065565b905092915050565b612560611e82565b73ffffffffffffffffffffffffffffffffffffffff1661257e6115dc565b73ffffffffffffffffffffffffffffffffffffffff16146125d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cb906140e5565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126a88484611c55565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146127225781811015612714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270b90614151565b60405180910390fd5b6127218484848403611e8a565b5b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636808a128600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a76400006040518363ffffffff1660e01b81526004016127b19291906141ac565b602060405180830381865afa9250505080156127eb57506040513d601f19601f820116820180604052508101906127e8919061421f565b60015b61282a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612821906142be565b60405180910390fd5b8071ffffffffffffffffffffffffffffffffffff1691505090565b6000806128666001612855611895565b60ff16612c7e90919063ffffffff16565b90505b60008160ff161061296457600c8160ff168154811061288b5761288a613a2d565b5b9060005260206000200154831061295357612710600d8260ff16815481106128b6576128b5613a2d565b5b906000526020600020015410612901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f89061432a565b60405180910390fd5b600d8160ff168154811061291857612917613a2d565b5b9060005260206000200154600b81905550600d8160ff16815481106129405761293f613a2d565b5b906000526020600020015491505061296a565b8061295d9061434a565b9050612869565b50600090505b919050565b600061299a61271061298c600b5485612cc890919063ffffffff16565b612cde90919063ffffffff16565b905060006129b1828461254290919063ffffffff16565b9050600760149054906101000a900460ff16156129e1576129d38530846129fe565b6129dc82612cf4565b6129ec565b6129eb8583612375565b5b6129f78585836129fe565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a64906143e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad390614477565b60405180910390fd5b612ae7838383612c74565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6490614509565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612c5b919061346b565b60405180910390a3612c6e848484612c79565b50505050565b505050565b505050565b6000612cc083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613129565b905092915050565b60008183612cd69190614529565b905092915050565b60008183612cec919061459a565b905092915050565b6000600267ffffffffffffffff811115612d1157612d106145cb565b5b604051908082528060200260200182016040528015612d4a57816020015b612d376131a9565b815260200190600190039081612d2f5790505b50905060405180608001604052803073ffffffffffffffffffffffffffffffffffffffff16815260200173039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff168152602001600015158152602001732da25e7446a70d7be65fd4c053948becaa6374c873ffffffffffffffffffffffffffffffffffffffff1681525081600081518110612def57612dee613a2d565b5b6020026020010181905250604051806080016040528073039e2fb66102314ce7b64ce5ce3e5183bc94ad3873ffffffffffffffffffffffffffffffffffffffff168152602001600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600115158152602001732da25e7446a70d7be65fd4c053948becaa6374c873ffffffffffffffffffffffffffffffffffffffff1681525081600181518110612ebe57612ebd613a2d565b5b60200260200101819052503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3731d368773735ee1e678950b7a97bca2cafb330cdc846040518363ffffffff1660e01b8152600401612f189291906145fa565b6020604051808303816000875af1158015612f37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5b9190614638565b50731d368773735ee1e678950b7a97bca2cafb330cdc73ffffffffffffffffffffffffffffffffffffffff166388cd821e8360008430612fa5603c4261319390919063ffffffff16565b6040518663ffffffff1660e01b8152600401612fc59594939291906147c2565b600060405180830381600087803b158015612fdf57600080fd5b505af1158015612ff3573d6000803e3d6000fd5b505050506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016130549190613528565b602060405180830381865afa158015613071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130959190614831565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016130f2919061346b565b600060405180830381600087803b15801561310c57600080fd5b505af1158015613120573d6000803e3d6000fd5b50505050505050565b60008360ff168360ff1611158290613177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316e91906132a5565b60405180910390fd5b506000838561318691906139f8565b9050809150509392505050565b600081836131a19190613834565b905092915050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600015158152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b8381101561324f578082015181840152602081019050613234565b60008484015250505050565b6000601f19601f8301169050919050565b600061327782613215565b6132818185613220565b9350613291818560208601613231565b61329a8161325b565b840191505092915050565b600060208201905081810360008301526132bf818461326c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132f7826132cc565b9050919050565b613307816132ec565b811461331257600080fd5b50565b600081359050613324816132fe565b92915050565b6000602082840312156133405761333f6132c7565b5b600061334e84828501613315565b91505092915050565b6000819050919050565b61336a81613357565b811461337557600080fd5b50565b60008135905061338781613361565b92915050565b600080604083850312156133a4576133a36132c7565b5b60006133b285828601613315565b92505060206133c385828601613378565b9150509250929050565b60008115159050919050565b6133e2816133cd565b82525050565b60006020820190506133fd60008301846133d9565b92915050565b61340c816133cd565b811461341757600080fd5b50565b60008135905061342981613403565b92915050565b600060208284031215613445576134446132c7565b5b60006134538482850161341a565b91505092915050565b61346581613357565b82525050565b6000602082019050613480600083018461345c565b92915050565b60008060006060848603121561349f5761349e6132c7565b5b60006134ad86828701613315565b93505060206134be86828701613315565b92505060406134cf86828701613378565b9150509250925092565b600080604083850312156134f0576134ef6132c7565b5b60006134fe85828601613315565b925050602061350f8582860161341a565b9150509250929050565b613522816132ec565b82525050565b600060208201905061353d6000830184613519565b92915050565b600060ff82169050919050565b61355981613543565b82525050565b60006020820190506135746000830184613550565b92915050565b6000819050919050565b600061359f61359a613595846132cc565b61357a565b6132cc565b9050919050565b60006135b182613584565b9050919050565b60006135c3826135a6565b9050919050565b6135d3816135b8565b82525050565b60006020820190506135ee60008301846135ca565b92915050565b60006020828403121561360a576136096132c7565b5b600061361884828501613378565b91505092915050565b61362a81613543565b811461363557600080fd5b50565b60008135905061364781613621565b92915050565b60008060408385031215613664576136636132c7565b5b600061367285828601613638565b925050602061368385828601613378565b9150509250929050565b600080604083850312156136a4576136a36132c7565b5b60006136b285828601613315565b92505060206136c385828601613315565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061371457607f821691505b602082108103613727576137266136cd565b5b50919050565b7f43616c6c6572206973206e6f742074686520746178206f666669636500000000600082015250565b6000613763601c83613220565b915061376e8261372d565b602082019050919050565b6000602082019050818103600083015261379281613756565b9050919050565b7f616464726573732063616e2774206265206578636c7564656400000000000000600082015250565b60006137cf601983613220565b91506137da82613799565b602082019050919050565b600060208201905081810360008301526137fe816137c2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061383f82613357565b915061384a83613357565b925082820190508082111561386257613861613805565b5b92915050565b7f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260008201527f61746f7200000000000000000000000000000000000000000000000000000000602082015250565b60006138c4602483613220565b91506138cf82613868565b604082019050919050565b600060208201905081810360008301526138f3816138b7565b9050919050565b7f496e6465782068617320746f20626520686967686572207468616e2030000000600082015250565b6000613930601d83613220565b915061393b826138fa565b602082019050919050565b6000602082019050818103600083015261395f81613923565b9050919050565b7f496e6465782068617320746f206c6f776572207468616e20636f756e74206f6660008201527f2074617820746965727300000000000000000000000000000000000000000000602082015250565b60006139c2602a83613220565b91506139cd82613966565b604082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b6000613a0382613543565b9150613a0e83613543565b9250828203905060ff811115613a2757613a26613805565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613a6782613543565b9150613a7283613543565b9250828201905060ff811115613a8b57613a8a613805565b5b92915050565b7f6f7261636c6520616464726573732063616e6e6f74206265203020616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613aed602283613220565b9150613af882613a91565b604082019050919050565b60006020820190508181036000830152613b1c81613ae0565b9050919050565b7f616464726573732063616e277420626520696e636c7564656400000000000000600082015250565b6000613b59601983613220565b9150613b6482613b23565b602082019050919050565b60006020820190508181036000830152613b8881613b4c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613beb602583613220565b9150613bf682613b8f565b604082019050919050565b60006020820190508181036000830152613c1a81613bde565b9050919050565b7f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e6160008201527f626c656400000000000000000000000000000000000000000000000000000000602082015250565b6000613c7d602483613220565b9150613c8882613c21565b604082019050919050565b60006020820190508181036000830152613cac81613c70565b9050919050565b7f74617820657175616c206f722062696767657220746f20323025000000000000600082015250565b6000613ce9601a83613220565b9150613cf482613cb3565b602082019050919050565b60006020820190508181036000830152613d1881613cdc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d7b602683613220565b9150613d8682613d1f565b604082019050919050565b60006020820190508181036000830152613daa81613d6e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e0d602483613220565b9150613e1882613db1565b604082019050919050565b60006020820190508181036000830152613e3c81613e00565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e9f602283613220565b9150613eaa82613e43565b604082019050919050565b60006020820190508181036000830152613ece81613e92565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613f0b601f83613220565b9150613f1682613ed5565b602082019050919050565b60006020820190508181036000830152613f3a81613efe565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f9d602183613220565b9150613fa882613f41565b604082019050919050565b60006020820190508181036000830152613fcc81613f90565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061402f602283613220565b915061403a82613fd3565b604082019050919050565b6000602082019050818103600083015261405e81614022565b9050919050565b600061407082613357565b915061407b83613357565b925082820390508181111561409357614092613805565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140cf602083613220565b91506140da82614099565b602082019050919050565b600060208201905081810360008301526140fe816140c2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061413b601d83613220565b915061414682614105565b602082019050919050565b6000602082019050818103600083015261416a8161412e565b9050919050565b6000819050919050565b600061419661419161418c84614171565b61357a565b613357565b9050919050565b6141a68161417b565b82525050565b60006040820190506141c16000830185613519565b6141ce602083018461419d565b9392505050565b600071ffffffffffffffffffffffffffffffffffff82169050919050565b6141fc816141d5565b811461420757600080fd5b50565b600081519050614219816141f3565b92915050565b600060208284031215614235576142346132c7565b5b60006142438482850161420a565b91505092915050565b7f42617365643a206661696c656420746f2066657463682042415345442070726960008201527f63652066726f6d204f7261636c65000000000000000000000000000000000000602082015250565b60006142a8602e83613220565b91506142b38261424c565b604082019050919050565b600060208201905081810360008301526142d78161429b565b9050919050565b7f74617820657175616c206f722062696767657220746f20313030250000000000600082015250565b6000614314601b83613220565b915061431f826142de565b602082019050919050565b6000602082019050818103600083015261434381614307565b9050919050565b600061435582613543565b91506000820361436857614367613805565b5b600182039050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006143cf602583613220565b91506143da82614373565b604082019050919050565b600060208201905081810360008301526143fe816143c2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614461602383613220565b915061446c82614405565b604082019050919050565b6000602082019050818103600083015261449081614454565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006144f3602683613220565b91506144fe82614497565b604082019050919050565b60006020820190508181036000830152614522816144e6565b9050919050565b600061453482613357565b915061453f83613357565b925082820261454d81613357565b9150828204841483151761456457614563613805565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145a582613357565b91506145b083613357565b9250826145c0576145bf61456b565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060408201905061460f6000830185613519565b61461c602083018461345c565b9392505050565b60008151905061463281613403565b92915050565b60006020828403121561464e5761464d6132c7565b5b600061465c84828501614623565b91505092915050565b6000819050919050565b600061468a61468561468084614665565b61357a565b613357565b9050919050565b61469a8161466f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146d5816132ec565b82525050565b6146e4816133cd565b82525050565b60808201600082015161470060008501826146cc565b50602082015161471360208501826146cc565b50604082015161472660408501826146db565b50606082015161473960608501826146cc565b50505050565b600061474b83836146ea565b60808301905092915050565b6000602082019050919050565b600061476f826146a0565b61477981856146ab565b9350614784836146bc565b8060005b838110156147b557815161479c888261473f565b97506147a783614757565b925050600181019050614788565b5085935050505092915050565b600060a0820190506147d7600083018861345c565b6147e46020830187614691565b81810360408301526147f68186614764565b90506148056060830185613519565b614812608083018461345c565b9695505050505050565b60008151905061482b81613361565b92915050565b600060208284031215614847576148466132c7565b5b60006148558482850161481c565b9150509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ccdb6e1abcd79934bbfb45e6a6a382175ce5d3d9a2c13b6ac493bbbc352a2db564736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000336c0ddcf11c844178df37a6304f03cfd2e25b13

-----Decoded View---------------
Arg [0] : _BASED (address): 0x336C0ddcf11c844178dF37A6304f03cFd2e25b13

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000336c0ddcf11c844178df37a6304f03cfd2e25b13


Deployed Bytecode Sourcemap

74328:8366:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62091:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75074:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64451:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79512:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63220:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80754:452;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79406:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74655:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63062:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74555;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80244:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65902:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76046:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73582:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76439:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30969:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76164:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30685:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76641:173;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74827:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79708:100;;;:::i;:::-;;77485:608;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63391:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2760:103;;;:::i;:::-;;76390:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73992:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79816:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76196:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76320:36;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74854:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76285:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2119:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80499:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62310:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66643:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77106:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81214:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31190:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74747:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31075:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78101:387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79996:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76866:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63980:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77352:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77229:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3018:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74482:54;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79602:98;;;:::i;:::-;;62091:100;62145:13;62178:5;62171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62091:100;:::o;75074:109::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;75164:11:::1;75151:10;;:24;;;;;;;;;;;;;;;;;;75074:109:::0;:::o;64451:201::-;64534:4;64551:13;64567:12;:10;:12::i;:::-;64551:28;;64590:32;64599:5;64606:7;64615:6;64590:8;:32::i;:::-;64640:4;64633:11;;;64451:201;;;;:::o;79512:82::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79581:5:::1;79574:4;;:12;;;;;;;;;;;;;;;;;;79512:82:::0;:::o;63220:108::-;63281:7;63308:12;;63301:19;;63220:108;:::o;80754:452::-;80886:4;80903:42;80919:6;80927:9;80938:6;80903:15;:42::i;:::-;80956:218;80979:6;81000:12;:10;:12::i;:::-;81027:136;81081:6;81027:136;;;;;;;;;;;;;;;;;:31;81037:6;81045:12;:10;:12::i;:::-;81027:9;:31::i;:::-;:35;;:136;;;;;:::i;:::-;80956:8;:218::i;:::-;81194:4;81187:11;;80754:452;;;;;:::o;79406:98::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79491:5:::1;79479:4;:9;79484:3;79479:9;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;79406:98:::0;;:::o;74655:85::-;74698:42;74655:85;:::o;63062:93::-;63120:5;63145:2;63138:9;;63062:93;:::o;74555:::-;74605:42;74555:93;:::o;80244:247::-;80333:4;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;80359:17:::1;:27;80377:8;80359:27;;;;;;;;;;;;;;;;;;;;;;;;;80358:28;80350:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;80457:4;80427:17;:27;80445:8;80427:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;80479:4;80472:11;;80244:247:::0;;;:::o;65902:238::-;65990:4;66007:13;66023:12;:10;:12::i;:::-;66007:28;;66046:64;66055:5;66062:7;66099:10;66071:25;66081:5;66088:7;66071:9;:25::i;:::-;:38;;;;:::i;:::-;66046:8;:64::i;:::-;66128:4;66121:11;;;65902:238;;;;:::o;76046:110::-;30873:4;30846:31;;:9;:23;30856:12;:10;:12::i;:::-;30846:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;30824:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;76126:22:::1;76132:7;76141:6;76126:5;:22::i;:::-;76046:110:::0;;:::o;73582:91::-;73638:27;73644:12;:10;:12::i;:::-;73658:6;73638:5;:27::i;:::-;73582:91;:::o;76439:195::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30969:98::-;31012:4;31036:9;:23;31046:12;:10;:12::i;:::-;31036:23;;;;;;;;;;;;;;;;;;;;;;;;;31029:30;;30969:98;:::o;76164:25::-;;;;;;;;;;;;;:::o;30685:96::-;30726:4;30750:9;:23;30760:12;:10;:12::i;:::-;30750:23;;;;;;;;;;;;;;;;;;;;;;;;;30743:30;;30685:96;:::o;76641:173::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74827:20::-;;;;;;;;;;;;;:::o;79708:100::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79795:5:::1;79776:16;;:24;;;;;;;;;;;;;;;;;;79708:100::o:0;77485:608::-;77596:4;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77631:1:::1;77621:6;:11;;;;77613:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;77708:23;:21;:23::i;:::-;77699:6;:32;;;77677:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;77825:1;77816:6;:10;;;77812:86;;;77860:13;77883:1;77874:6;:10;;;;:::i;:::-;77860:25;;;;;;;;;;:::i;:::-;;;;;;;;;;77851:6;:34;77843:43;;;::::0;::::1;;77812:86;77921:30;77949:1;77921:23;:21;:23::i;:::-;:27;;:30;;;;:::i;:::-;77912:6;:39;;;77908:115;;;77985:13;78008:1;77999:6;:10;;;;:::i;:::-;77985:25;;;;;;;;;;:::i;:::-;;;;;;;;;;77976:6;:34;77968:43;;;::::0;::::1;;77908:115;78057:6;78033:13;78047:6;78033:21;;;;;;;;;;:::i;:::-;;;;;;;;;:30;;;;78081:4;78074:11;;77485:608:::0;;;;:::o;63391:127::-;63465:7;63492:9;:18;63502:7;63492:18;;;;;;;;;;;;;;;;63485:25;;63391:127;;;:::o;2760:103::-;2005:13;:11;:13::i;:::-;2825:30:::1;2852:1;2825:18;:30::i;:::-;2760:103::o:0;76390:22::-;;;;:::o;73992:164::-;74069:46;74085:7;74094:12;:10;:12::i;:::-;74108:6;74069:15;:46::i;:::-;74126:22;74132:7;74141:6;74126:5;:22::i;:::-;73992:164;;:::o;79816:172::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79912:1:::1;79893:21;;:7;:21;;::::0;79885:68:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;79973:7;79964:6;;:16;;;;;;;;;;;;;;;;;;79816:172:::0;:::o;76196:21::-;;;;;;;;;;;;;:::o;76320:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;74854:23::-;;;;;;;;;;;;;:::o;76285:28::-;;;;;;;;;;;;;:::o;2119:87::-;2165:7;2192:6;;;;;;;;;;;2185:13;;2119:87;:::o;80499:247::-;80588:4;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;80613:17:::1;:27;80631:8;80613:27;;;;;;;;;;;;;;;;;;;;;;;;;80605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;80711:5;80681:17;:27;80699:8;80681:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;80734:4;80727:11;;80499:247:::0;;;:::o;62310:104::-;62366:13;62399:7;62392:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62310:104;:::o;66643:436::-;66736:4;66753:13;66769:12;:10;:12::i;:::-;66753:28;;66792:24;66819:25;66829:5;66836:7;66819:9;:25::i;:::-;66792:52;;66883:15;66863:16;:35;;66855:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;66976:60;66985:5;66992:7;67020:15;67001:16;:34;66976:8;:60::i;:::-;67067:4;67060:11;;;;66643:436;;;;:::o;77106:115::-;77160:13;77193;:20;;;;77186:27;;77106:115;:::o;81214:240::-;81325:4;81342:14;81359:12;:10;:12::i;:::-;81342:29;;81382:42;81398:6;81406:9;81417:6;81382:15;:42::i;:::-;81442:4;81435:11;;;81214:240;;;;:::o;31190:111::-;2005:13;:11;:13::i;:::-;31288:5:::1;31263:9;:22;31273:11;31263:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;31190:111:::0;:::o;74747:73::-;74778:42;74747:73;:::o;31075:107::-;2005:13;:11;:13::i;:::-;31170:4:::1;31145:9;:22;31155:11;31145:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31075:107:::0;:::o;78101:387::-;78212:4;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;78247:1:::1;78237:6;:11;;;;78229:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;78324:23;:21;:23::i;:::-;78315:6;:32;;;78293:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;78452:6;78428:13;78442:6;78428:21;;;;;;;;;;:::i;:::-;;;;;;;;;:30;;;;78476:4;78469:11;;78101:387:::0;;;;:::o;79996:240::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;80076:16:::1;;;;;;;;;;;80075:17;80067:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;80164:4;80152:8;:16;;80144:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;80220:8;80210:7;:18;;;;79996:240:::0;:::o;76866:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;63980:151::-;64069:7;64096:11;:18;64108:5;64096:18;;;;;;;;;;;;;;;:27;64115:7;64096:27;;;;;;;;;;;;;;;;64089:34;;63980:151;;;;:::o;77352:125::-;77418:4;77442:17;:27;77460:8;77442:27;;;;;;;;;;;;;;;;;;;;;;;;;77435:34;;77352:125;;;:::o;77229:115::-;77283:13;77316;:20;;;;77309:27;;77229:115;:::o;3018:201::-;2005:13;:11;:13::i;:::-;3127:1:::1;3107:22;;:8;:22;;::::0;3099:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3183:28;3202:8;3183:18;:28::i;:::-;3018:201:::0;:::o;74482:54::-;74529:7;74482:54;:::o;79602:98::-;76983:12;:10;:12::i;:::-;76969:26;;:10;;;;;;;;;;;:26;;;76961:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79688:4:::1;79669:16;;:23;;;;;;;;;;;;;;;;;;79602:98::o:0;731:::-;784:7;811:10;804:17;;731:98;:::o;70636:346::-;70755:1;70738:19;;:5;:19;;;70730:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70836:1;70817:21;;:7;:21;;;70809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70920:6;70890:11;:18;70902:5;70890:18;;;;;;;;;;;;;;;:27;70909:7;70890:27;;;;;;;;;;;;;;;:36;;;;70958:7;70942:32;;70951:5;70942:32;;;70967:6;70942:32;;;;;;:::i;:::-;;;;;;;;70636:346;;;:::o;81954:737::-;82084:22;82125:16;;;;;;;;;;;82121:158;;;82158:25;82186:16;:14;:16::i;:::-;82158:44;;82234:33;82249:17;82234:14;:33::i;:::-;82217:50;;82143:136;82121:158;82294:16;;;;;;;;;;;82289:74;;82344:7;;82327:24;;82289:74;82392:4;:15;82397:9;82392:15;;;;;;;;;;;;;;;;;;;;;;;;;82391:53;;;;;82443:1;82425:14;:19;;82391:53;:96;;;;;82462:17;:25;82480:6;82462:25;;;;;;;;;;;;;;;;;;;;;;;;;82461:26;82391:96;:142;;;;;82505:17;:28;82523:9;82505:28;;;;;;;;;;;;;;;;;;;;;;;;;82504:29;82391:142;82373:311;;;82560:43;82577:6;82585:9;82596:6;82560:16;:43::i;:::-;82373:311;;;82636:36;82646:6;82654:9;82665:6;82636:9;:36::i;:::-;82373:311;82073:618;81954:737;;;:::o;23313:206::-;23399:7;23457:1;23452;:6;;23460:12;23444:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;23499:1;23495;:5;23488:12;;23313:206;;;;;:::o;68642:548::-;68745:1;68726:21;;:7;:21;;;68718:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;68796:49;68825:1;68829:7;68838:6;68796:20;:49::i;:::-;68874:6;68858:12;;:22;;;;;;;:::i;:::-;;;;;;;;69051:6;69029:9;:18;69039:7;69029:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;69105:7;69084:37;;69101:1;69084:37;;;69114:6;69084:37;;;;;;:::i;:::-;;;;;;;;69134:48;69162:1;69166:7;69175:6;69134:19;:48::i;:::-;68642:548;;:::o;69523:675::-;69626:1;69607:21;;:7;:21;;;69599:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69679:49;69700:7;69717:1;69721:6;69679:20;:49::i;:::-;69741:22;69766:9;:18;69776:7;69766:18;;;;;;;;;;;;;;;;69741:43;;69821:6;69803:14;:24;;69795:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;69940:6;69923:14;:23;69902:9;:18;69912:7;69902:18;;;;;;;;;;;;;;;:44;;;;70057:6;70041:12;;:22;;;;;;;;;;;70118:1;70092:37;;70101:7;70092:37;;;70122:6;70092:37;;;;;;:::i;:::-;;;;;;;;70142:48;70162:7;70179:1;70183:6;70142:19;:48::i;:::-;69588:610;69523:675;;:::o;21415:98::-;21473:7;21504:1;21500;:5;;;;:::i;:::-;21493:12;;21415:98;;;;:::o;2284:132::-;2359:12;:10;:12::i;:::-;2348:23;;:7;:5;:7::i;:::-;:23;;;2340:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2284:132::o;3379:191::-;3453:16;3472:6;;;;;;;;;;;3453:25;;3498:8;3489:6;;:17;;;;;;;;;;;;;;;;;;3553:8;3522:40;;3543:8;3522:40;;;;;;;;;;;;3442:128;3379:191;:::o;71273:419::-;71374:24;71401:25;71411:5;71418:7;71401:9;:25::i;:::-;71374:52;;71461:17;71441:16;:37;71437:248;;71523:6;71503:16;:26;;71495:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71607:51;71616:5;71623:7;71651:6;71632:16;:25;71607:8;:51::i;:::-;71437:248;71363:329;71273:419;;;:::o;78496:323::-;78545:19;78589:6;;;;;;;;;;;78581:20;;;78610:5;;;;;;;;;;;78618:4;78581:42;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;78577:235;;78744:56;;;;;;;;;;:::i;:::-;;;;;;;;78577:235;78703:6;78695:15;;78688:22;;;78496:323;:::o;78827:571::-;78890:7;78929:12;78944:37;78979:1;78950:23;:21;:23::i;:::-;78944:34;;;;:37;;;;:::i;:::-;78929:52;;78910:462;79006:1;78996:6;:11;;;78910:462;;79076:13;79090:6;79076:21;;;;;;;;;;:::i;:::-;;;;;;;;;;79061:11;:36;79057:304;;79172:5;79148:13;79162:6;79148:21;;;;;;;;;;:::i;:::-;;;;;;;;;;:29;79118:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;79277:13;79291:6;79277:21;;;;;;;;;;:::i;:::-;;;;;;;;;;79267:7;:31;;;;79324:13;79338:6;79324:21;;;;;;;;;;:::i;:::-;;;;;;;;;;79317:28;;;;;79057:304;79022:8;;;;:::i;:::-;;;78910:462;;;;79389:1;79382:8;;78827:571;;;;:::o;81462:484::-;81593:17;81613:30;81637:5;81613:19;81624:7;;81613:6;:10;;:19;;;;:::i;:::-;:23;;:30;;;;:::i;:::-;81593:50;;81654:22;81679:21;81690:9;81679:6;:10;;:21;;;;:::i;:::-;81654:46;;81715:4;;;;;;;;;;;81711:173;;;81736:43;81746:6;81762:4;81769:9;81736;:43::i;:::-;81794:21;81805:9;81794:10;:21::i;:::-;81711:173;;;81848:24;81854:6;81862:9;81848:5;:24::i;:::-;81711:173;81894:44;81904:6;81912:9;81923:14;81894:9;:44::i;:::-;81582:364;;81462:484;;;:::o;67549:806::-;67662:1;67646:18;;:4;:18;;;67638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67739:1;67725:16;;:2;:16;;;67717:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;67794:38;67815:4;67821:2;67825:6;67794:20;:38::i;:::-;67845:19;67867:9;:15;67877:4;67867:15;;;;;;;;;;;;;;;;67845:37;;67916:6;67901:11;:21;;67893:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;68033:6;68019:11;:20;68001:9;:15;68011:4;68001:15;;;;;;;;;;;;;;;:38;;;;68236:6;68219:9;:13;68229:2;68219:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;68286:2;68271:26;;68280:4;68271:26;;;68290:6;68271:26;;;;;;:::i;:::-;;;;;;;;68310:37;68330:4;68336:2;68340:6;68310:19;:37::i;:::-;67627:728;67549:806;;;:::o;72292:91::-;;;;:::o;72987:90::-;;;;:::o;26323:130::-;26377:5;26402:43;26406:1;26409;26402:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;26395:50;;26323:130;;;;:::o;21772:98::-;21830:7;21861:1;21857;:5;;;;:::i;:::-;21850:12;;21772:98;;;;:::o;22171:::-;22229:7;22260:1;22256;:5;;;;:::i;:::-;22249:12;;22171:98;;;;:::o;75191:847::-;75250:29;75302:1;75282:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;75250:54;;75329:142;;;;;;;;75372:4;75329:142;;;;;;74778:42;75329:142;;;;;;75423:5;75329:142;;;;;;74698:42;75329:142;;;;;75317:6;75324:1;75317:9;;;;;;;;:::i;:::-;;;;;;;:154;;;;75496:133;;;;;;;;74778:42;75496:133;;;;;;75554:5;;;;;;;;;;;75496:133;;;;;;75582:4;75496:133;;;;;;74698:42;75496:133;;;;;75484:6;75491:1;75484:9;;;;;;;;:::i;:::-;;;;;;;:145;;;;75657:4;75642:29;;;74605:42;75689:9;75642:57;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74605:42;75710:60;;;75785:9;75809:1;75825:6;75854:4;75874:23;75894:2;75874:15;:19;;:23;;;;:::i;:::-;75710:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75921:20;75951:5;;;;;;;;;;;75944:23;;;75976:4;75944:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;75921:61;;76005:5;;;;;;;;;;;75993:23;;;76017:12;75993:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75239:799;;75191:847;:::o;26756:218::-;26872:5;26903:1;26898:6;;:1;:6;;;;26906:12;26890:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26930:7;26944:1;26940;:5;;;;:::i;:::-;26930:15;;26965:1;26958:8;;;26756:218;;;;;:::o;21034:98::-;21092:7;21123:1;21119;:5;;;;:::i;:::-;21112:12;;21034:98;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:329::-;2242:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:119;;;2297:79;;:::i;:::-;2259:119;2417:1;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2388:117;2183:329;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:116::-;3851:21;3866:5;3851:21;:::i;:::-;3844:5;3841:32;3831:60;;3887:1;3884;3877:12;3831:60;3781:116;:::o;3903:133::-;3946:5;3984:6;3971:20;3962:29;;4000:30;4024:5;4000:30;:::i;:::-;3903:133;;;;:::o;4042:323::-;4098:6;4147:2;4135:9;4126:7;4122:23;4118:32;4115:119;;;4153:79;;:::i;:::-;4115:119;4273:1;4298:50;4340:7;4331:6;4320:9;4316:22;4298:50;:::i;:::-;4288:60;;4244:114;4042:323;;;;:::o;4371:118::-;4458:24;4476:5;4458:24;:::i;:::-;4453:3;4446:37;4371:118;;:::o;4495:222::-;4588:4;4626:2;4615:9;4611:18;4603:26;;4639:71;4707:1;4696:9;4692:17;4683:6;4639:71;:::i;:::-;4495:222;;;;:::o;4723:619::-;4800:6;4808;4816;4865:2;4853:9;4844:7;4840:23;4836:32;4833:119;;;4871:79;;:::i;:::-;4833:119;4991:1;5016:53;5061:7;5052:6;5041:9;5037:22;5016:53;:::i;:::-;5006:63;;4962:117;5118:2;5144:53;5189:7;5180:6;5169:9;5165:22;5144:53;:::i;:::-;5134:63;;5089:118;5246:2;5272:53;5317:7;5308:6;5297:9;5293:22;5272:53;:::i;:::-;5262:63;;5217:118;4723:619;;;;;:::o;5348:468::-;5413:6;5421;5470:2;5458:9;5449:7;5445:23;5441:32;5438:119;;;5476:79;;:::i;:::-;5438:119;5596:1;5621:53;5666:7;5657:6;5646:9;5642:22;5621:53;:::i;:::-;5611:63;;5567:117;5723:2;5749:50;5791:7;5782:6;5771:9;5767:22;5749:50;:::i;:::-;5739:60;;5694:115;5348:468;;;;;:::o;5822:118::-;5909:24;5927:5;5909:24;:::i;:::-;5904:3;5897:37;5822:118;;:::o;5946:222::-;6039:4;6077:2;6066:9;6062:18;6054:26;;6090:71;6158:1;6147:9;6143:17;6134:6;6090:71;:::i;:::-;5946:222;;;;:::o;6174:86::-;6209:7;6249:4;6242:5;6238:16;6227:27;;6174:86;;;:::o;6266:112::-;6349:22;6365:5;6349:22;:::i;:::-;6344:3;6337:35;6266:112;;:::o;6384:214::-;6473:4;6511:2;6500:9;6496:18;6488:26;;6524:67;6588:1;6577:9;6573:17;6564:6;6524:67;:::i;:::-;6384:214;;;;:::o;6604:60::-;6632:3;6653:5;6646:12;;6604:60;;;:::o;6670:142::-;6720:9;6753:53;6771:34;6780:24;6798:5;6780:24;:::i;:::-;6771:34;:::i;:::-;6753:53;:::i;:::-;6740:66;;6670:142;;;:::o;6818:126::-;6868:9;6901:37;6932:5;6901:37;:::i;:::-;6888:50;;6818:126;;;:::o;6950:142::-;7016:9;7049:37;7080:5;7049:37;:::i;:::-;7036:50;;6950:142;;;:::o;7098:163::-;7201:53;7248:5;7201:53;:::i;:::-;7196:3;7189:66;7098:163;;:::o;7267:254::-;7376:4;7414:2;7403:9;7399:18;7391:26;;7427:87;7511:1;7500:9;7496:17;7487:6;7427:87;:::i;:::-;7267:254;;;;:::o;7527:329::-;7586:6;7635:2;7623:9;7614:7;7610:23;7606:32;7603:119;;;7641:79;;:::i;:::-;7603:119;7761:1;7786:53;7831:7;7822:6;7811:9;7807:22;7786:53;:::i;:::-;7776:63;;7732:117;7527:329;;;;:::o;7862:118::-;7933:22;7949:5;7933:22;:::i;:::-;7926:5;7923:33;7913:61;;7970:1;7967;7960:12;7913:61;7862:118;:::o;7986:135::-;8030:5;8068:6;8055:20;8046:29;;8084:31;8109:5;8084:31;:::i;:::-;7986:135;;;;:::o;8127:470::-;8193:6;8201;8250:2;8238:9;8229:7;8225:23;8221:32;8218:119;;;8256:79;;:::i;:::-;8218:119;8376:1;8401:51;8444:7;8435:6;8424:9;8420:22;8401:51;:::i;:::-;8391:61;;8347:115;8501:2;8527:53;8572:7;8563:6;8552:9;8548:22;8527:53;:::i;:::-;8517:63;;8472:118;8127:470;;;;;:::o;8603:474::-;8671:6;8679;8728:2;8716:9;8707:7;8703:23;8699:32;8696:119;;;8734:79;;:::i;:::-;8696:119;8854:1;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8825:117;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8603:474;;;;;:::o;9083:180::-;9131:77;9128:1;9121:88;9228:4;9225:1;9218:15;9252:4;9249:1;9242:15;9269:320;9313:6;9350:1;9344:4;9340:12;9330:22;;9397:1;9391:4;9387:12;9418:18;9408:81;;9474:4;9466:6;9462:17;9452:27;;9408:81;9536:2;9528:6;9525:14;9505:18;9502:38;9499:84;;9555:18;;:::i;:::-;9499:84;9320:269;9269:320;;;:::o;9595:178::-;9735:30;9731:1;9723:6;9719:14;9712:54;9595:178;:::o;9779:366::-;9921:3;9942:67;10006:2;10001:3;9942:67;:::i;:::-;9935:74;;10018:93;10107:3;10018:93;:::i;:::-;10136:2;10131:3;10127:12;10120:19;;9779:366;;;:::o;10151:419::-;10317:4;10355:2;10344:9;10340:18;10332:26;;10404:9;10398:4;10394:20;10390:1;10379:9;10375:17;10368:47;10432:131;10558:4;10432:131;:::i;:::-;10424:139;;10151:419;;;:::o;10576:175::-;10716:27;10712:1;10704:6;10700:14;10693:51;10576:175;:::o;10757:366::-;10899:3;10920:67;10984:2;10979:3;10920:67;:::i;:::-;10913:74;;10996:93;11085:3;10996:93;:::i;:::-;11114:2;11109:3;11105:12;11098:19;;10757:366;;;:::o;11129:419::-;11295:4;11333:2;11322:9;11318:18;11310:26;;11382:9;11376:4;11372:20;11368:1;11357:9;11353:17;11346:47;11410:131;11536:4;11410:131;:::i;:::-;11402:139;;11129:419;;;:::o;11554:180::-;11602:77;11599:1;11592:88;11699:4;11696:1;11689:15;11723:4;11720:1;11713:15;11740:191;11780:3;11799:20;11817:1;11799:20;:::i;:::-;11794:25;;11833:20;11851:1;11833:20;:::i;:::-;11828:25;;11876:1;11873;11869:9;11862:16;;11897:3;11894:1;11891:10;11888:36;;;11904:18;;:::i;:::-;11888:36;11740:191;;;;:::o;11937:223::-;12077:34;12073:1;12065:6;12061:14;12054:58;12146:6;12141:2;12133:6;12129:15;12122:31;11937:223;:::o;12166:366::-;12308:3;12329:67;12393:2;12388:3;12329:67;:::i;:::-;12322:74;;12405:93;12494:3;12405:93;:::i;:::-;12523:2;12518:3;12514:12;12507:19;;12166:366;;;:::o;12538:419::-;12704:4;12742:2;12731:9;12727:18;12719:26;;12791:9;12785:4;12781:20;12777:1;12766:9;12762:17;12755:47;12819:131;12945:4;12819:131;:::i;:::-;12811:139;;12538:419;;;:::o;12963:179::-;13103:31;13099:1;13091:6;13087:14;13080:55;12963:179;:::o;13148:366::-;13290:3;13311:67;13375:2;13370:3;13311:67;:::i;:::-;13304:74;;13387:93;13476:3;13387:93;:::i;:::-;13505:2;13500:3;13496:12;13489:19;;13148:366;;;:::o;13520:419::-;13686:4;13724:2;13713:9;13709:18;13701:26;;13773:9;13767:4;13763:20;13759:1;13748:9;13744:17;13737:47;13801:131;13927:4;13801:131;:::i;:::-;13793:139;;13520:419;;;:::o;13945:229::-;14085:34;14081:1;14073:6;14069:14;14062:58;14154:12;14149:2;14141:6;14137:15;14130:37;13945:229;:::o;14180:366::-;14322:3;14343:67;14407:2;14402:3;14343:67;:::i;:::-;14336:74;;14419:93;14508:3;14419:93;:::i;:::-;14537:2;14532:3;14528:12;14521:19;;14180:366;;;:::o;14552:419::-;14718:4;14756:2;14745:9;14741:18;14733:26;;14805:9;14799:4;14795:20;14791:1;14780:9;14776:17;14769:47;14833:131;14959:4;14833:131;:::i;:::-;14825:139;;14552:419;;;:::o;14977:191::-;15015:4;15035:18;15051:1;15035:18;:::i;:::-;15030:23;;15067:18;15083:1;15067:18;:::i;:::-;15062:23;;15109:1;15106;15102:9;15094:17;;15133:4;15127;15124:14;15121:40;;;15141:18;;:::i;:::-;15121:40;14977:191;;;;:::o;15174:180::-;15222:77;15219:1;15212:88;15319:4;15316:1;15309:15;15343:4;15340:1;15333:15;15360:188;15398:3;15417:18;15433:1;15417:18;:::i;:::-;15412:23;;15449:18;15465:1;15449:18;:::i;:::-;15444:23;;15490:1;15487;15483:9;15476:16;;15513:4;15508:3;15505:13;15502:39;;;15521:18;;:::i;:::-;15502:39;15360:188;;;;:::o;15554:221::-;15694:34;15690:1;15682:6;15678:14;15671:58;15763:4;15758:2;15750:6;15746:15;15739:29;15554:221;:::o;15781:366::-;15923:3;15944:67;16008:2;16003:3;15944:67;:::i;:::-;15937:74;;16020:93;16109:3;16020:93;:::i;:::-;16138:2;16133:3;16129:12;16122:19;;15781:366;;;:::o;16153:419::-;16319:4;16357:2;16346:9;16342:18;16334:26;;16406:9;16400:4;16396:20;16392:1;16381:9;16377:17;16370:47;16434:131;16560:4;16434:131;:::i;:::-;16426:139;;16153:419;;;:::o;16578:175::-;16718:27;16714:1;16706:6;16702:14;16695:51;16578:175;:::o;16759:366::-;16901:3;16922:67;16986:2;16981:3;16922:67;:::i;:::-;16915:74;;16998:93;17087:3;16998:93;:::i;:::-;17116:2;17111:3;17107:12;17100:19;;16759:366;;;:::o;17131:419::-;17297:4;17335:2;17324:9;17320:18;17312:26;;17384:9;17378:4;17374:20;17370:1;17359:9;17355:17;17348:47;17412:131;17538:4;17412:131;:::i;:::-;17404:139;;17131:419;;;:::o;17556:224::-;17696:34;17692:1;17684:6;17680:14;17673:58;17765:7;17760:2;17752:6;17748:15;17741:32;17556:224;:::o;17786:366::-;17928:3;17949:67;18013:2;18008:3;17949:67;:::i;:::-;17942:74;;18025:93;18114:3;18025:93;:::i;:::-;18143:2;18138:3;18134:12;18127:19;;17786:366;;;:::o;18158:419::-;18324:4;18362:2;18351:9;18347:18;18339:26;;18411:9;18405:4;18401:20;18397:1;18386:9;18382:17;18375:47;18439:131;18565:4;18439:131;:::i;:::-;18431:139;;18158:419;;;:::o;18583:223::-;18723:34;18719:1;18711:6;18707:14;18700:58;18792:6;18787:2;18779:6;18775:15;18768:31;18583:223;:::o;18812:366::-;18954:3;18975:67;19039:2;19034:3;18975:67;:::i;:::-;18968:74;;19051:93;19140:3;19051:93;:::i;:::-;19169:2;19164:3;19160:12;19153:19;;18812:366;;;:::o;19184:419::-;19350:4;19388:2;19377:9;19373:18;19365:26;;19437:9;19431:4;19427:20;19423:1;19412:9;19408:17;19401:47;19465:131;19591:4;19465:131;:::i;:::-;19457:139;;19184:419;;;:::o;19609:176::-;19749:28;19745:1;19737:6;19733:14;19726:52;19609:176;:::o;19791:366::-;19933:3;19954:67;20018:2;20013:3;19954:67;:::i;:::-;19947:74;;20030:93;20119:3;20030:93;:::i;:::-;20148:2;20143:3;20139:12;20132:19;;19791:366;;;:::o;20163:419::-;20329:4;20367:2;20356:9;20352:18;20344:26;;20416:9;20410:4;20406:20;20402:1;20391:9;20387:17;20380:47;20444:131;20570:4;20444:131;:::i;:::-;20436:139;;20163:419;;;:::o;20588:225::-;20728:34;20724:1;20716:6;20712:14;20705:58;20797:8;20792:2;20784:6;20780:15;20773:33;20588:225;:::o;20819:366::-;20961:3;20982:67;21046:2;21041:3;20982:67;:::i;:::-;20975:74;;21058:93;21147:3;21058:93;:::i;:::-;21176:2;21171:3;21167:12;21160:19;;20819:366;;;:::o;21191:419::-;21357:4;21395:2;21384:9;21380:18;21372:26;;21444:9;21438:4;21434:20;21430:1;21419:9;21415:17;21408:47;21472:131;21598:4;21472:131;:::i;:::-;21464:139;;21191:419;;;:::o;21616:223::-;21756:34;21752:1;21744:6;21740:14;21733:58;21825:6;21820:2;21812:6;21808:15;21801:31;21616:223;:::o;21845:366::-;21987:3;22008:67;22072:2;22067:3;22008:67;:::i;:::-;22001:74;;22084:93;22173:3;22084:93;:::i;:::-;22202:2;22197:3;22193:12;22186:19;;21845:366;;;:::o;22217:419::-;22383:4;22421:2;22410:9;22406:18;22398:26;;22470:9;22464:4;22460:20;22456:1;22445:9;22441:17;22434:47;22498:131;22624:4;22498:131;:::i;:::-;22490:139;;22217:419;;;:::o;22642:221::-;22782:34;22778:1;22770:6;22766:14;22759:58;22851:4;22846:2;22838:6;22834:15;22827:29;22642:221;:::o;22869:366::-;23011:3;23032:67;23096:2;23091:3;23032:67;:::i;:::-;23025:74;;23108:93;23197:3;23108:93;:::i;:::-;23226:2;23221:3;23217:12;23210:19;;22869:366;;;:::o;23241:419::-;23407:4;23445:2;23434:9;23430:18;23422:26;;23494:9;23488:4;23484:20;23480:1;23469:9;23465:17;23458:47;23522:131;23648:4;23522:131;:::i;:::-;23514:139;;23241:419;;;:::o;23666:181::-;23806:33;23802:1;23794:6;23790:14;23783:57;23666:181;:::o;23853:366::-;23995:3;24016:67;24080:2;24075:3;24016:67;:::i;:::-;24009:74;;24092:93;24181:3;24092:93;:::i;:::-;24210:2;24205:3;24201:12;24194:19;;23853:366;;;:::o;24225:419::-;24391:4;24429:2;24418:9;24414:18;24406:26;;24478:9;24472:4;24468:20;24464:1;24453:9;24449:17;24442:47;24506:131;24632:4;24506:131;:::i;:::-;24498:139;;24225:419;;;:::o;24650:220::-;24790:34;24786:1;24778:6;24774:14;24767:58;24859:3;24854:2;24846:6;24842:15;24835:28;24650:220;:::o;24876:366::-;25018:3;25039:67;25103:2;25098:3;25039:67;:::i;:::-;25032:74;;25115:93;25204:3;25115:93;:::i;:::-;25233:2;25228:3;25224:12;25217:19;;24876:366;;;:::o;25248:419::-;25414:4;25452:2;25441:9;25437:18;25429:26;;25501:9;25495:4;25491:20;25487:1;25476:9;25472:17;25465:47;25529:131;25655:4;25529:131;:::i;:::-;25521:139;;25248:419;;;:::o;25673:221::-;25813:34;25809:1;25801:6;25797:14;25790:58;25882:4;25877:2;25869:6;25865:15;25858:29;25673:221;:::o;25900:366::-;26042:3;26063:67;26127:2;26122:3;26063:67;:::i;:::-;26056:74;;26139:93;26228:3;26139:93;:::i;:::-;26257:2;26252:3;26248:12;26241:19;;25900:366;;;:::o;26272:419::-;26438:4;26476:2;26465:9;26461:18;26453:26;;26525:9;26519:4;26515:20;26511:1;26500:9;26496:17;26489:47;26553:131;26679:4;26553:131;:::i;:::-;26545:139;;26272:419;;;:::o;26697:194::-;26737:4;26757:20;26775:1;26757:20;:::i;:::-;26752:25;;26791:20;26809:1;26791:20;:::i;:::-;26786:25;;26835:1;26832;26828:9;26820:17;;26859:1;26853:4;26850:11;26847:37;;;26864:18;;:::i;:::-;26847:37;26697:194;;;;:::o;26897:182::-;27037:34;27033:1;27025:6;27021:14;27014:58;26897:182;:::o;27085:366::-;27227:3;27248:67;27312:2;27307:3;27248:67;:::i;:::-;27241:74;;27324:93;27413:3;27324:93;:::i;:::-;27442:2;27437:3;27433:12;27426:19;;27085:366;;;:::o;27457:419::-;27623:4;27661:2;27650:9;27646:18;27638:26;;27710:9;27704:4;27700:20;27696:1;27685:9;27681:17;27674:47;27738:131;27864:4;27738:131;:::i;:::-;27730:139;;27457:419;;;:::o;27882:179::-;28022:31;28018:1;28010:6;28006:14;27999:55;27882:179;:::o;28067:366::-;28209:3;28230:67;28294:2;28289:3;28230:67;:::i;:::-;28223:74;;28306:93;28395:3;28306:93;:::i;:::-;28424:2;28419:3;28415:12;28408:19;;28067:366;;;:::o;28439:419::-;28605:4;28643:2;28632:9;28628:18;28620:26;;28692:9;28686:4;28682:20;28678:1;28667:9;28663:17;28656:47;28720:131;28846:4;28720:131;:::i;:::-;28712:139;;28439:419;;;:::o;28864:103::-;28927:7;28956:5;28945:16;;28864:103;;;:::o;28973:194::-;29049:9;29082:79;29100:60;29109:50;29153:5;29109:50;:::i;:::-;29100:60;:::i;:::-;29082:79;:::i;:::-;29069:92;;28973:194;;;:::o;29173:183::-;29286:63;29343:5;29286:63;:::i;:::-;29281:3;29274:76;29173:183;;:::o;29362:384::-;29509:4;29547:2;29536:9;29532:18;29524:26;;29560:71;29628:1;29617:9;29613:17;29604:6;29560:71;:::i;:::-;29641:98;29735:2;29724:9;29720:18;29711:6;29641:98;:::i;:::-;29362:384;;;;;:::o;29752:122::-;29789:7;29829:38;29822:5;29818:50;29807:61;;29752:122;;;:::o;29880:::-;29953:24;29971:5;29953:24;:::i;:::-;29946:5;29943:35;29933:63;;29992:1;29989;29982:12;29933:63;29880:122;:::o;30008:143::-;30065:5;30096:6;30090:13;30081:22;;30112:33;30139:5;30112:33;:::i;:::-;30008:143;;;;:::o;30157:351::-;30227:6;30276:2;30264:9;30255:7;30251:23;30247:32;30244:119;;;30282:79;;:::i;:::-;30244:119;30402:1;30427:64;30483:7;30474:6;30463:9;30459:22;30427:64;:::i;:::-;30417:74;;30373:128;30157:351;;;;:::o;30514:233::-;30654:34;30650:1;30642:6;30638:14;30631:58;30723:16;30718:2;30710:6;30706:15;30699:41;30514:233;:::o;30753:366::-;30895:3;30916:67;30980:2;30975:3;30916:67;:::i;:::-;30909:74;;30992:93;31081:3;30992:93;:::i;:::-;31110:2;31105:3;31101:12;31094:19;;30753:366;;;:::o;31125:419::-;31291:4;31329:2;31318:9;31314:18;31306:26;;31378:9;31372:4;31368:20;31364:1;31353:9;31349:17;31342:47;31406:131;31532:4;31406:131;:::i;:::-;31398:139;;31125:419;;;:::o;31550:177::-;31690:29;31686:1;31678:6;31674:14;31667:53;31550:177;:::o;31733:366::-;31875:3;31896:67;31960:2;31955:3;31896:67;:::i;:::-;31889:74;;31972:93;32061:3;31972:93;:::i;:::-;32090:2;32085:3;32081:12;32074:19;;31733:366;;;:::o;32105:419::-;32271:4;32309:2;32298:9;32294:18;32286:26;;32358:9;32352:4;32348:20;32344:1;32333:9;32329:17;32322:47;32386:131;32512:4;32386:131;:::i;:::-;32378:139;;32105:419;;;:::o;32530:167::-;32567:3;32590:22;32606:5;32590:22;:::i;:::-;32581:31;;32634:4;32627:5;32624:15;32621:41;;32642:18;;:::i;:::-;32621:41;32689:1;32682:5;32678:13;32671:20;;32530:167;;;:::o;32703:224::-;32843:34;32839:1;32831:6;32827:14;32820:58;32912:7;32907:2;32899:6;32895:15;32888:32;32703:224;:::o;32933:366::-;33075:3;33096:67;33160:2;33155:3;33096:67;:::i;:::-;33089:74;;33172:93;33261:3;33172:93;:::i;:::-;33290:2;33285:3;33281:12;33274:19;;32933:366;;;:::o;33305:419::-;33471:4;33509:2;33498:9;33494:18;33486:26;;33558:9;33552:4;33548:20;33544:1;33533:9;33529:17;33522:47;33586:131;33712:4;33586:131;:::i;:::-;33578:139;;33305:419;;;:::o;33730:222::-;33870:34;33866:1;33858:6;33854:14;33847:58;33939:5;33934:2;33926:6;33922:15;33915:30;33730:222;:::o;33958:366::-;34100:3;34121:67;34185:2;34180:3;34121:67;:::i;:::-;34114:74;;34197:93;34286:3;34197:93;:::i;:::-;34315:2;34310:3;34306:12;34299:19;;33958:366;;;:::o;34330:419::-;34496:4;34534:2;34523:9;34519:18;34511:26;;34583:9;34577:4;34573:20;34569:1;34558:9;34554:17;34547:47;34611:131;34737:4;34611:131;:::i;:::-;34603:139;;34330:419;;;:::o;34755:225::-;34895:34;34891:1;34883:6;34879:14;34872:58;34964:8;34959:2;34951:6;34947:15;34940:33;34755:225;:::o;34986:366::-;35128:3;35149:67;35213:2;35208:3;35149:67;:::i;:::-;35142:74;;35225:93;35314:3;35225:93;:::i;:::-;35343:2;35338:3;35334:12;35327:19;;34986:366;;;:::o;35358:419::-;35524:4;35562:2;35551:9;35547:18;35539:26;;35611:9;35605:4;35601:20;35597:1;35586:9;35582:17;35575:47;35639:131;35765:4;35639:131;:::i;:::-;35631:139;;35358:419;;;:::o;35783:410::-;35823:7;35846:20;35864:1;35846:20;:::i;:::-;35841:25;;35880:20;35898:1;35880:20;:::i;:::-;35875:25;;35935:1;35932;35928:9;35957:30;35975:11;35957:30;:::i;:::-;35946:41;;36136:1;36127:7;36123:15;36120:1;36117:22;36097:1;36090:9;36070:83;36047:139;;36166:18;;:::i;:::-;36047:139;35831:362;35783:410;;;;:::o;36199:180::-;36247:77;36244:1;36237:88;36344:4;36341:1;36334:15;36368:4;36365:1;36358:15;36385:185;36425:1;36442:20;36460:1;36442:20;:::i;:::-;36437:25;;36476:20;36494:1;36476:20;:::i;:::-;36471:25;;36515:1;36505:35;;36520:18;;:::i;:::-;36505:35;36562:1;36559;36555:9;36550:14;;36385:185;;;;:::o;36576:180::-;36624:77;36621:1;36614:88;36721:4;36718:1;36711:15;36745:4;36742:1;36735:15;36762:332;36883:4;36921:2;36910:9;36906:18;36898:26;;36934:71;37002:1;36991:9;36987:17;36978:6;36934:71;:::i;:::-;37015:72;37083:2;37072:9;37068:18;37059:6;37015:72;:::i;:::-;36762:332;;;;;:::o;37100:137::-;37154:5;37185:6;37179:13;37170:22;;37201:30;37225:5;37201:30;:::i;:::-;37100:137;;;;:::o;37243:345::-;37310:6;37359:2;37347:9;37338:7;37334:23;37330:32;37327:119;;;37365:79;;:::i;:::-;37327:119;37485:1;37510:61;37563:7;37554:6;37543:9;37539:22;37510:61;:::i;:::-;37500:71;;37456:125;37243:345;;;;:::o;37594:85::-;37639:7;37668:5;37657:16;;37594:85;;;:::o;37685:158::-;37743:9;37776:61;37794:42;37803:32;37829:5;37803:32;:::i;:::-;37794:42;:::i;:::-;37776:61;:::i;:::-;37763:74;;37685:158;;;:::o;37849:147::-;37944:45;37983:5;37944:45;:::i;:::-;37939:3;37932:58;37849:147;;:::o;38002:137::-;38092:6;38126:5;38120:12;38110:22;;38002:137;;;:::o;38145:207::-;38267:11;38301:6;38296:3;38289:19;38341:4;38336:3;38332:14;38317:29;;38145:207;;;;:::o;38358:155::-;38448:4;38471:3;38463:11;;38501:4;38496:3;38492:14;38484:22;;38358:155;;;:::o;38519:108::-;38596:24;38614:5;38596:24;:::i;:::-;38591:3;38584:37;38519:108;;:::o;38633:99::-;38704:21;38719:5;38704:21;:::i;:::-;38699:3;38692:34;38633:99;;:::o;38790:838::-;38923:4;38918:3;38914:14;39010:4;39003:5;38999:16;38993:23;39029:63;39086:4;39081:3;39077:14;39063:12;39029:63;:::i;:::-;38938:164;39182:4;39175:5;39171:16;39165:23;39201:63;39258:4;39253:3;39249:14;39235:12;39201:63;:::i;:::-;39112:162;39358:4;39351:5;39347:16;39341:23;39377:57;39428:4;39423:3;39419:14;39405:12;39377:57;:::i;:::-;39284:160;39529:4;39522:5;39518:16;39512:23;39548:63;39605:4;39600:3;39596:14;39582:12;39548:63;:::i;:::-;39454:167;38892:736;38790:838;;:::o;39634:271::-;39749:10;39770:92;39858:3;39850:6;39770:92;:::i;:::-;39894:4;39889:3;39885:14;39871:28;;39634:271;;;;:::o;39911:136::-;40004:4;40036;40031:3;40027:14;40019:22;;39911:136;;;:::o;40109:916::-;40274:3;40303:77;40374:5;40303:77;:::i;:::-;40396:109;40498:6;40493:3;40396:109;:::i;:::-;40389:116;;40529:79;40602:5;40529:79;:::i;:::-;40631:7;40662:1;40647:353;40672:6;40669:1;40666:13;40647:353;;;40748:6;40742:13;40775:109;40880:3;40865:13;40775:109;:::i;:::-;40768:116;;40907:83;40983:6;40907:83;:::i;:::-;40897:93;;40707:293;40694:1;40691;40687:9;40682:14;;40647:353;;;40651:14;41016:3;41009:10;;40279:746;;;40109:916;;;;:::o;41031:923::-;41340:4;41378:3;41367:9;41363:19;41355:27;;41392:71;41460:1;41449:9;41445:17;41436:6;41392:71;:::i;:::-;41473:80;41549:2;41538:9;41534:18;41525:6;41473:80;:::i;:::-;41600:9;41594:4;41590:20;41585:2;41574:9;41570:18;41563:48;41628:154;41777:4;41768:6;41628:154;:::i;:::-;41620:162;;41792:72;41860:2;41849:9;41845:18;41836:6;41792:72;:::i;:::-;41874:73;41942:3;41931:9;41927:19;41918:6;41874:73;:::i;:::-;41031:923;;;;;;;;:::o;41960:143::-;42017:5;42048:6;42042:13;42033:22;;42064:33;42091:5;42064:33;:::i;:::-;41960:143;;;;:::o;42109:351::-;42179:6;42228:2;42216:9;42207:7;42203:23;42199:32;42196:119;;;42234:79;;:::i;:::-;42196:119;42354:1;42379:64;42435:7;42426:6;42415:9;42411:22;42379:64;:::i;:::-;42369:74;;42325:128;42109:351;;;;:::o

Swarm Source

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