ETH Price: $2,990.67 (+4.52%)
Gas: 2 Gwei

Token

Karma (KARMA)
 

Overview

Max Total Supply

1,000,000,000 KARMA

Holders

417

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
10,105,993.014684094570462687 KARMA

Value
$0.00
0xde916f407ba48acb0f2cf2b644fc32fb2b79c6ef
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StandardToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: contracts/interfaces/IKARMAAntiBot.sol


pragma solidity ^0.8.17;

interface IKARMAAntiBot {
  function setTokenOwner(address owner) external;
  function launch(address pair, address router) external;

  function onPreTransferCheck(
    address from,
    address to,
    uint256 amount
  ) external;
}
// File: contracts/ERC1363/IERC1363Spender.sol



pragma solidity ^0.8.0;

/**
 * @title IERC1363Spender Interface
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @dev Interface for any contract that wants to support approveAndCall
 *  from ERC1363 token contracts as defined in
 *  https://eips.ethereum.org/EIPS/eip-1363
 */
interface IERC1363Spender {
    /**
     * @notice Handle the approval of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after an `approve`. This function MAY throw to revert and reject the
     * approval. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param sender address The address which called `approveAndCall` function
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onApprovalReceived(address,uint256,bytes)"))` unless throwing
     */
    function onApprovalReceived(
        address sender,
        uint256 amount,
        bytes calldata data
    ) external returns (bytes4);
}

// File: contracts/ERC1363/IERC1363Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title IERC1363Receiver Interface
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @dev Interface for any contract that wants to support transferAndCall or transferFromAndCall
 *  from ERC1363 token contracts as defined in
 *  https://eips.ethereum.org/EIPS/eip-1363
 */
interface IERC1363Receiver {
    /**
     * @notice Handle the receipt of ERC1363 tokens
     * @dev Any ERC1363 smart contract calls this function on the recipient
     * after a `transfer` or a `transferFrom`. This function MAY throw to revert and reject the
     * transfer. Return of other than the magic value MUST result in the
     * transaction being reverted.
     * Note: the token contract address is always the message sender.
     * @param operator address The address which called `transferAndCall` or `transferFromAndCall` function
     * @param sender address The address which are token transferred from
     * @param amount uint256 The amount of tokens transferred
     * @param data bytes Additional data with no specified format
     * @return `bytes4(keccak256("onTransferReceived(address,address,uint256,bytes)"))` unless throwing
     */
    function onTransferReceived(
        address operator,
        address sender,
        uint256 amount,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165Upgradeable {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol


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

// File: @openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol


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

// File: @openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol


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

// File: contracts/ERC1363/IERC1363.sol



pragma solidity ^0.8.0;



/**
 * @title IERC1363 Interface
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @dev Interface for a Payable Token contract as defined in
 *  https://eips.ethereum.org/EIPS/eip-1363
 */
interface IERC1363 is IERC165Upgradeable, IERC20Upgradeable {
    /**
     * @notice Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @return true unless throwing
     */
    function transferAndCall(address recipient, uint256 amount) external returns (bool);

    /**
     * @notice Transfer tokens from `msg.sender` to another address and then call `onTransferReceived` on receiver
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @param data bytes Additional data with no specified format, sent in call to `recipient`
     * @return true unless throwing
     */
    function transferAndCall(
        address recipient,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);

    /**
     * @notice Transfer tokens from one address to another and then call `onTransferReceived` on receiver
     * @param sender address The address which you want to send tokens from
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @return true unless throwing
     */
    function transferFromAndCall(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @notice Transfer tokens from one address to another and then call `onTransferReceived` on receiver
     * @param sender address The address which you want to send tokens from
     * @param recipient address The address which you want to transfer to
     * @param amount uint256 The amount of tokens to be transferred
     * @param data bytes Additional data with no specified format, sent in call to `recipient`
     * @return true unless throwing
     */
    function transferFromAndCall(
        address sender,
        address recipient,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);

    /**
     * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
     * and then call `onApprovalReceived` on spender.
     * 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
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     */
    function approveAndCall(address spender, uint256 amount) external returns (bool);

    /**
     * @notice Approve the passed address to spend the specified amount of tokens on behalf of msg.sender
     * and then call `onApprovalReceived` on spender.
     * 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
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Additional data with no specified format, sent in call to `spender`
     */
    function approveAndCall(
        address spender,
        uint256 amount,
        bytes calldata data
    ) external returns (bool);
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20MetadataUpgradeable.sol


// 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 IERC20MetadataUpgradeable is IERC20Upgradeable {
    /**
     * @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);
}

// File: contracts/interfaces/IToken.sol



pragma solidity ^0.8.0;


interface IToken is IERC20MetadataUpgradeable {

    struct Taxes {
        uint256 marketing;
        uint256 reflection;
    }

    struct TokenData {
        string name;
        string symbol;
        uint8 decimals;
        uint256 supply;
        uint256 maxTx;
        uint256 maxWallet;
        address routerAddress;
        address karmaDeployer;
        Taxes buyTax;
        Taxes sellTax;
        address marketingWallet;
        address rewardToken;
        address antiBot;
        address limitedOwner;
        address karmaCampaignFactory;
    }

    function initialize(TokenData memory tokenData) external;

    function updateExcludedFromFees(address _address, bool state) external;
    function excludedFromFees(address _address) external view returns (bool);

    function getOwner() external view returns (address);
    
}

// File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol


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

// File: @openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol


// OpenZeppelin Contracts (last updated v4.9.3) (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 SafeERC20Upgradeable {
    using AddressUpgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20Upgradeable 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(
        IERC20PermitUpgradeable 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(IERC20Upgradeable 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(IERC20Upgradeable 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))) && AddressUpgradeable.isContract(address(token));
    }
}

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized != type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol


// 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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol


// 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable {
    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.
     */
    function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __ERC20_init_unchained(name_, symbol_);
    }

    function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _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 {}

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[45] private __gap;
}

// File: contracts/ERC1363/ERC1363.sol



pragma solidity ^0.8.0;







/**
 * @title ERC1363
 * @author Vittorio Minacori (https://github.com/vittominacori)
 * @dev Implementation of an ERC1363 interface
 */
abstract contract ERC1363 is IERC1363, ERC165Upgradeable, ERC20Upgradeable {
    using AddressUpgradeable for address;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165Upgradeable, IERC165Upgradeable)
        returns (bool)
    {
        return interfaceId == type(IERC1363).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Transfer tokens to a specified address and then execute a callback on recipient.
     * @param recipient The address to transfer to.
     * @param amount The amount to be transferred.
     * @return A boolean that indicates if the operation was successful.
     */
    function transferAndCall(address recipient, uint256 amount) public virtual override returns (bool) {
        return transferAndCall(recipient, amount, '');
    }

    /**
     * @dev Transfer tokens to a specified address and then execute a callback on recipient.
     * @param recipient The address to transfer to
     * @param amount The amount to be transferred
     * @param data Additional data with no specified format
     * @return A boolean that indicates if the operation was successful.
     */
    function transferAndCall(
        address recipient,
        uint256 amount,
        bytes memory data
    ) public virtual override returns (bool) {
        transfer(recipient, amount);
        require(_checkAndCallTransfer(_msgSender(), recipient, amount, data), 'ERC1363: _checkAndCallTransfer reverts');
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another and then execute a callback on recipient.
     * @param sender The address which you want to send tokens from
     * @param recipient The address which you want to transfer to
     * @param amount The amount of tokens to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromAndCall(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        return transferFromAndCall(sender, recipient, amount, '');
    }

    /**
     * @dev Transfer tokens from one address to another and then execute a callback on recipient.
     * @param sender The address which you want to send tokens from
     * @param recipient The address which you want to transfer to
     * @param amount The amount of tokens to be transferred
     * @param data Additional data with no specified format
     * @return A boolean that indicates if the operation was successful.
     */
    function transferFromAndCall(
        address sender,
        address recipient,
        uint256 amount,
        bytes memory data
    ) public virtual override returns (bool) {
        transferFrom(sender, recipient, amount);
        require(_checkAndCallTransfer(sender, recipient, amount, data), 'ERC1363: _checkAndCallTransfer reverts');
        return true;
    }

    /**
     * @dev Approve spender to transfer tokens and then execute a callback on recipient.
     * @param spender The address allowed to transfer to
     * @param amount The amount allowed to be transferred
     * @return A boolean that indicates if the operation was successful.
     */
    function approveAndCall(address spender, uint256 amount) public virtual override returns (bool) {
        return approveAndCall(spender, amount, '');
    }

    /**
     * @dev Approve spender to transfer tokens and then execute a callback on recipient.
     * @param spender The address allowed to transfer to.
     * @param amount The amount allowed to be transferred.
     * @param data Additional data with no specified format.
     * @return A boolean that indicates if the operation was successful.
     */
    function approveAndCall(
        address spender,
        uint256 amount,
        bytes memory data
    ) public virtual override returns (bool) {
        approve(spender, amount);
        require(_checkAndCallApprove(spender, amount, data), 'ERC1363: _checkAndCallApprove reverts');
        return true;
    }

    /**
     * @dev Internal function to invoke `onTransferReceived` on a target address
     *  The call is not executed if the target address is not a contract
     * @param sender address Representing the previous owner of the given token value
     * @param recipient address Target address that will receive the tokens
     * @param amount uint256 The amount mount of tokens to be transferred
     * @param data bytes Optional data to send along with the call
     * @return whether the call correctly returned the expected magic value
     */
    function _checkAndCallTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bytes memory data
    ) internal virtual returns (bool) {
        if (!recipient.isContract()) {
            return false;
        }
        bytes4 retval = IERC1363Receiver(recipient).onTransferReceived(_msgSender(), sender, amount, data);
        return (retval == IERC1363Receiver(recipient).onTransferReceived.selector);
    }

    /**
     * @dev Internal function to invoke `onApprovalReceived` on a target address
     *  The call is not executed if the target address is not a contract
     * @param spender address The address which will spend the funds
     * @param amount uint256 The amount of tokens to be spent
     * @param data bytes Optional data to send along with the call
     * @return whether the call correctly returned the expected magic value
     */
    function _checkAndCallApprove(
        address spender,
        uint256 amount,
        bytes memory data
    ) internal virtual returns (bool) {
        if (!spender.isContract()) {
            return false;
        }
        bytes4 retval = IERC1363Spender(spender).onApprovalReceived(_msgSender(), amount, data);
        return (retval == IERC1363Spender(spender).onApprovalReceived.selector);
    }
}

// File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol


// 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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _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);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

// File: contracts/abstract/LimitedOwner.sol


pragma solidity ^0.8.0;


/**
 * @title Secondary
 * @dev A Secondary contract can only be used by its Limited Owner account (the one that created it / not KARMATokenDeployer)
 */
contract LimitedOwner is OwnableUpgradeable {
  address private _limitedOwner;
  address public karmaCampaignFactory;

  event LimitedOwnerTransferred(
    address recipient
  );

  /**
   * @dev Reverts if called from any account other than the LimitedOwner.
   */
  modifier onlyLimitedOrOwner() { 
    require(msg.sender == _limitedOwner || msg.sender == karmaCampaignFactory || msg.sender == owner());
    _;
  }

  /**
   * @return the address of the Limited Owner.
   */
  function limitedOwner() public view returns (address) {
    return _limitedOwner;
  }
  
  /**
   * @dev Transfers contract to a new Limited Owner.
   * @param recipient The address of new Limited Owner. 
   */
  function transferLimitedOwner(address recipient) public onlyLimitedOrOwner {
    require(recipient != address(0));
    _limitedOwner = recipient;
    emit LimitedOwnerTransferred(_limitedOwner);
  }
}
// File: contracts/extensions/ERC20TokenRecover.sol



pragma solidity ^0.8.0;




/**
 * @title ERC20TokenRecover
 * @author Henk ter Harmsel
 * @dev Allows owner to recover any ERC20 or ETH sent into the contract
 * based on https://github.com/vittominacori/eth-token-recover by Vittorio Minacori
 */
contract ERC20TokenRecover is OwnableUpgradeable {
    using SafeERC20Upgradeable for IERC20Upgradeable;

    /**
     * @notice function that transfers an token amount from this contract to the owner when accidentally sent
     * @param tokenAddress The token contract address
     * @param tokenAmount Number of tokens to be sent
     */
    function recoverERC20(address tokenAddress, uint256 tokenAmount) public virtual onlyOwner {
        IERC20Upgradeable(tokenAddress).safeTransfer(owner(), tokenAmount);
    }

    /**
     * @notice function that transfers an eth amount from this contract to the owner when accidentally sent
     * @param amount Number of eth to be sent
     */
    function recoverETH(uint256 amount) public virtual onlyOwner {
        (bool sent, ) = owner().call{value: amount}('');
        require(sent, 'ERC20TokenRecover: SENDING_ETHER_FAILED');
    }
}

// File: contracts/abstract/BaseToken.sol



pragma solidity ^0.8.0;











// import "hardhat/console.sol";

interface IFactory {
	function createPair(
		address tokenA,
		address tokenB
	) external returns (address pair);
}

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

	function WETH() external pure returns (address);

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

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

abstract contract BaseToken is
	Initializable,
	ContextUpgradeable,
	OwnableUpgradeable,
	LimitedOwner,
	IToken,
	ERC20Upgradeable,
	ERC20TokenRecover,
	ERC1363
{

	address public deployer;

	address public constant DEAD = address(0xdead);

	mapping(address => uint256) private _balances;
	mapping(address => bool) public excludedFromFees;

	IRouter public router;
	address public pair;

	bool public tradingEnabled;

	uint256 public maxTxAmount;
	uint256 public maxWalletAmount;

	IKARMAAntiBot public antibot;
	bool public enableAntiBot;
	address public karmaDeployer;

	uint8 _decimals;

	uint256[50] __gap;

	constructor() {
		deployer = _msgSender();
	}

	function __BaseToken_init(
		string memory name,
		string memory symbol,
		uint8 decim,
		uint256 supply,
		address limitedOwner
	) public virtual {
		// msg.sender = address(0) when using Clone.
		require(
			deployer == address(0) || _msgSender() == deployer,
			"UNAUTHORIZED"
		);
		require(decim > 3 && decim < 19, "DECIM");

		deployer = _msgSender();

		super.__ERC20_init(name, symbol);
		super.__Ownable_init_unchained();
		// super.__ERC20Capped_init_unchained(supply);
		// super.__ERC20Burnable_init_unchained(true);
		_decimals = decim;

		_mint(_msgSender(), supply);
		transferLimitedOwner(limitedOwner);
		transferOwnership(tx.origin);
	}

	function decimals()
		public
		view
		virtual
		override(ERC20Upgradeable, IERC20MetadataUpgradeable)
		returns (uint8)
	{
		return _decimals;
	}

	//== BEP20 owner function ==
	function getOwner() public view override returns (address) {
		return owner();
	}

	//== Mandatory overrides ==/
	/**
	 * @dev See {IERC165-supportsInterface}.
	 */
	function supportsInterface(
		bytes4 interfaceId
	) public view virtual override(ERC1363) returns (bool) {
		return super.supportsInterface(interfaceId);
	}

	function _mint(
		address account,
		uint256 amount
	) internal virtual override(ERC20Upgradeable) {
		super._mint(account, amount);
	}

	function disableAntiBot(
	) external onlyLimitedOrOwner {
		require(enableAntiBot == true, "ALREADY_DISABLED");
		enableAntiBot = false;
	}

	function updateExcludedFromFees(
		address _address,
		bool state
	) external onlyLimitedOrOwner {
		excludedFromFees[_address] = state;
	}

	function updateMaxTxAmount(uint256 amount) external onlyLimitedOrOwner {
		require(amount > (totalSupply() / 10000), "maxTxAmount < 0.01%");
		require(
			(amount > maxTxAmount && msg.sender == limitedOwner()) ||
				(msg.sender == karmaDeployer && owner() == karmaDeployer),
			"Only Karma deployer"
		);
		maxTxAmount = amount;
	}

	function updateMaxWalletAmount(uint256 amount) external onlyLimitedOrOwner {
		require(amount > (totalSupply() / 10000), "maxWalletAmount < 0.01%");
		require(
			(amount > maxWalletAmount && msg.sender == limitedOwner()) ||
				(msg.sender == karmaDeployer && owner() == karmaDeployer),
			"Only Karma deployer"
		);
		maxWalletAmount = amount;
	}

	function enableTrading() external onlyLimitedOrOwner {
		require(!tradingEnabled, "Trading already active");

		tradingEnabled = true;
		if (enableAntiBot) {
			antibot.launch(pair, address(router));
		}
	}

	function disableTrading() external onlyOwner {
		require(
			msg.sender == karmaDeployer && owner() == karmaDeployer,
			"Only karma deployer can disable"
		);
		tradingEnabled = false;
	}

	function setEnableAntiBot(bool _enable) external onlyOwner {
		enableAntiBot = _enable;
	}

	// fallbacks
	receive() external payable {}
}
// File: contracts/StandardToken.sol

//SPDX-License-Identifier: BUSL-1.1


pragma solidity ^0.8.0;
pragma abicoder v2;

contract StandardToken is BaseToken {
	using SafeMathUpgradeable for uint256;
	using AddressUpgradeable for address payable;

	mapping(address => uint256) private _balances;

	bool private swapping;
	bool public swapEnabled;

	uint256 public swapThreshold;

	address public marketingWallet;

	uint256 public sellTax = 0;
	uint256 public buyTax = 0;

	modifier inSwap() {
		if (!swapping) {
			swapping = true;
			_;
			swapping = false;
		}
	}

	function initialize(
		TokenData calldata tokenData
	) public virtual override initializer {
		__BaseToken_init(
			tokenData.name,
			tokenData.symbol,
			tokenData.decimals,
			tokenData.supply,
			tokenData.limitedOwner
		);
		require(tokenData.maxTx > totalSupply() / 10000, "maxTxAmount < 0.01%");
		require(
			tokenData.maxWallet > totalSupply() / 10000,
			"maxWalletAmount < 0.01%"
		);

		karmaDeployer = tokenData.karmaDeployer;
		karmaCampaignFactory = tokenData.karmaCampaignFactory;
		excludedFromFees[msg.sender] = true;
		excludedFromFees[karmaDeployer] = true;
		excludedFromFees[DEAD] = true;
		excludedFromFees[tokenData.routerAddress] = true;
		excludedFromFees[tokenData.karmaDeployer] = true;

		router = IRouter(tokenData.routerAddress);
		pair = IFactory(router.factory()).createPair(
			address(this),
			router.WETH()
		);

		swapThreshold = tokenData.supply / 100; // 1% by default
		maxTxAmount = tokenData.maxTx;
		maxWalletAmount = tokenData.maxWallet;

		buyTax = tokenData.buyTax.marketing;
		sellTax = tokenData.sellTax.marketing;

		marketingWallet = tokenData.marketingWallet;

		excludedFromFees[address(this)] = true;
		excludedFromFees[marketingWallet] = true;

		if (tokenData.antiBot != address(0x0) && tokenData.antiBot != DEAD) {
			antibot = IKARMAAntiBot(tokenData.antiBot);
			antibot.setTokenOwner(msg.sender);
			enableAntiBot = true;
		}
	}

	function _transfer(
		address sender,
		address recipient,
		uint256 amount
	) internal override {
		require(amount > 0, "Transfer amount must be greater than zero");

		if (
			!excludedFromFees[sender] &&
			!excludedFromFees[recipient] &&
			!swapping
		) {
			require(tradingEnabled, "Trading not active yet");
			require(amount <= maxTxAmount, "You are exceeding maxTxAmount");
			if (recipient != pair) {
				require(
					balanceOf(recipient) + amount <= maxWalletAmount,
					"You are exceeding maxWalletAmount"
				);
			}
		}

		if (enableAntiBot) {
			antibot.onPreTransferCheck(sender, recipient, amount);
		}

		uint256 fee;

		//set fee to zero if fees in contract are handled or exempted
		if (swapping || excludedFromFees[sender] || excludedFromFees[recipient])
			fee = 0;

			//calculate fee
		else {
			if (recipient == pair) {
				fee = (amount * sellTax) / 1000;
			} else {
				fee = (amount * buyTax) / 1000;
			}
		}

		//send fees if threshold has been reached
		//don't do this on buys, breaks swap
		if (swapEnabled && !swapping && sender != pair && fee > 0)
			swapForFees();

		super._transfer(sender, recipient, amount - fee);
		if (fee > 0) super._transfer(sender, address(this), fee);
	}

	function swapForFees() private inSwap {
		uint256 contractBalance = balanceOf(address(this));
		if (contractBalance >= swapThreshold) {
			swapTokensForETH(contractBalance);
			uint256 marketingAmt = address(this).balance;
			if (marketingAmt > 0) {
				payable(marketingWallet).sendValue(marketingAmt);
			}
		}
	}

	function swapTokensForETH(uint256 tokenAmount) private {
		address[] memory path = new address[](2);
		path[0] = address(this);
		path[1] = router.WETH();

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

		// make the swap
		router.swapExactTokensForETHSupportingFeeOnTransferTokens(
			tokenAmount,
			0,
			path,
			address(this),
			block.timestamp
		);
	}

	function setSwapEnabled(bool state) external onlyOwner {
		swapEnabled = state;
	}

	function setSwapThreshold(uint256 new_amount) external onlyOwner {
		swapThreshold = new_amount;
	}

	function setTaxes(uint256 _buy, uint256 _sell) external onlyLimitedOrOwner {
		require(_buy <= 150, "Buy > 15%");
		require(_sell <= 150, "Sell > 15%");
		require(
			(_buy < buyTax && msg.sender == limitedOwner()) ||
				(msg.sender == karmaDeployer && owner() == karmaDeployer),
			"Only Karma deployer can increase buy taxes"
		);
		require(
			(_sell < sellTax && msg.sender == limitedOwner()) ||
				(msg.sender == karmaDeployer && owner() == karmaDeployer),
			"Only Karma deployer can increase sell taxes"
		);
		buyTax = _buy;
		sellTax = _sell;
	}

	function updateMarketingWallet(address newWallet) external onlyOwner {
		marketingWallet = newWallet;
	}

	function manualSwap(uint256 amount) external onlyOwner {
		swapTokensForETH(amount);
		payable(marketingWallet).sendValue(address(this).balance);
	}
}

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"LimitedOwnerTransferred","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":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decim","type":"uint8"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"address","name":"limitedOwner","type":"address"}],"name":"__BaseToken_init","outputs":[],"stateMutability":"nonpayable","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":[],"name":"antibot","outputs":[{"internalType":"contract IKARMAAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"maxTx","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"},{"internalType":"address","name":"routerAddress","type":"address"},{"internalType":"address","name":"karmaDeployer","type":"address"},{"components":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"reflection","type":"uint256"}],"internalType":"struct IToken.Taxes","name":"buyTax","type":"tuple"},{"components":[{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"reflection","type":"uint256"}],"internalType":"struct IToken.Taxes","name":"sellTax","type":"tuple"},{"internalType":"address","name":"marketingWallet","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"},{"internalType":"address","name":"antiBot","type":"address"},{"internalType":"address","name":"limitedOwner","type":"address"},{"internalType":"address","name":"karmaCampaignFactory","type":"address"}],"internalType":"struct IToken.TokenData","name":"tokenData","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"karmaCampaignFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"karmaDeployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_amount","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFromAndCall","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":"transferFromAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"transferLimitedOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"updateExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600061010a55600061010b5534801561001c57600080fd5b5060cb80546001600160a01b031916331790556138628061003e6000396000f3fe60806040526004361061037a5760003560e01c80638a8c523c116101d1578063cae9ca5111610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a10578063f887ea4014610a30578063fc58b9fe14610a50578063fd5bf32d14610a7057600080fd5b8063dd62ed3e14610990578063e01af92c146109b0578063e01c458a146109d0578063e545fd6d146109f057600080fd5b8063d5f39488116100dc578063d5f3948814610900578063d75b8fb514610920578063d8fbe99414610940578063dbe66ca01461096057600080fd5b8063cae9ca51146108a9578063cc1776d3146108c9578063d3335553146108e057600080fd5b8063a9059cbb1161016f578063b70143c911610149578063b70143c914610829578063c18bc19514610849578063c1d34b8914610869578063c647b20e1461088957600080fd5b8063a9059cbb146107d3578063aa4bde28146107f3578063aacebbe31461080957600080fd5b806395d89b41116101ab57806395d89b411461075e5780639d0014b114610773578063a457c2d714610793578063a8aa1b31146107b357600080fd5b80638a8c523c146107155780638c0b5e221461072a5780638da5cb5b1461074057600080fd5b8063313ce567116102ab5780636ddd17131161024957806375f0a8741161022357806375f0a8741461069f57806379679a21146106c0578063893d20e8146106e05780638980f11f146106f557600080fd5b80636ddd17131461063457806370a0823114610654578063715018a61461068a57600080fd5b80634000aea0116102855780634000aea0146105bc5780634ada218b146105dc5780634f7041a5146105fd5780636256d1811461061457600080fd5b8063313ce567146105505780633177029f1461057c578063395093511461059c57600080fd5b806312e3ef14116103185780631f46b1c6116102f25780631f46b1c6146104cf57806323b872dd146104ef578063241ec3be1461050f578063305c4c801461053057600080fd5b806312e3ef141461048757806317700f01146104a557806318160ddd146104ba57600080fd5b806306fdde031161035457806306fdde031461040e57806307ce9de414610430578063095ea7b3146104475780631296ee621461046757600080fd5b806301ffc9a71461038657806303fd2a45146103bb5780630445b667146103e957600080fd5b3661038157005b600080fd5b34801561039257600080fd5b506103a66103a1366004612fdd565b610a90565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d161dead81565b6040516001600160a01b0390911681526020016103b2565b3480156103f557600080fd5b506104006101085481565b6040519081526020016103b2565b34801561041a57600080fd5b50610423610aa1565b6040516103b2919061304a565b34801561043c57600080fd5b50610445610b33565b005b34801561045357600080fd5b506103a6610462366004613072565b610bd9565b34801561047357600080fd5b506103a6610482366004613072565b610bf1565b34801561049357600080fd5b506065546001600160a01b03166103d1565b3480156104b157600080fd5b50610445610c14565b3480156104c657600080fd5b50609b54610400565b3480156104db57600080fd5b506104456104ea3660046130ac565b610cb5565b3480156104fb57600080fd5b506103a661050a3660046130c9565b610cdb565b34801561051b57600080fd5b5060d2546103a690600160a01b900460ff1681565b34801561053c57600080fd5b5060d2546103d1906001600160a01b031681565b34801561055c57600080fd5b5060d354600160a01b900460ff1660405160ff90911681526020016103b2565b34801561058857600080fd5b506103a6610597366004613072565b610cff565b3480156105a857600080fd5b506103a66105b7366004613072565b610d1b565b3480156105c857600080fd5b506103a66105d73660046131ad565b610d3d565b3480156105e857600080fd5b5060cf546103a690600160a01b900460ff1681565b34801561060957600080fd5b5061040061010b5481565b34801561062057600080fd5b5061044561062f366004613206565b610d72565b34801561064057600080fd5b50610107546103a690610100900460ff1681565b34801561066057600080fd5b5061040061066f36600461321f565b6001600160a01b031660009081526099602052604090205490565b34801561069657600080fd5b50610445610eb3565b3480156106ab57600080fd5b50610109546103d1906001600160a01b031681565b3480156106cc57600080fd5b506066546103d1906001600160a01b031681565b3480156106ec57600080fd5b506103d1610ec7565b34801561070157600080fd5b50610445610710366004613072565b610ee0565b34801561072157600080fd5b50610445610f12565b34801561073657600080fd5b5061040060d05481565b34801561074c57600080fd5b506033546001600160a01b03166103d1565b34801561076a57600080fd5b50610423611036565b34801561077f57600080fd5b5061044561078e366004613206565b611045565b34801561079f57600080fd5b506103a66107ae366004613072565b611053565b3480156107bf57600080fd5b5060cf546103d1906001600160a01b031681565b3480156107df57600080fd5b506103a66107ee366004613072565b6110ce565b3480156107ff57600080fd5b5061040060d15481565b34801561081557600080fd5b5061044561082436600461321f565b6110dc565b34801561083557600080fd5b50610445610844366004613206565b611107565b34801561085557600080fd5b50610445610864366004613206565b611132565b34801561087557600080fd5b506103a661088436600461323c565b611277565b34801561089557600080fd5b506104456108a43660046132a8565b6112b5565b3480156108b557600080fd5b506103a66108c43660046131ad565b6114fd565b3480156108d557600080fd5b5061040061010a5481565b3480156108ec57600080fd5b506104456108fb366004613206565b61156f565b34801561090c57600080fd5b5060cb546103d1906001600160a01b031681565b34801561092c57600080fd5b5061044561093b36600461321f565b61163b565b34801561094c57600080fd5b506103a661095b3660046130c9565b6116e3565b34801561096c57600080fd5b506103a661097b36600461321f565b60cd6020526000908152604090205460ff1681565b34801561099c57600080fd5b506104006109ab3660046132ca565b611700565b3480156109bc57600080fd5b506104456109cb3660046130ac565b61172b565b3480156109dc57600080fd5b506104456109eb366004613319565b61174e565b3480156109fc57600080fd5b50610445610a0b3660046133ac565b61185d565b348015610a1c57600080fd5b50610445610a2b36600461321f565b6118c9565b348015610a3c57600080fd5b5060ce546103d1906001600160a01b031681565b348015610a5c57600080fd5b5060d3546103d1906001600160a01b031681565b348015610a7c57600080fd5b50610445610a8b3660046133da565b61193f565b6000610a9b8261200d565b92915050565b6060609c8054610ab090613416565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc90613416565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6065546001600160a01b0316331480610b5657506066546001600160a01b031633145b80610b6b57506033546001600160a01b031633145b610b7457600080fd5b60d254600160a01b900460ff161515600114610bca5760405162461bcd60e51b815260206004820152601060248201526f1053149150511657d11254d05093115160821b60448201526064015b60405180910390fd5b60d2805460ff60a01b19169055565b600033610be7818585612042565b5060019392505050565b6000610c0d838360405180602001604052806000815250610d3d565b9392505050565b610c1c612166565b60d3546001600160a01b031633148015610c5a575060d3546001600160a01b0316610c4f6033546001600160a01b031690565b6001600160a01b0316145b610ca65760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c79206b61726d61206465706c6f7965722063616e2064697361626c65006044820152606401610bc1565b60cf805460ff60a01b19169055565b610cbd612166565b60d28054911515600160a01b0260ff60a01b19909216919091179055565b600033610ce98582856121c0565b610cf4858585612234565b506001949350505050565b6000610c0d8383604051806020016040528060008152506114fd565b600033610be7818585610d2e8383611700565b610d389190613466565b612042565b6000610d4984846110ce565b50610d56338585856125d5565b610be75760405162461bcd60e51b8152600401610bc190613479565b6065546001600160a01b0316331480610d9557506066546001600160a01b031633145b80610daa57506033546001600160a01b031633145b610db357600080fd5b612710610dbf609b5490565b610dc991906134bf565b8111610e0d5760405162461bcd60e51b81526020600482015260136024820152726d61785478416d6f756e74203c20302e30312560681b6044820152606401610bc1565b60d05481118015610e2857506065546001600160a01b031633145b80610e6c575060d3546001600160a01b031633148015610e6c575060d3546001600160a01b0316610e616033546001600160a01b031690565b6001600160a01b0316145b610eae5760405162461bcd60e51b815260206004820152601360248201527227b7363c9025b0b936b0903232b83637bcb2b960691b6044820152606401610bc1565b60d055565b610ebb612166565b610ec56000612684565b565b6000610edb6033546001600160a01b031690565b905090565b610ee8612166565b610f0e610efd6033546001600160a01b031690565b6001600160a01b03841690836126d6565b5050565b6065546001600160a01b0316331480610f3557506066546001600160a01b031633145b80610f4a57506033546001600160a01b031633145b610f5357600080fd5b60cf54600160a01b900460ff1615610fa65760405162461bcd60e51b815260206004820152601660248201527554726164696e6720616c72656164792061637469766560501b6044820152606401610bc1565b60cf805460ff60a01b1916600160a01b90811790915560d2540460ff1615610ec55760d25460cf5460ce54604051637576483f60e01b81526001600160a01b0392831660048201529082166024820152911690637576483f90604401600060405180830381600087803b15801561101c57600080fd5b505af1158015611030573d6000803e3d6000fd5b50505050565b6060609d8054610ab090613416565b61104d612166565b61010855565b600033816110618286611700565b9050838110156110c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bc1565b610cf48286868403612042565b600033610be7818585612234565b6110e4612166565b61010980546001600160a01b0319166001600160a01b0392909216919091179055565b61110f612166565b6111188161272d565b6101095461112f906001600160a01b031647612887565b50565b6065546001600160a01b031633148061115557506066546001600160a01b031633145b8061116a57506033546001600160a01b031633145b61117357600080fd5b61271061117f609b5490565b61118991906134bf565b81116111d15760405162461bcd60e51b81526020600482015260176024820152766d617857616c6c6574416d6f756e74203c20302e30312560481b6044820152606401610bc1565b60d154811180156111ec57506065546001600160a01b031633145b80611230575060d3546001600160a01b031633148015611230575060d3546001600160a01b03166112256033546001600160a01b031690565b6001600160a01b0316145b6112725760405162461bcd60e51b815260206004820152601360248201527227b7363c9025b0b936b0903232b83637bcb2b960691b6044820152606401610bc1565b60d155565b6000611284858585610cdb565b50611291858585856125d5565b610cf45760405162461bcd60e51b8152600401610bc190613479565b949350505050565b6065546001600160a01b03163314806112d857506066546001600160a01b031633145b806112ed57506033546001600160a01b031633145b6112f657600080fd5b60968211156113335760405162461bcd60e51b8152602060048201526009602482015268427579203e2031352560b81b6044820152606401610bc1565b60968111156113715760405162461bcd60e51b815260206004820152600a60248201526953656c6c203e2031352560b01b6044820152606401610bc1565b61010b548210801561138d57506065546001600160a01b031633145b806113d1575060d3546001600160a01b0316331480156113d1575060d3546001600160a01b03166113c66033546001600160a01b031690565b6001600160a01b0316145b6114305760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c79204b61726d61206465706c6f7965722063616e20696e6372656173656044820152692062757920746178657360b01b6064820152608401610bc1565b61010a548110801561144c57506065546001600160a01b031633145b80611490575060d3546001600160a01b031633148015611490575060d3546001600160a01b03166114856033546001600160a01b031690565b6001600160a01b0316145b6114f05760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c79204b61726d61206465706c6f7965722063616e20696e63726561736560448201526a2073656c6c20746178657360a81b6064820152608401610bc1565b61010b9190915561010a55565b60006115098484610bd9565b506115158484846129a0565b610be75760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b6064820152608401610bc1565b611577612166565b600061158b6033546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146115d5576040519150601f19603f3d011682016040523d82523d6000602084013e6115da565b606091505b5050905080610f0e5760405162461bcd60e51b815260206004820152602760248201527f4552433230546f6b656e5265636f7665723a2053454e44494e475f455448455260448201526617d1905253115160ca1b6064820152608401610bc1565b6065546001600160a01b031633148061165e57506066546001600160a01b031633145b8061167357506033546001600160a01b031633145b61167c57600080fd5b6001600160a01b03811661168f57600080fd5b606580546001600160a01b0319166001600160a01b0383169081179091556040519081527f403b3661b61e0593ef016205b22ab41d84c005a223948fb61dc49846bebdf89f9060200160405180910390a150565b60006112ad84848460405180602001604052806000815250611277565b6001600160a01b039182166000908152609a6020908152604080832093909416825291909152205490565b611733612166565b61010780549115156101000261ff0019909216919091179055565b60cb546001600160a01b03161580611779575060cb546001600160a01b0316336001600160a01b0316145b6117b45760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606401610bc1565b60038360ff161180156117ca575060138360ff16105b6117fe5760405162461bcd60e51b8152602060048201526005602482015264444543494d60d81b6044820152606401610bc1565b60cb80546001600160a01b0319163317905561181a8585612a4c565b611822612a7d565b60d3805460ff60a01b1916600160a01b60ff8616021790556118443383612aad565b61184d8161163b565b611856326118c9565b5050505050565b6065546001600160a01b031633148061188057506066546001600160a01b031633145b8061189557506033546001600160a01b031633145b61189e57600080fd5b6001600160a01b0391909116600090815260cd60205260409020805460ff1916911515919091179055565b6118d1612166565b6001600160a01b0381166119365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc1565b61112f81612684565b600054610100900460ff161580801561195f5750600054600160ff909116105b806119795750303b158015611979575060005460ff166001145b6119dc5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bc1565b6000805460ff1916600117905580156119ff576000805461ff0019166101001790555b611aaa611a0c83806134e1565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a4e9250505060208501856134e1565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a9392505050606086016040870161352f565b60608601356109eb61020088016101e0890161321f565b612710611ab6609b5490565b611ac091906134bf565b826080013511611b085760405162461bcd60e51b81526020600482015260136024820152726d61785478416d6f756e74203c20302e30312560681b6044820152606401610bc1565b612710611b14609b5490565b611b1e91906134bf565b8260a0013511611b6a5760405162461bcd60e51b81526020600482015260176024820152766d617857616c6c6574416d6f756e74203c20302e30312560481b6044820152606401610bc1565b611b7b610100830160e0840161321f565b60d380546001600160a01b0319166001600160a01b0392909216919091179055611bad6102208301610200840161321f565b606680546001600160a01b0319166001600160a01b0392831617905533600090815260cd60208190526040808320805460ff19908116600190811790925560d3549095168452908320805485168217905561dead83527f48bd6b5f5ae978c950e755c6ff7325e2ee9cd2ba0432e79c6c428d38aeb0a2b08054909416811790935590611c3f60e0860160c0870161321f565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560019060cd90611c81610100860160e0870161321f565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611cb960e0830160c0840161321f565b60ce80546001600160a01b0319166001600160a01b039290921691821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015611d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d37919061354a565b6001600160a01b031663c9c653963060ce60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd919061354a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2e919061354a565b60cf80546001600160a01b0319166001600160a01b0392909216919091179055611e5d606460608401356134bf565b61010855608082013560d05560a082013560d15561010082013561010b5561014082013561010a55611e976101a08301610180840161321f565b61010980546001600160a01b0319166001600160a01b0392831617815530600090815260cd6020526040808220805460ff19908116600190811790925593549094168252812080549092169092179055611ef96101e084016101c0850161321f565b6001600160a01b031614158015611f2c575061dead611f206101e084016101c0850161321f565b6001600160a01b031614155b15611fc457611f436101e083016101c0840161321f565b60d280546001600160a01b0319166001600160a01b039290921691821790556040516318e02bd960e01b81523360048201526318e02bd990602401600060405180830381600087803b158015611f9857600080fd5b505af1158015611fac573d6000803e3d6000fd5b505060d2805460ff60a01b1916600160a01b17905550505b8015610f0e576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b60006001600160e01b0319821663b0202a1160e01b1480610a9b57506301ffc9a760e01b6001600160e01b0319831614610a9b565b6001600160a01b0383166120a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc1565b6001600160a01b0382166121055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bc1565b6001600160a01b038381166000818152609a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6033546001600160a01b03163314610ec55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc1565b60006121cc8484611700565b9050600019811461103057818110156122275760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bc1565b6110308484848403612042565b600081116122965760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610bc1565b6001600160a01b038316600090815260cd602052604090205460ff161580156122d857506001600160a01b038216600090815260cd602052604090205460ff16155b80156122e857506101075460ff16155b1561242b5760cf54600160a01b900460ff1661233f5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610bc1565b60d0548111156123915760405162461bcd60e51b815260206004820152601d60248201527f596f752061726520657863656564696e67206d61785478416d6f756e740000006044820152606401610bc1565b60cf546001600160a01b0383811691161461242b5760d154816123c9846001600160a01b031660009081526099602052604090205490565b6123d39190613466565b111561242b5760405162461bcd60e51b815260206004820152602160248201527f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e6044820152601d60fa1b6064820152608401610bc1565b60d254600160a01b900460ff16156124ac5760d25460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b15801561249357600080fd5b505af11580156124a7573d6000803e3d6000fd5b505050505b6101075460009060ff16806124d957506001600160a01b038416600090815260cd602052604090205460ff165b806124fc57506001600160a01b038316600090815260cd602052604090205460ff165b1561250957506000612561565b60cf546001600160a01b0390811690841603612542576103e861010a54836125319190613567565b61253b91906134bf565b9050612561565b6103e861010b54836125549190613567565b61255e91906134bf565b90505b61010754610100900460ff16801561257d57506101075460ff16155b8015612597575060cf546001600160a01b03858116911614155b80156125a35750600081115b156125b0576125b0612ab7565b6125c484846125bf848661357e565b612b23565b801561103057611030843083612b23565b60006001600160a01b0384163b6125ee575060006112ad565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c906126239033908a9089908990600401613591565b6020604051808303816000875af1158015612642573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266691906135ce565b6001600160e01b031916632229f29760e21b14915050949350505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612728908490612cce565b505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612762576127626135eb565b6001600160a01b0392831660209182029290920181019190915260ce54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156127bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127df919061354a565b816001815181106127f2576127f26135eb565b6001600160a01b03928316602091820292909201015260ce546128189130911684612042565b60ce5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612851908590600090869030904290600401613601565b600060405180830381600087803b15801561286b57600080fd5b505af115801561287f573d6000803e3d6000fd5b505050505050565b804710156128d75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612924576040519150601f19603f3d011682016040523d82523d6000602084013e612929565b606091505b50509050806127285760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc1565b60006001600160a01b0384163b6129b957506000610c0d565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d0906129ec90339088908890600401613672565b6020604051808303816000875af1158015612a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2f91906135ce565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b600054610100900460ff16612a735760405162461bcd60e51b8152600401610bc1906136a2565b610f0e8282612da3565b600054610100900460ff16612aa45760405162461bcd60e51b8152600401610bc1906136a2565b610ec533612684565b610f0e8282612de3565b6101075460ff16610ec557610107805460ff19166001179055306000908152609960205260408120549050610108548110612b1557612af58161272d565b478015612b135761010954612b13906001600160a01b031682612887565b505b50610107805460ff19169055565b6001600160a01b038316612b875760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bc1565b6001600160a01b038216612be95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bc1565b6001600160a01b03831660009081526099602052604090205481811015612c615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bc1565b6001600160a01b0380851660008181526099602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612cc19086815260200190565b60405180910390a3611030565b6000612d23826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612ea49092919063ffffffff16565b9050805160001480612d44575080806020019051810190612d4491906136ed565b6127285760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc1565b600054610100900460ff16612dca5760405162461bcd60e51b8152600401610bc1906136a2565b609c612dd68382613750565b50609d6127288282613750565b6001600160a01b038216612e395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bc1565b80609b6000828254612e4b9190613466565b90915550506001600160a01b0382166000818152609960209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60606112ad848460008585600080866001600160a01b03168587604051612ecb9190613810565b60006040518083038185875af1925050503d8060008114612f08576040519150601f19603f3d011682016040523d82523d6000602084013e612f0d565b606091505b5091509150612f1e87838387612f29565b979650505050505050565b60608315612f98578251600003612f91576001600160a01b0385163b612f915760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc1565b50816112ad565b6112ad8383815115612fad5781518083602001fd5b8060405162461bcd60e51b8152600401610bc1919061304a565b6001600160e01b03198116811461112f57600080fd5b600060208284031215612fef57600080fd5b8135610c0d81612fc7565b60005b83811015613015578181015183820152602001612ffd565b50506000910152565b60008151808452613036816020860160208601612ffa565b601f01601f19169290920160200192915050565b602081526000610c0d602083018461301e565b6001600160a01b038116811461112f57600080fd5b6000806040838503121561308557600080fd5b82356130908161305d565b946020939093013593505050565b801515811461112f57600080fd5b6000602082840312156130be57600080fd5b8135610c0d8161309e565b6000806000606084860312156130de57600080fd5b83356130e98161305d565b925060208401356130f98161305d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261313157600080fd5b813567ffffffffffffffff8082111561314c5761314c61310a565b604051601f8301601f19908116603f011681019082821181831017156131745761317461310a565b8160405283815286602085880101111561318d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156131c257600080fd5b83356131cd8161305d565b925060208401359150604084013567ffffffffffffffff8111156131f057600080fd5b6131fc86828701613120565b9150509250925092565b60006020828403121561321857600080fd5b5035919050565b60006020828403121561323157600080fd5b8135610c0d8161305d565b6000806000806080858703121561325257600080fd5b843561325d8161305d565b9350602085013561326d8161305d565b925060408501359150606085013567ffffffffffffffff81111561329057600080fd5b61329c87828801613120565b91505092959194509250565b600080604083850312156132bb57600080fd5b50508035926020909101359150565b600080604083850312156132dd57600080fd5b82356132e88161305d565b915060208301356132f88161305d565b809150509250929050565b803560ff8116811461331457600080fd5b919050565b600080600080600060a0868803121561333157600080fd5b853567ffffffffffffffff8082111561334957600080fd5b61335589838a01613120565b9650602088013591508082111561336b57600080fd5b5061337888828901613120565b94505061338760408701613303565b925060608601359150608086013561339e8161305d565b809150509295509295909350565b600080604083850312156133bf57600080fd5b82356133ca8161305d565b915060208301356132f88161309e565b6000602082840312156133ec57600080fd5b813567ffffffffffffffff81111561340357600080fd5b82016102208185031215610c0d57600080fd5b600181811c9082168061342a57607f821691505b60208210810361344a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a9b57610a9b613450565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6000826134dc57634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e198436030181126134f857600080fd5b83018035915067ffffffffffffffff82111561351357600080fd5b60200191503681900382131561352857600080fd5b9250929050565b60006020828403121561354157600080fd5b610c0d82613303565b60006020828403121561355c57600080fd5b8151610c0d8161305d565b8082028115828204841417610a9b57610a9b613450565b81810381811115610a9b57610a9b613450565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135c49083018461301e565b9695505050505050565b6000602082840312156135e057600080fd5b8151610c0d81612fc7565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136515784516001600160a01b03168352938301939183019160010161362c565b50506001600160a01b03969096166060850152505050608001529392505050565b60018060a01b0384168152826020820152606060408201526000613699606083018461301e565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000602082840312156136ff57600080fd5b8151610c0d8161309e565b601f82111561272857600081815260208120601f850160051c810160208610156137315750805b601f850160051c820191505b8181101561287f5782815560010161373d565b815167ffffffffffffffff81111561376a5761376a61310a565b61377e816137788454613416565b8461370a565b602080601f8311600181146137b3576000841561379b5750858301515b600019600386901b1c1916600185901b17855561287f565b600085815260208120601f198616915b828110156137e2578886015182559484019460019091019084016137c3565b50858210156138005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008251613822818460208701612ffa565b919091019291505056fea2646970667358221220e59ca4c90df539a073812740d04ad4934b6d2b2684f211e11d714ff68ced02e964736f6c63430008110033

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80638a8c523c116101d1578063cae9ca5111610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a10578063f887ea4014610a30578063fc58b9fe14610a50578063fd5bf32d14610a7057600080fd5b8063dd62ed3e14610990578063e01af92c146109b0578063e01c458a146109d0578063e545fd6d146109f057600080fd5b8063d5f39488116100dc578063d5f3948814610900578063d75b8fb514610920578063d8fbe99414610940578063dbe66ca01461096057600080fd5b8063cae9ca51146108a9578063cc1776d3146108c9578063d3335553146108e057600080fd5b8063a9059cbb1161016f578063b70143c911610149578063b70143c914610829578063c18bc19514610849578063c1d34b8914610869578063c647b20e1461088957600080fd5b8063a9059cbb146107d3578063aa4bde28146107f3578063aacebbe31461080957600080fd5b806395d89b41116101ab57806395d89b411461075e5780639d0014b114610773578063a457c2d714610793578063a8aa1b31146107b357600080fd5b80638a8c523c146107155780638c0b5e221461072a5780638da5cb5b1461074057600080fd5b8063313ce567116102ab5780636ddd17131161024957806375f0a8741161022357806375f0a8741461069f57806379679a21146106c0578063893d20e8146106e05780638980f11f146106f557600080fd5b80636ddd17131461063457806370a0823114610654578063715018a61461068a57600080fd5b80634000aea0116102855780634000aea0146105bc5780634ada218b146105dc5780634f7041a5146105fd5780636256d1811461061457600080fd5b8063313ce567146105505780633177029f1461057c578063395093511461059c57600080fd5b806312e3ef14116103185780631f46b1c6116102f25780631f46b1c6146104cf57806323b872dd146104ef578063241ec3be1461050f578063305c4c801461053057600080fd5b806312e3ef141461048757806317700f01146104a557806318160ddd146104ba57600080fd5b806306fdde031161035457806306fdde031461040e57806307ce9de414610430578063095ea7b3146104475780631296ee621461046757600080fd5b806301ffc9a71461038657806303fd2a45146103bb5780630445b667146103e957600080fd5b3661038157005b600080fd5b34801561039257600080fd5b506103a66103a1366004612fdd565b610a90565b60405190151581526020015b60405180910390f35b3480156103c757600080fd5b506103d161dead81565b6040516001600160a01b0390911681526020016103b2565b3480156103f557600080fd5b506104006101085481565b6040519081526020016103b2565b34801561041a57600080fd5b50610423610aa1565b6040516103b2919061304a565b34801561043c57600080fd5b50610445610b33565b005b34801561045357600080fd5b506103a6610462366004613072565b610bd9565b34801561047357600080fd5b506103a6610482366004613072565b610bf1565b34801561049357600080fd5b506065546001600160a01b03166103d1565b3480156104b157600080fd5b50610445610c14565b3480156104c657600080fd5b50609b54610400565b3480156104db57600080fd5b506104456104ea3660046130ac565b610cb5565b3480156104fb57600080fd5b506103a661050a3660046130c9565b610cdb565b34801561051b57600080fd5b5060d2546103a690600160a01b900460ff1681565b34801561053c57600080fd5b5060d2546103d1906001600160a01b031681565b34801561055c57600080fd5b5060d354600160a01b900460ff1660405160ff90911681526020016103b2565b34801561058857600080fd5b506103a6610597366004613072565b610cff565b3480156105a857600080fd5b506103a66105b7366004613072565b610d1b565b3480156105c857600080fd5b506103a66105d73660046131ad565b610d3d565b3480156105e857600080fd5b5060cf546103a690600160a01b900460ff1681565b34801561060957600080fd5b5061040061010b5481565b34801561062057600080fd5b5061044561062f366004613206565b610d72565b34801561064057600080fd5b50610107546103a690610100900460ff1681565b34801561066057600080fd5b5061040061066f36600461321f565b6001600160a01b031660009081526099602052604090205490565b34801561069657600080fd5b50610445610eb3565b3480156106ab57600080fd5b50610109546103d1906001600160a01b031681565b3480156106cc57600080fd5b506066546103d1906001600160a01b031681565b3480156106ec57600080fd5b506103d1610ec7565b34801561070157600080fd5b50610445610710366004613072565b610ee0565b34801561072157600080fd5b50610445610f12565b34801561073657600080fd5b5061040060d05481565b34801561074c57600080fd5b506033546001600160a01b03166103d1565b34801561076a57600080fd5b50610423611036565b34801561077f57600080fd5b5061044561078e366004613206565b611045565b34801561079f57600080fd5b506103a66107ae366004613072565b611053565b3480156107bf57600080fd5b5060cf546103d1906001600160a01b031681565b3480156107df57600080fd5b506103a66107ee366004613072565b6110ce565b3480156107ff57600080fd5b5061040060d15481565b34801561081557600080fd5b5061044561082436600461321f565b6110dc565b34801561083557600080fd5b50610445610844366004613206565b611107565b34801561085557600080fd5b50610445610864366004613206565b611132565b34801561087557600080fd5b506103a661088436600461323c565b611277565b34801561089557600080fd5b506104456108a43660046132a8565b6112b5565b3480156108b557600080fd5b506103a66108c43660046131ad565b6114fd565b3480156108d557600080fd5b5061040061010a5481565b3480156108ec57600080fd5b506104456108fb366004613206565b61156f565b34801561090c57600080fd5b5060cb546103d1906001600160a01b031681565b34801561092c57600080fd5b5061044561093b36600461321f565b61163b565b34801561094c57600080fd5b506103a661095b3660046130c9565b6116e3565b34801561096c57600080fd5b506103a661097b36600461321f565b60cd6020526000908152604090205460ff1681565b34801561099c57600080fd5b506104006109ab3660046132ca565b611700565b3480156109bc57600080fd5b506104456109cb3660046130ac565b61172b565b3480156109dc57600080fd5b506104456109eb366004613319565b61174e565b3480156109fc57600080fd5b50610445610a0b3660046133ac565b61185d565b348015610a1c57600080fd5b50610445610a2b36600461321f565b6118c9565b348015610a3c57600080fd5b5060ce546103d1906001600160a01b031681565b348015610a5c57600080fd5b5060d3546103d1906001600160a01b031681565b348015610a7c57600080fd5b50610445610a8b3660046133da565b61193f565b6000610a9b8261200d565b92915050565b6060609c8054610ab090613416565b80601f0160208091040260200160405190810160405280929190818152602001828054610adc90613416565b8015610b295780601f10610afe57610100808354040283529160200191610b29565b820191906000526020600020905b815481529060010190602001808311610b0c57829003601f168201915b5050505050905090565b6065546001600160a01b0316331480610b5657506066546001600160a01b031633145b80610b6b57506033546001600160a01b031633145b610b7457600080fd5b60d254600160a01b900460ff161515600114610bca5760405162461bcd60e51b815260206004820152601060248201526f1053149150511657d11254d05093115160821b60448201526064015b60405180910390fd5b60d2805460ff60a01b19169055565b600033610be7818585612042565b5060019392505050565b6000610c0d838360405180602001604052806000815250610d3d565b9392505050565b610c1c612166565b60d3546001600160a01b031633148015610c5a575060d3546001600160a01b0316610c4f6033546001600160a01b031690565b6001600160a01b0316145b610ca65760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c79206b61726d61206465706c6f7965722063616e2064697361626c65006044820152606401610bc1565b60cf805460ff60a01b19169055565b610cbd612166565b60d28054911515600160a01b0260ff60a01b19909216919091179055565b600033610ce98582856121c0565b610cf4858585612234565b506001949350505050565b6000610c0d8383604051806020016040528060008152506114fd565b600033610be7818585610d2e8383611700565b610d389190613466565b612042565b6000610d4984846110ce565b50610d56338585856125d5565b610be75760405162461bcd60e51b8152600401610bc190613479565b6065546001600160a01b0316331480610d9557506066546001600160a01b031633145b80610daa57506033546001600160a01b031633145b610db357600080fd5b612710610dbf609b5490565b610dc991906134bf565b8111610e0d5760405162461bcd60e51b81526020600482015260136024820152726d61785478416d6f756e74203c20302e30312560681b6044820152606401610bc1565b60d05481118015610e2857506065546001600160a01b031633145b80610e6c575060d3546001600160a01b031633148015610e6c575060d3546001600160a01b0316610e616033546001600160a01b031690565b6001600160a01b0316145b610eae5760405162461bcd60e51b815260206004820152601360248201527227b7363c9025b0b936b0903232b83637bcb2b960691b6044820152606401610bc1565b60d055565b610ebb612166565b610ec56000612684565b565b6000610edb6033546001600160a01b031690565b905090565b610ee8612166565b610f0e610efd6033546001600160a01b031690565b6001600160a01b03841690836126d6565b5050565b6065546001600160a01b0316331480610f3557506066546001600160a01b031633145b80610f4a57506033546001600160a01b031633145b610f5357600080fd5b60cf54600160a01b900460ff1615610fa65760405162461bcd60e51b815260206004820152601660248201527554726164696e6720616c72656164792061637469766560501b6044820152606401610bc1565b60cf805460ff60a01b1916600160a01b90811790915560d2540460ff1615610ec55760d25460cf5460ce54604051637576483f60e01b81526001600160a01b0392831660048201529082166024820152911690637576483f90604401600060405180830381600087803b15801561101c57600080fd5b505af1158015611030573d6000803e3d6000fd5b50505050565b6060609d8054610ab090613416565b61104d612166565b61010855565b600033816110618286611700565b9050838110156110c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bc1565b610cf48286868403612042565b600033610be7818585612234565b6110e4612166565b61010980546001600160a01b0319166001600160a01b0392909216919091179055565b61110f612166565b6111188161272d565b6101095461112f906001600160a01b031647612887565b50565b6065546001600160a01b031633148061115557506066546001600160a01b031633145b8061116a57506033546001600160a01b031633145b61117357600080fd5b61271061117f609b5490565b61118991906134bf565b81116111d15760405162461bcd60e51b81526020600482015260176024820152766d617857616c6c6574416d6f756e74203c20302e30312560481b6044820152606401610bc1565b60d154811180156111ec57506065546001600160a01b031633145b80611230575060d3546001600160a01b031633148015611230575060d3546001600160a01b03166112256033546001600160a01b031690565b6001600160a01b0316145b6112725760405162461bcd60e51b815260206004820152601360248201527227b7363c9025b0b936b0903232b83637bcb2b960691b6044820152606401610bc1565b60d155565b6000611284858585610cdb565b50611291858585856125d5565b610cf45760405162461bcd60e51b8152600401610bc190613479565b949350505050565b6065546001600160a01b03163314806112d857506066546001600160a01b031633145b806112ed57506033546001600160a01b031633145b6112f657600080fd5b60968211156113335760405162461bcd60e51b8152602060048201526009602482015268427579203e2031352560b81b6044820152606401610bc1565b60968111156113715760405162461bcd60e51b815260206004820152600a60248201526953656c6c203e2031352560b01b6044820152606401610bc1565b61010b548210801561138d57506065546001600160a01b031633145b806113d1575060d3546001600160a01b0316331480156113d1575060d3546001600160a01b03166113c66033546001600160a01b031690565b6001600160a01b0316145b6114305760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c79204b61726d61206465706c6f7965722063616e20696e6372656173656044820152692062757920746178657360b01b6064820152608401610bc1565b61010a548110801561144c57506065546001600160a01b031633145b80611490575060d3546001600160a01b031633148015611490575060d3546001600160a01b03166114856033546001600160a01b031690565b6001600160a01b0316145b6114f05760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c79204b61726d61206465706c6f7965722063616e20696e63726561736560448201526a2073656c6c20746178657360a81b6064820152608401610bc1565b61010b9190915561010a55565b60006115098484610bd9565b506115158484846129a0565b610be75760405162461bcd60e51b815260206004820152602560248201527f455243313336333a205f636865636b416e6443616c6c417070726f7665207265604482015264766572747360d81b6064820152608401610bc1565b611577612166565b600061158b6033546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d80600081146115d5576040519150601f19603f3d011682016040523d82523d6000602084013e6115da565b606091505b5050905080610f0e5760405162461bcd60e51b815260206004820152602760248201527f4552433230546f6b656e5265636f7665723a2053454e44494e475f455448455260448201526617d1905253115160ca1b6064820152608401610bc1565b6065546001600160a01b031633148061165e57506066546001600160a01b031633145b8061167357506033546001600160a01b031633145b61167c57600080fd5b6001600160a01b03811661168f57600080fd5b606580546001600160a01b0319166001600160a01b0383169081179091556040519081527f403b3661b61e0593ef016205b22ab41d84c005a223948fb61dc49846bebdf89f9060200160405180910390a150565b60006112ad84848460405180602001604052806000815250611277565b6001600160a01b039182166000908152609a6020908152604080832093909416825291909152205490565b611733612166565b61010780549115156101000261ff0019909216919091179055565b60cb546001600160a01b03161580611779575060cb546001600160a01b0316336001600160a01b0316145b6117b45760405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606401610bc1565b60038360ff161180156117ca575060138360ff16105b6117fe5760405162461bcd60e51b8152602060048201526005602482015264444543494d60d81b6044820152606401610bc1565b60cb80546001600160a01b0319163317905561181a8585612a4c565b611822612a7d565b60d3805460ff60a01b1916600160a01b60ff8616021790556118443383612aad565b61184d8161163b565b611856326118c9565b5050505050565b6065546001600160a01b031633148061188057506066546001600160a01b031633145b8061189557506033546001600160a01b031633145b61189e57600080fd5b6001600160a01b0391909116600090815260cd60205260409020805460ff1916911515919091179055565b6118d1612166565b6001600160a01b0381166119365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc1565b61112f81612684565b600054610100900460ff161580801561195f5750600054600160ff909116105b806119795750303b158015611979575060005460ff166001145b6119dc5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610bc1565b6000805460ff1916600117905580156119ff576000805461ff0019166101001790555b611aaa611a0c83806134e1565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a4e9250505060208501856134e1565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611a9392505050606086016040870161352f565b60608601356109eb61020088016101e0890161321f565b612710611ab6609b5490565b611ac091906134bf565b826080013511611b085760405162461bcd60e51b81526020600482015260136024820152726d61785478416d6f756e74203c20302e30312560681b6044820152606401610bc1565b612710611b14609b5490565b611b1e91906134bf565b8260a0013511611b6a5760405162461bcd60e51b81526020600482015260176024820152766d617857616c6c6574416d6f756e74203c20302e30312560481b6044820152606401610bc1565b611b7b610100830160e0840161321f565b60d380546001600160a01b0319166001600160a01b0392909216919091179055611bad6102208301610200840161321f565b606680546001600160a01b0319166001600160a01b0392831617905533600090815260cd60208190526040808320805460ff19908116600190811790925560d3549095168452908320805485168217905561dead83527f48bd6b5f5ae978c950e755c6ff7325e2ee9cd2ba0432e79c6c428d38aeb0a2b08054909416811790935590611c3f60e0860160c0870161321f565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560019060cd90611c81610100860160e0870161321f565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611cb960e0830160c0840161321f565b60ce80546001600160a01b0319166001600160a01b039290921691821790556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015611d13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d37919061354a565b6001600160a01b031663c9c653963060ce60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dbd919061354a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015611e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2e919061354a565b60cf80546001600160a01b0319166001600160a01b0392909216919091179055611e5d606460608401356134bf565b61010855608082013560d05560a082013560d15561010082013561010b5561014082013561010a55611e976101a08301610180840161321f565b61010980546001600160a01b0319166001600160a01b0392831617815530600090815260cd6020526040808220805460ff19908116600190811790925593549094168252812080549092169092179055611ef96101e084016101c0850161321f565b6001600160a01b031614158015611f2c575061dead611f206101e084016101c0850161321f565b6001600160a01b031614155b15611fc457611f436101e083016101c0840161321f565b60d280546001600160a01b0319166001600160a01b039290921691821790556040516318e02bd960e01b81523360048201526318e02bd990602401600060405180830381600087803b158015611f9857600080fd5b505af1158015611fac573d6000803e3d6000fd5b505060d2805460ff60a01b1916600160a01b17905550505b8015610f0e576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15050565b60006001600160e01b0319821663b0202a1160e01b1480610a9b57506301ffc9a760e01b6001600160e01b0319831614610a9b565b6001600160a01b0383166120a45760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc1565b6001600160a01b0382166121055760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bc1565b6001600160a01b038381166000818152609a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6033546001600160a01b03163314610ec55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bc1565b60006121cc8484611700565b9050600019811461103057818110156122275760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bc1565b6110308484848403612042565b600081116122965760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610bc1565b6001600160a01b038316600090815260cd602052604090205460ff161580156122d857506001600160a01b038216600090815260cd602052604090205460ff16155b80156122e857506101075460ff16155b1561242b5760cf54600160a01b900460ff1661233f5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610bc1565b60d0548111156123915760405162461bcd60e51b815260206004820152601d60248201527f596f752061726520657863656564696e67206d61785478416d6f756e740000006044820152606401610bc1565b60cf546001600160a01b0383811691161461242b5760d154816123c9846001600160a01b031660009081526099602052604090205490565b6123d39190613466565b111561242b5760405162461bcd60e51b815260206004820152602160248201527f596f752061726520657863656564696e67206d617857616c6c6574416d6f756e6044820152601d60fa1b6064820152608401610bc1565b60d254600160a01b900460ff16156124ac5760d25460405163090ec10b60e31b81526001600160a01b03858116600483015284811660248301526044820184905290911690634876085890606401600060405180830381600087803b15801561249357600080fd5b505af11580156124a7573d6000803e3d6000fd5b505050505b6101075460009060ff16806124d957506001600160a01b038416600090815260cd602052604090205460ff165b806124fc57506001600160a01b038316600090815260cd602052604090205460ff165b1561250957506000612561565b60cf546001600160a01b0390811690841603612542576103e861010a54836125319190613567565b61253b91906134bf565b9050612561565b6103e861010b54836125549190613567565b61255e91906134bf565b90505b61010754610100900460ff16801561257d57506101075460ff16155b8015612597575060cf546001600160a01b03858116911614155b80156125a35750600081115b156125b0576125b0612ab7565b6125c484846125bf848661357e565b612b23565b801561103057611030843083612b23565b60006001600160a01b0384163b6125ee575060006112ad565b604051632229f29760e21b81526000906001600160a01b038616906388a7ca5c906126239033908a9089908990600401613591565b6020604051808303816000875af1158015612642573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266691906135ce565b6001600160e01b031916632229f29760e21b14915050949350505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052612728908490612cce565b505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612762576127626135eb565b6001600160a01b0392831660209182029290920181019190915260ce54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156127bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127df919061354a565b816001815181106127f2576127f26135eb565b6001600160a01b03928316602091820292909201015260ce546128189130911684612042565b60ce5460405163791ac94760e01b81526001600160a01b039091169063791ac94790612851908590600090869030904290600401613601565b600060405180830381600087803b15801561286b57600080fd5b505af115801561287f573d6000803e3d6000fd5b505050505050565b804710156128d75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612924576040519150601f19603f3d011682016040523d82523d6000602084013e612929565b606091505b50509050806127285760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc1565b60006001600160a01b0384163b6129b957506000610c0d565b6040516307b04a2d60e41b81526000906001600160a01b03861690637b04a2d0906129ec90339088908890600401613672565b6020604051808303816000875af1158015612a0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a2f91906135ce565b6001600160e01b0319166307b04a2d60e41b149150509392505050565b600054610100900460ff16612a735760405162461bcd60e51b8152600401610bc1906136a2565b610f0e8282612da3565b600054610100900460ff16612aa45760405162461bcd60e51b8152600401610bc1906136a2565b610ec533612684565b610f0e8282612de3565b6101075460ff16610ec557610107805460ff19166001179055306000908152609960205260408120549050610108548110612b1557612af58161272d565b478015612b135761010954612b13906001600160a01b031682612887565b505b50610107805460ff19169055565b6001600160a01b038316612b875760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bc1565b6001600160a01b038216612be95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bc1565b6001600160a01b03831660009081526099602052604090205481811015612c615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bc1565b6001600160a01b0380851660008181526099602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612cc19086815260200190565b60405180910390a3611030565b6000612d23826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612ea49092919063ffffffff16565b9050805160001480612d44575080806020019051810190612d4491906136ed565b6127285760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc1565b600054610100900460ff16612dca5760405162461bcd60e51b8152600401610bc1906136a2565b609c612dd68382613750565b50609d6127288282613750565b6001600160a01b038216612e395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bc1565b80609b6000828254612e4b9190613466565b90915550506001600160a01b0382166000818152609960209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60606112ad848460008585600080866001600160a01b03168587604051612ecb9190613810565b60006040518083038185875af1925050503d8060008114612f08576040519150601f19603f3d011682016040523d82523d6000602084013e612f0d565b606091505b5091509150612f1e87838387612f29565b979650505050505050565b60608315612f98578251600003612f91576001600160a01b0385163b612f915760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc1565b50816112ad565b6112ad8383815115612fad5781518083602001fd5b8060405162461bcd60e51b8152600401610bc1919061304a565b6001600160e01b03198116811461112f57600080fd5b600060208284031215612fef57600080fd5b8135610c0d81612fc7565b60005b83811015613015578181015183820152602001612ffd565b50506000910152565b60008151808452613036816020860160208601612ffa565b601f01601f19169290920160200192915050565b602081526000610c0d602083018461301e565b6001600160a01b038116811461112f57600080fd5b6000806040838503121561308557600080fd5b82356130908161305d565b946020939093013593505050565b801515811461112f57600080fd5b6000602082840312156130be57600080fd5b8135610c0d8161309e565b6000806000606084860312156130de57600080fd5b83356130e98161305d565b925060208401356130f98161305d565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261313157600080fd5b813567ffffffffffffffff8082111561314c5761314c61310a565b604051601f8301601f19908116603f011681019082821181831017156131745761317461310a565b8160405283815286602085880101111561318d57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156131c257600080fd5b83356131cd8161305d565b925060208401359150604084013567ffffffffffffffff8111156131f057600080fd5b6131fc86828701613120565b9150509250925092565b60006020828403121561321857600080fd5b5035919050565b60006020828403121561323157600080fd5b8135610c0d8161305d565b6000806000806080858703121561325257600080fd5b843561325d8161305d565b9350602085013561326d8161305d565b925060408501359150606085013567ffffffffffffffff81111561329057600080fd5b61329c87828801613120565b91505092959194509250565b600080604083850312156132bb57600080fd5b50508035926020909101359150565b600080604083850312156132dd57600080fd5b82356132e88161305d565b915060208301356132f88161305d565b809150509250929050565b803560ff8116811461331457600080fd5b919050565b600080600080600060a0868803121561333157600080fd5b853567ffffffffffffffff8082111561334957600080fd5b61335589838a01613120565b9650602088013591508082111561336b57600080fd5b5061337888828901613120565b94505061338760408701613303565b925060608601359150608086013561339e8161305d565b809150509295509295909350565b600080604083850312156133bf57600080fd5b82356133ca8161305d565b915060208301356132f88161309e565b6000602082840312156133ec57600080fd5b813567ffffffffffffffff81111561340357600080fd5b82016102208185031215610c0d57600080fd5b600181811c9082168061342a57607f821691505b60208210810361344a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a9b57610a9b613450565b60208082526026908201527f455243313336333a205f636865636b416e6443616c6c5472616e73666572207260408201526565766572747360d01b606082015260800190565b6000826134dc57634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e198436030181126134f857600080fd5b83018035915067ffffffffffffffff82111561351357600080fd5b60200191503681900382131561352857600080fd5b9250929050565b60006020828403121561354157600080fd5b610c0d82613303565b60006020828403121561355c57600080fd5b8151610c0d8161305d565b8082028115828204841417610a9b57610a9b613450565b81810381811115610a9b57610a9b613450565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135c49083018461301e565b9695505050505050565b6000602082840312156135e057600080fd5b8151610c0d81612fc7565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136515784516001600160a01b03168352938301939183019160010161362c565b50506001600160a01b03969096166060850152505050608001529392505050565b60018060a01b0384168152826020820152606060408201526000613699606083018461301e565b95945050505050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000602082840312156136ff57600080fd5b8151610c0d8161309e565b601f82111561272857600081815260208120601f850160051c810160208610156137315750805b601f850160051c820191505b8181101561287f5782815560010161373d565b815167ffffffffffffffff81111561376a5761376a61310a565b61377e816137788454613416565b8461370a565b602080601f8311600181146137b3576000841561379b5750858301515b600019600386901b1c1916600185901b17855561287f565b600085815260208120601f198616915b828110156137e2578886015182559484019460019091019084016137c3565b50858210156138005787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008251613822818460208701612ffa565b919091019291505056fea2646970667358221220e59ca4c90df539a073812740d04ad4934b6d2b2684f211e11d714ff68ced02e964736f6c63430008110033

Deployed Bytecode Sourcemap

79062:4936:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77057:160;;;;;;;;;;-1:-1:-1;77057:160:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;77057:160:0;;;;;;;;75516:46;;;;;;;;;;;;75555:6;75516:46;;;;;-1:-1:-1;;;;;756:32:1;;;738:51;;726:2;711:18;75516:46:0;592:203:1;79298:28:0;;;;;;;;;;;;;;;;;;;946:25:1;;;934:2;919:18;79298:28:0;800:177:1;51231:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;77367:143::-;;;;;;;;;;;;;:::i;:::-;;53591:201;;;;;;;;;;-1:-1:-1;53591:201:0;;;;;:::i;:::-;;:::i;63526:163::-;;;;;;;;;;-1:-1:-1;63526:163:0;;;;;:::i;:::-;;:::i;72843:87::-;;;;;;;;;;-1:-1:-1;72911:13:0;;-1:-1:-1;;;;;72911:13:0;72843:87;;78588:194;;;;;;;;;;;;;:::i;52360:108::-;;;;;;;;;;-1:-1:-1;52448:12:0;;52360:108;;78787:92;;;;;;;;;;-1:-1:-1;78787:92:0;;;;;:::i;:::-;;:::i;54372:261::-;;;;;;;;;;-1:-1:-1;54372:261:0;;;;;:::i;:::-;;:::i;75851:25::-;;;;;;;;;;-1:-1:-1;75851:25:0;;;;-1:-1:-1;;;75851:25:0;;;;;;75819:28;;;;;;;;;;-1:-1:-1;75819:28:0;;;;-1:-1:-1;;;;;75819:28:0;;;76694:153;;;;;;;;;;-1:-1:-1;76833:9:0;;-1:-1:-1;;;76833:9:0;;;;76694:153;;3424:4:1;3412:17;;;3394:36;;3382:2;3367:18;76694:153:0;3252:184:1;66155:157:0;;;;;;;;;;-1:-1:-1;66155:157:0;;;;;:::i;:::-;;:::i;55042:238::-;;;;;;;;;;-1:-1:-1;55042:238:0;;;;;:::i;:::-;;:::i;64047:342::-;;;;;;;;;;-1:-1:-1;64047:342:0;;;;;:::i;:::-;;:::i;75721:26::-;;;;;;;;;;-1:-1:-1;75721:26:0;;;;-1:-1:-1;;;75721:26:0;;;;;;79398:25;;;;;;;;;;;;;;;;77664:340;;;;;;;;;;-1:-1:-1;77664:340:0;;;;;:::i;:::-;;:::i;79269:23::-;;;;;;;;;;-1:-1:-1;79269:23:0;;;;;;;;;;;52531:127;;;;;;;;;;-1:-1:-1;52531:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;52632:18:0;52605:7;52632:18;;;:9;:18;;;;;;;52531:127;70993:103;;;;;;;;;;;;;:::i;79332:30::-;;;;;;;;;;-1:-1:-1;79332:30:0;;;;-1:-1:-1;;;;;79332:30:0;;;72428:35;;;;;;;;;;-1:-1:-1;72428:35:0;;;;-1:-1:-1;;;;;72428:35:0;;;76883:83;;;;;;;;;;;;;:::i;73941:175::-;;;;;;;;;;-1:-1:-1;73941:175:0;;;;;:::i;:::-;;:::i;78370:213::-;;;;;;;;;;;;;:::i;75753:26::-;;;;;;;;;;;;;;;;70352:87;;;;;;;;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;70352:87;;51450:104;;;;;;;;;;;;;:::i;83051:101::-;;;;;;;;;;-1:-1:-1;83051:101:0;;;;;:::i;:::-;;:::i;55783:436::-;;;;;;;;;;-1:-1:-1;55783:436:0;;;;;:::i;:::-;;:::i;75696:19::-;;;;;;;;;;-1:-1:-1;75696:19:0;;;;-1:-1:-1;;;;;75696:19:0;;;52864:193;;;;;;;;;;-1:-1:-1;52864:193:0;;;;;:::i;:::-;;:::i;75783:30::-;;;;;;;;;;;;;;;;83733:106;;;;;;;;;;-1:-1:-1;83733:106:0;;;;;:::i;:::-;;:::i;83844:151::-;;;;;;;;;;-1:-1:-1;83844:151:0;;;;;:::i;:::-;;:::i;78009:356::-;;;;;;;;;;-1:-1:-1;78009:356:0;;;;;:::i;:::-;;:::i;65471:377::-;;;;;;;;;;-1:-1:-1;65471:377:0;;;;;:::i;:::-;;:::i;83157:571::-;;;;;;;;;;-1:-1:-1;83157:571:0;;;;;:::i;:::-;;:::i;66683:318::-;;;;;;;;;;-1:-1:-1;66683:318:0;;;;;:::i;:::-;;:::i;79368:26::-;;;;;;;;;;;;;;;;74298:194;;;;;;;;;;-1:-1:-1;74298:194:0;;;;;:::i;:::-;;:::i;75487:23::-;;;;;;;;;;-1:-1:-1;75487:23:0;;;;-1:-1:-1;;;;;75487:23:0;;;73064:202;;;;;;;;;;-1:-1:-1;73064:202:0;;;;;:::i;:::-;;:::i;64785:229::-;;;;;;;;;;-1:-1:-1;64785:229:0;;;;;:::i;:::-;;:::i;75617:48::-;;;;;;;;;;-1:-1:-1;75617:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53120:151;;;;;;;;;;-1:-1:-1;53120:151:0;;;;;:::i;:::-;;:::i;82962:84::-;;;;;;;;;;-1:-1:-1;82962:84:0;;;;;:::i;:::-;;:::i;76010:679::-;;;;;;;;;;-1:-1:-1;76010:679:0;;;;;:::i;:::-;;:::i;77515:144::-;;;;;;;;;;-1:-1:-1;77515:144:0;;;;;:::i;:::-;;:::i;71251:201::-;;;;;;;;;;-1:-1:-1;71251:201:0;;;;;:::i;:::-;;:::i;75671:21::-;;;;;;;;;;-1:-1:-1;75671:21:0;;;;-1:-1:-1;;;;;75671:21:0;;;75880:28;;;;;;;;;;-1:-1:-1;75880:28:0;;;;-1:-1:-1;;;;;75880:28:0;;;79532:1435;;;;;;;;;;-1:-1:-1;79532:1435:0;;;;;:::i;:::-;;:::i;77057:160::-;77158:4;77176:36;77200:11;77176:23;:36::i;:::-;77169:43;77057:160;-1:-1:-1;;77057:160:0:o;51231:100::-;51285:13;51318:5;51311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51231:100;:::o;77367:143::-;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;77437:13:::1;::::0;-1:-1:-1;;;77437:13:0;::::1;;;:21;;77454:4;77437:21;77429:50;;;::::0;-1:-1:-1;;;77429:50:0;;9150:2:1;77429:50:0::1;::::0;::::1;9132:21:1::0;9189:2;9169:18;;;9162:30;-1:-1:-1;;;9208:18:1;;;9201:46;9264:18;;77429:50:0::1;;;;;;;;;77484:13;:21:::0;;-1:-1:-1;;;;77484:21:0::1;::::0;;77367:143::o;53591:201::-;53674:4;48364:10;53730:32;48364:10;53746:7;53755:6;53730:8;:32::i;:::-;-1:-1:-1;53780:4:0;;53591:201;-1:-1:-1;;;53591:201:0:o;63526:163::-;63619:4;63643:38;63659:9;63670:6;63643:38;;;;;;;;;;;;:15;:38::i;:::-;63636:45;63526:163;-1:-1:-1;;;63526:163:0:o;78588:194::-;70238:13;:11;:13::i;:::-;78665::::1;::::0;-1:-1:-1;;;;;78665:13:0::1;78651:10;:27;:55:::0;::::1;;;-1:-1:-1::0;78693:13:0::1;::::0;-1:-1:-1;;;;;78693:13:0::1;78682:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;78682:7:::1;-1:-1:-1::0;;;;;78682:24:0::1;;78651:55;78638:112;;;::::0;-1:-1:-1;;;78638:112:0;;9495:2:1;78638:112:0::1;::::0;::::1;9477:21:1::0;9534:2;9514:18;;;9507:30;9573:33;9553:18;;;9546:61;9624:18;;78638:112:0::1;9293:355:1::0;78638:112:0::1;78755:14;:22:::0;;-1:-1:-1;;;;78755:22:0::1;::::0;;78588:194::o;78787:92::-;70238:13;:11;:13::i;:::-;78851::::1;:23:::0;;;::::1;;-1:-1:-1::0;;;78851:23:0::1;-1:-1:-1::0;;;;78851:23:0;;::::1;::::0;;;::::1;::::0;;78787:92::o;54372:261::-;54469:4;48364:10;54527:38;54543:4;48364:10;54558:6;54527:15;:38::i;:::-;54576:27;54586:4;54592:2;54596:6;54576:9;:27::i;:::-;-1:-1:-1;54621:4:0;;54372:261;-1:-1:-1;;;;54372:261:0:o;66155:157::-;66245:4;66269:35;66284:7;66293:6;66269:35;;;;;;;;;;;;:14;:35::i;55042:238::-;55130:4;48364:10;55186:64;48364:10;55202:7;55239:10;55211:25;48364:10;55202:7;55211:9;:25::i;:::-;:38;;;;:::i;:::-;55186:8;:64::i;64047:342::-;64193:4;64210:27;64219:9;64230:6;64210:8;:27::i;:::-;-1:-1:-1;64256:60:0;48364:10;64292:9;64303:6;64311:4;64256:21;:60::i;:::-;64248:111;;;;-1:-1:-1;;;64248:111:0;;;;;;;:::i;77664:340::-;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;77774:5:::1;77758:13;52448:12:::0;;;52360:108;77758:13:::1;:21;;;;:::i;:::-;77748:6;:32;77740:64;;;::::0;-1:-1:-1;;;77740:64:0;;10746:2:1;77740:64:0::1;::::0;::::1;10728:21:1::0;10785:2;10765:18;;;10758:30;-1:-1:-1;;;10804:18:1;;;10797:49;10863:18;;77740:64:0::1;10544:343:1::0;77740:64:0::1;77832:11;;77823:6;:20;:52;;;;-1:-1:-1::0;72911:13:0;;-1:-1:-1;;;;;72911:13:0;77847:10:::1;:28;77823:52;77822:120;;;-1:-1:-1::0;77900:13:0::1;::::0;-1:-1:-1;;;;;77900:13:0::1;77886:10;:27;:55:::0;::::1;;;-1:-1:-1::0;77928:13:0::1;::::0;-1:-1:-1;;;;;77928:13:0::1;77917:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;77917:7:::1;-1:-1:-1::0;;;;;77917:24:0::1;;77886:55;77809:165;;;::::0;-1:-1:-1;;;77809:165:0;;11094:2:1;77809:165:0::1;::::0;::::1;11076:21:1::0;11133:2;11113:18;;;11106:30;-1:-1:-1;;;11152:18:1;;;11145:49;11211:18;;77809:165:0::1;10892:343:1::0;77809:165:0::1;77979:11;:20:::0;77664:340::o;70993:103::-;70238:13;:11;:13::i;:::-;71058:30:::1;71085:1;71058:18;:30::i;:::-;70993:103::o:0;76883:83::-;76933:7;76954;70425:6;;-1:-1:-1;;;;;70425:6:0;;70352:87;76954:7;76947:14;;76883:83;:::o;73941:175::-;70238:13;:11;:13::i;:::-;74042:66:::1;74087:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;74087:7:::1;-1:-1:-1::0;;;;;74042:44:0;::::1;::::0;74096:11;74042:44:::1;:66::i;:::-;73941:175:::0;;:::o;78370:213::-;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;78437:14:::1;::::0;-1:-1:-1;;;78437:14:0;::::1;;;78436:15;78428:50;;;::::0;-1:-1:-1;;;78428:50:0;;11442:2:1;78428:50:0::1;::::0;::::1;11424:21:1::0;11481:2;11461:18;;;11454:30;-1:-1:-1;;;11500:18:1;;;11493:52;11562:18;;78428:50:0::1;11240:346:1::0;78428:50:0::1;78485:14;:21:::0;;-1:-1:-1;;;;78485:21:0::1;-1:-1:-1::0;;;78485:21:0;;::::1;::::0;;;78515:13:::1;::::0;::::1;78485:21;78515:13;78511:68;;;78536:7;::::0;78551:4:::1;::::0;78565:6:::1;::::0;78536:37:::1;::::0;-1:-1:-1;;;78536:37:0;;-1:-1:-1;;;;;78551:4:0;;::::1;78536:37;::::0;::::1;11803:34:1::0;78565:6:0;;::::1;11853:18:1::0;;;11846:43;78536:7:0;::::1;::::0;:14:::1;::::0;11738:18:1;;78536:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;78370:213::o:0;51450:104::-;51506:13;51539:7;51532:14;;;;;:::i;83051:101::-;70238:13;:11;:13::i;:::-;83121::::1;:26:::0;83051:101::o;55783:436::-;55876:4;48364:10;55876:4;55959:25;48364:10;55976:7;55959:9;:25::i;:::-;55932:52;;56023:15;56003:16;:35;;55995:85;;;;-1:-1:-1;;;55995:85:0;;12102:2:1;55995:85:0;;;12084:21:1;12141:2;12121:18;;;12114:30;12180:34;12160:18;;;12153:62;-1:-1:-1;;;12231:18:1;;;12224:35;12276:19;;55995:85:0;11900:401:1;55995:85:0;56116:60;56125:5;56132:7;56160:15;56141:16;:34;56116:8;:60::i;52864:193::-;52943:4;48364:10;52999:28;48364:10;53016:2;53020:6;52999:9;:28::i;83733:106::-;70238:13;:11;:13::i;:::-;83807:15:::1;:27:::0;;-1:-1:-1;;;;;;83807:27:0::1;-1:-1:-1::0;;;;;83807:27:0;;;::::1;::::0;;;::::1;::::0;;83733:106::o;83844:151::-;70238:13;:11;:13::i;:::-;83904:24:::1;83921:6;83904:16;:24::i;:::-;83941:15;::::0;83933:57:::1;::::0;-1:-1:-1;;;;;83941:15:0::1;83968:21;83933:34;:57::i;:::-;83844:151:::0;:::o;78009:356::-;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;78123:5:::1;78107:13;52448:12:::0;;;52360:108;78107:13:::1;:21;;;;:::i;:::-;78097:6;:32;78089:68;;;::::0;-1:-1:-1;;;78089:68:0;;12508:2:1;78089:68:0::1;::::0;::::1;12490:21:1::0;12547:2;12527:18;;;12520:30;-1:-1:-1;;;12566:18:1;;;12559:53;12629:18;;78089:68:0::1;12306:347:1::0;78089:68:0::1;78185:15;;78176:6;:24;:56;;;;-1:-1:-1::0;72911:13:0;;-1:-1:-1;;;;;72911:13:0;78204:10:::1;:28;78176:56;78175:124;;;-1:-1:-1::0;78257:13:0::1;::::0;-1:-1:-1;;;;;78257:13:0::1;78243:10;:27;:55:::0;::::1;;;-1:-1:-1::0;78285:13:0::1;::::0;-1:-1:-1;;;;;78285:13:0::1;78274:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;78274:7:::1;-1:-1:-1::0;;;;;78274:24:0::1;;78243:55;78162:169;;;::::0;-1:-1:-1;;;78162:169:0;;11094:2:1;78162:169:0::1;::::0;::::1;11076:21:1::0;11133:2;11113:18;;;11106:30;-1:-1:-1;;;11152:18:1;;;11145:49;11211:18;;78162:169:0::1;10892:343:1::0;78162:169:0::1;78336:15;:24:::0;78009:356::o;65471:377::-;65646:4;65663:39;65676:6;65684:9;65695:6;65663:12;:39::i;:::-;;65721:54;65743:6;65751:9;65762:6;65770:4;65721:21;:54::i;:::-;65713:105;;;;-1:-1:-1;;;65713:105:0;;;;;;;:::i;65471:377::-;;;;;;;:::o;83157:571::-;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;83253:3:::1;83245:4;:11;;83237:33;;;::::0;-1:-1:-1;;;83237:33:0;;12860:2:1;83237:33:0::1;::::0;::::1;12842:21:1::0;12899:1;12879:18;;;12872:29;-1:-1:-1;;;12917:18:1;;;12910:39;12966:18;;83237:33:0::1;12658:332:1::0;83237:33:0::1;83292:3;83283:5;:12;;83275:35;;;::::0;-1:-1:-1;;;83275:35:0;;13197:2:1;83275:35:0::1;::::0;::::1;13179:21:1::0;13236:2;13216:18;;;13209:30;-1:-1:-1;;;13255:18:1;;;13248:40;13305:18;;83275:35:0::1;12995:334:1::0;83275:35:0::1;83336:6;;83329:4;:13;:45;;;;-1:-1:-1::0;72911:13:0;;-1:-1:-1;;;;;72911:13:0;83346:10:::1;:28;83329:45;83328:113;;;-1:-1:-1::0;83399:13:0::1;::::0;-1:-1:-1;;;;;83399:13:0::1;83385:10;:27;:55:::0;::::1;;;-1:-1:-1::0;83427:13:0::1;::::0;-1:-1:-1;;;;;83427:13:0::1;83416:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;83416:7:::1;-1:-1:-1::0;;;;;83416:24:0::1;;83385:55;83315:181;;;::::0;-1:-1:-1;;;83315:181:0;;13536:2:1;83315:181:0::1;::::0;::::1;13518:21:1::0;13575:2;13555:18;;;13548:30;13614:34;13594:18;;;13587:62;-1:-1:-1;;;13665:18:1;;;13658:40;13715:19;;83315:181:0::1;13334:406:1::0;83315:181:0::1;83523:7;;83515:5;:15;:47;;;;-1:-1:-1::0;72911:13:0;;-1:-1:-1;;;;;72911:13:0;83534:10:::1;:28;83515:47;83514:115;;;-1:-1:-1::0;83587:13:0::1;::::0;-1:-1:-1;;;;;83587:13:0::1;83573:10;:27;:55:::0;::::1;;;-1:-1:-1::0;83615:13:0::1;::::0;-1:-1:-1;;;;;83615:13:0::1;83604:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;83604:7:::1;-1:-1:-1::0;;;;;83604:24:0::1;;83573:55;83501:184;;;::::0;-1:-1:-1;;;83501:184:0;;13947:2:1;83501:184:0::1;::::0;::::1;13929:21:1::0;13986:2;13966:18;;;13959:30;14025:34;14005:18;;;13998:62;-1:-1:-1;;;14076:18:1;;;14069:41;14127:19;;83501:184:0::1;13745:407:1::0;83501:184:0::1;83690:6;:13:::0;;;;83708:7:::1;:15:::0;83157:571::o;66683:318::-;66826:4;66843:24;66851:7;66860:6;66843:7;:24::i;:::-;;66886:43;66907:7;66916:6;66924:4;66886:20;:43::i;:::-;66878:93;;;;-1:-1:-1;;;66878:93:0;;14359:2:1;66878:93:0;;;14341:21:1;14398:2;14378:18;;;14371:30;14437:34;14417:18;;;14410:62;-1:-1:-1;;;14488:18:1;;;14481:35;14533:19;;66878:93:0;14157:401:1;74298:194:0;70238:13;:11;:13::i;:::-;74371:9:::1;74386:7;70425:6:::0;;-1:-1:-1;;;;;70425:6:0;;70352:87;74386:7:::1;-1:-1:-1::0;;;;;74386:12:0::1;74406:6;74386:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74370:47;;;74436:4;74428:56;;;::::0;-1:-1:-1;;;74428:56:0;;14975:2:1;74428:56:0::1;::::0;::::1;14957:21:1::0;15014:2;14994:18;;;14987:30;15053:34;15033:18;;;15026:62;-1:-1:-1;;;15104:18:1;;;15097:37;15151:19;;74428:56:0::1;14773:403:1::0;73064:202:0;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;-1:-1:-1;;;;;73154:23:0;::::1;73146:32;;;::::0;::::1;;73185:13;:25:::0;;-1:-1:-1;;;;;;73185:25:0::1;-1:-1:-1::0;;;;;73185:25:0;::::1;::::0;;::::1;::::0;;;73222:38:::1;::::0;738:51:1;;;73222:38:0::1;::::0;726:2:1;711:18;73222:38:0::1;;;;;;;73064:202:::0;:::o;64785:229::-;64932:4;64956:50;64976:6;64984:9;64995:6;64956:50;;;;;;;;;;;;:19;:50::i;53120:151::-;-1:-1:-1;;;;;53236:18:0;;;53209:7;53236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;53120:151::o;82962:84::-;70238:13;:11;:13::i;:::-;83022:11:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;83022:19:0;;::::1;::::0;;;::::1;::::0;;82962:84::o;76010:679::-;76229:8;;-1:-1:-1;;;;;76229:8:0;:22;;:50;;-1:-1:-1;76271:8:0;;-1:-1:-1;;;;;76271:8:0;48364:10;-1:-1:-1;;;;;76255:24:0;;76229:50;76216:88;;;;-1:-1:-1;;;76216:88:0;;15383:2:1;76216:88:0;;;15365:21:1;15422:2;15402:18;;;15395:30;-1:-1:-1;;;15441:18:1;;;15434:42;15493:18;;76216:88:0;15181:336:1;76216:88:0;76325:1;76317:5;:9;;;:23;;;;;76338:2;76330:5;:10;;;76317:23;76309:41;;;;-1:-1:-1;;;76309:41:0;;15724:2:1;76309:41:0;;;15706:21:1;15763:1;15743:18;;;15736:29;-1:-1:-1;;;15781:18:1;;;15774:35;15826:18;;76309:41:0;15522:328:1;76309:41:0;76357:8;:23;;-1:-1:-1;;;;;;76357:23:0;48364:10;76357:23;;;76387:32;76406:4;76412:6;76387:18;:32::i;:::-;76424;:30;:32::i;:::-;76561:9;:17;;-1:-1:-1;;;;76561:17:0;-1:-1:-1;;;76561:17:0;;;;;;;76585:27;48364:10;76605:6;76585:5;:27::i;:::-;76617:34;76638:12;76617:20;:34::i;:::-;76656:28;76674:9;76656:17;:28::i;:::-;76010:679;;;;;:::o;77515:144::-;72684:13;;-1:-1:-1;;;;;72684:13:0;72670:10;:27;;:65;;-1:-1:-1;72715:20:0;;-1:-1:-1;;;;;72715:20:0;72701:10;:34;72670:65;:90;;;-1:-1:-1;70425:6:0;;-1:-1:-1;;;;;70425:6:0;72739:10;:21;72670:90;72662:99;;;;;;-1:-1:-1;;;;;77620:26:0;;;::::1;;::::0;;;:16:::1;:26;::::0;;;;:34;;-1:-1:-1;;77620:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;77515:144::o;71251:201::-;70238:13;:11;:13::i;:::-;-1:-1:-1;;;;;71340:22:0;::::1;71332:73;;;::::0;-1:-1:-1;;;71332:73:0;;16057:2:1;71332:73:0::1;::::0;::::1;16039:21:1::0;16096:2;16076:18;;;16069:30;16135:34;16115:18;;;16108:62;-1:-1:-1;;;16186:18:1;;;16179:36;16232:19;;71332:73:0::1;15855:402:1::0;71332:73:0::1;71416:28;71435:8;71416:18;:28::i;79532:1435::-:0;42420:19;42443:13;;;;;;42442:14;;42490:34;;;;-1:-1:-1;42508:12:0;;42523:1;42508:12;;;;:16;42490:34;42489:108;;;-1:-1:-1;42569:4:0;24020:19;:23;;;42530:66;;-1:-1:-1;42579:12:0;;;;;:17;42530:66;42467:204;;;;-1:-1:-1;;;42467:204:0;;16464:2:1;42467:204:0;;;16446:21:1;16503:2;16483:18;;;16476:30;16542:34;16522:18;;;16515:62;-1:-1:-1;;;16593:18:1;;;16586:44;16647:19;;42467:204:0;16262:410:1;42467:204:0;42682:12;:16;;-1:-1:-1;;42682:16:0;42697:1;42682:16;;;42709:67;;;;42744:13;:20;;-1:-1:-1;;42744:20:0;;;;;42709:67;79630:137:::1;79652:14;:9:::0;;:14:::1;:::i;:::-;79630:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;79672:16:0::1;::::0;-1:-1:-1;;;79672:16:0::1;::::0;::::1;::::0;::::1;:::i;:::-;79630:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;79694:18:0::1;::::0;-1:-1:-1;;;79694:18:0;;;::::1;::::0;::::1;;:::i;:::-;79718:16;::::0;::::1;;79740:22;::::0;;;::::1;::::0;::::1;;:::i;79630:137::-;79814:5;79798:13;52448:12:::0;;;52360:108;79798:13:::1;:21;;;;:::i;:::-;79780:9;:15;;;:39;79772:71;;;::::0;-1:-1:-1;;;79772:71:0;;10746:2:1;79772:71:0::1;::::0;::::1;10728:21:1::0;10785:2;10765:18;;;10758:30;-1:-1:-1;;;10804:18:1;;;10797:49;10863:18;;79772:71:0::1;10544:343:1::0;79772:71:0::1;79899:5;79883:13;52448:12:::0;;;52360:108;79883:13:::1;:21;;;;:::i;:::-;79861:9;:19;;;:43;79848:92;;;::::0;-1:-1:-1;;;79848:92:0;;12508:2:1;79848:92:0::1;::::0;::::1;12490:21:1::0;12547:2;12527:18;;;12520:30;-1:-1:-1;;;12566:18:1;;;12559:53;12629:18;;79848:92:0::1;12306:347:1::0;79848:92:0::1;79963:23;::::0;;;::::1;::::0;::::1;;:::i;:::-;79947:13;:39:::0;;-1:-1:-1;;;;;;79947:39:0::1;-1:-1:-1::0;;;;;79947:39:0;;;::::1;::::0;;;::::1;::::0;;80014:30:::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;79991:20;:53:::0;;-1:-1:-1;;;;;;79991:53:0::1;-1:-1:-1::0;;;;;79991:53:0;;::::1;;::::0;;80066:10:::1;-1:-1:-1::0;80049:28:0;;;:16:::1;:28;::::0;;;;;;;:35;;-1:-1:-1;;80049:35:0;;::::1;-1:-1:-1::0;80049:35:0;;::::1;::::0;;;80106:13:::1;::::0;;;::::1;80089:31:::0;;;;;:38;;;::::1;::::0;::::1;::::0;;75555:6:::1;80132:22:::0;;;:29;;;;::::1;::::0;::::1;::::0;;;80049:16;80183:23:::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;80166:41:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;80166:41:0;;;:48;;-1:-1:-1;;80166:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;-1:-1:-1;;80219:16:0::1;::::0;80236:23:::1;80166:48;80236:23:::0;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;80219:41:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;80219:41:0;:48;;-1:-1:-1;;80219:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;80291:23:::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;80274:6;:41:::0;;-1:-1:-1;;;;;;80274:41:0::1;-1:-1:-1::0;;;;;80274:41:0;;;::::1;::::0;;::::1;::::0;;80336:16:::1;::::0;;-1:-1:-1;;;80336:16:0;;;;:14:::1;::::0;:16:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;80274:41;80336:16:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;80327:37:0::1;;80378:4;80389:6;;;;;;;;;-1:-1:-1::0;;;;;80389:6:0::1;-1:-1:-1::0;;;;;80389:11:0::1;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;80327:80;::::0;-1:-1:-1;;;;;;80327:80:0::1;::::0;;;;;;-1:-1:-1;;;;;11821:15:1;;;80327:80:0::1;::::0;::::1;11803:34:1::0;11873:15;;11853:18;;;11846:43;11738:18;;80327:80:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;80320:4;:87:::0;;-1:-1:-1;;;;;;80320:87:0::1;-1:-1:-1::0;;;;;80320:87:0;;;::::1;::::0;;;::::1;::::0;;80430:22:::1;80449:3;80430:16;::::0;::::1;;:22;:::i;:::-;80414:13;:38:::0;80488:15:::1;::::0;::::1;;80474:11;:29:::0;80526:19:::1;::::0;::::1;;80508:15;:37:::0;80561:16:::1;::::0;::::1;:26;80552:6;:35:::0;80602:17:::1;::::0;::::1;:27;80592:7;:37:::0;80654:25:::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;80636:15;:43:::0;;-1:-1:-1;;;;;;80636:43:0::1;-1:-1:-1::0;;;;;80636:43:0;;::::1;;::::0;;80711:4:::1;-1:-1:-1::0;80686:31:0;;;:16:::1;:31;::::0;;;;;:38;;-1:-1:-1;;80686:38:0;;::::1;-1:-1:-1::0;80686:38:0;;::::1;::::0;;;80746:15;;;;::::1;80729:33:::0;;;;:40;;;;::::1;::::0;;::::1;::::0;;80780:17:::1;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;80780:33:0::1;;;:62;;;;-1:-1:-1::0;75555:6:0::1;80817:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;80817:25:0::1;;;80780:62;80776:187;;;80874:17;::::0;;;::::1;::::0;::::1;;:::i;:::-;80850:7;:42:::0;;-1:-1:-1;;;;;;80850:42:0::1;-1:-1:-1::0;;;;;80850:42:0;;;::::1;::::0;;::::1;::::0;;80898:33:::1;::::0;-1:-1:-1;;;80898:33:0;;80920:10:::1;80898:33;::::0;::::1;738:51:1::0;80898:21:0::1;::::0;711:18:1;;80898:33:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;80937:13:0::1;:20:::0;;-1:-1:-1;;;;80937:20:0::1;-1:-1:-1::0;;;80937:20:0::1;::::0;;-1:-1:-1;;80776:187:0::1;42802:14:::0;42798:102;;;42849:5;42833:21;;-1:-1:-1;;42833:21:0;;;42874:14;;-1:-1:-1;3394:36:1;;42874:14:0;;3382:2:1;3367:18;42874:14:0;;;;;;;42409:498;79532:1435;:::o;62940:287::-;63109:4;-1:-1:-1;;;;;;63138:41:0;;-1:-1:-1;;;63138:41:0;;:81;;-1:-1:-1;;;;;;;;;;47044:51:0;;;63183:36;46935:168;59776:346;-1:-1:-1;;;;;59878:19:0;;59870:68;;;;-1:-1:-1;;;59870:68:0;;18048:2:1;59870:68:0;;;18030:21:1;18087:2;18067:18;;;18060:30;18126:34;18106:18;;;18099:62;-1:-1:-1;;;18177:18:1;;;18170:34;18221:19;;59870:68:0;17846:400:1;59870:68:0;-1:-1:-1;;;;;59957:21:0;;59949:68;;;;-1:-1:-1;;;59949:68:0;;18453:2:1;59949:68:0;;;18435:21:1;18492:2;18472:18;;;18465:30;18531:34;18511:18;;;18504:62;-1:-1:-1;;;18582:18:1;;;18575:32;18624:19;;59949:68:0;18251:398:1;59949:68:0;-1:-1:-1;;;;;60030:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;60082:32;;946:25:1;;;60082:32:0;;919:18:1;60082:32:0;;;;;;;59776:346;;;:::o;70517:132::-;70425:6;;-1:-1:-1;;;;;70425:6:0;48364:10;70581:23;70573:68;;;;-1:-1:-1;;;70573:68:0;;18856:2:1;70573:68:0;;;18838:21:1;;;18875:18;;;18868:30;18934:34;18914:18;;;18907:62;18986:18;;70573:68:0;18654:356:1;60413:419:0;60514:24;60541:25;60551:5;60558:7;60541:9;:25::i;:::-;60514:52;;-1:-1:-1;;60581:16:0;:37;60577:248;;60663:6;60643:16;:26;;60635:68;;;;-1:-1:-1;;;60635:68:0;;19217:2:1;60635:68:0;;;19199:21:1;19256:2;19236:18;;;19229:30;19295:31;19275:18;;;19268:59;19344:18;;60635:68:0;19015:353:1;60635:68:0;60747:51;60756:5;60763:7;60791:6;60772:16;:25;60747:8;:51::i;80972:1267::-;81095:1;81086:6;:10;81078:64;;;;-1:-1:-1;;;81078:64:0;;19575:2:1;81078:64:0;;;19557:21:1;19614:2;19594:18;;;19587:30;19653:34;19633:18;;;19626:62;-1:-1:-1;;;19704:18:1;;;19697:39;19753:19;;81078:64:0;19373:405:1;81078:64:0;-1:-1:-1;;;;;81159:24:0;;;;;;:16;:24;;;;;;;;81158:25;:61;;;;-1:-1:-1;;;;;;81192:27:0;;;;;;:16;:27;;;;;;;;81191:28;81158:61;:78;;;;-1:-1:-1;81228:8:0;;;;81227:9;81158:78;81149:378;;;81256:14;;-1:-1:-1;;;81256:14:0;;;;81248:49;;;;-1:-1:-1;;;81248:49:0;;19985:2:1;81248:49:0;;;19967:21:1;20024:2;20004:18;;;19997:30;-1:-1:-1;;;20043:18:1;;;20036:52;20105:18;;81248:49:0;19783:346:1;81248:49:0;81321:11;;81311:6;:21;;81303:63;;;;-1:-1:-1;;;81303:63:0;;20336:2:1;81303:63:0;;;20318:21:1;20375:2;20355:18;;;20348:30;20414:31;20394:18;;;20387:59;20463:18;;81303:63:0;20134:353:1;81303:63:0;81389:4;;-1:-1:-1;;;;;81376:17:0;;;81389:4;;81376:17;81372:150;;81450:15;;81440:6;81417:20;81427:9;-1:-1:-1;;;;;52632:18:0;52605:7;52632:18;;;:9;:18;;;;;;;52531:127;81417:20;:29;;;;:::i;:::-;:48;;81402:113;;;;-1:-1:-1;;;81402:113:0;;20694:2:1;81402:113:0;;;20676:21:1;20733:2;20713:18;;;20706:30;20772:34;20752:18;;;20745:62;-1:-1:-1;;;20823:18:1;;;20816:31;20864:19;;81402:113:0;20492:397:1;81402:113:0;81537:13;;-1:-1:-1;;;81537:13:0;;;;81533:84;;;81558:7;;:53;;-1:-1:-1;;;81558:53:0;;-1:-1:-1;;;;;21152:15:1;;;81558:53:0;;;21134:34:1;21204:15;;;21184:18;;;21177:43;21236:18;;;21229:34;;;81558:7:0;;;;:26;;21069:18:1;;81558:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81533:84;81710:8;;81623:11;;81710:8;;;:36;;-1:-1:-1;;;;;;81722:24:0;;;;;;:16;:24;;;;;;;;81710:36;:67;;;-1:-1:-1;;;;;;81750:27:0;;;;;;:16;:27;;;;;;;;81710:67;81706:245;;;-1:-1:-1;81789:1:0;81706:245;;;81845:4;;-1:-1:-1;;;;;81845:4:0;;;81832:17;;;;81828:118;;81885:4;81874:7;;81865:6;:16;;;;:::i;:::-;81864:25;;;;:::i;:::-;81858:31;;81828:118;;;81935:4;81925:6;;81916;:15;;;;:::i;:::-;81915:24;;;;:::i;:::-;81909:30;;81828:118;82046:11;;;;;;;:24;;;;-1:-1:-1;82062:8:0;;;;82061:9;82046:24;:42;;;;-1:-1:-1;82084:4:0;;-1:-1:-1;;;;;82074:14:0;;;82084:4;;82074:14;;82046:42;:53;;;;;82098:1;82092:3;:7;82046:53;82042:76;;;82105:13;:11;:13::i;:::-;82125:48;82141:6;82149:9;82160:12;82169:3;82160:6;:12;:::i;:::-;82125:15;:48::i;:::-;82182:7;;82178:56;;82191:43;82207:6;82223:4;82230:3;82191:15;:43::i;67567:456::-;67737:4;-1:-1:-1;;;;;67759:20:0;;24020:19;67754:68;;-1:-1:-1;67805:5:0;67798:12;;67754:68;67848:82;;-1:-1:-1;;;67848:82:0;;67832:13;;-1:-1:-1;;;;;67848:46:0;;;;;:82;;48364:10;;67909:6;;67917;;67925:4;;67848:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;67949:65:0;-1:-1:-1;;;67949:65:0;;-1:-1:-1;;67567:456:0;;;;;;:::o;71612:191::-;71705:6;;;-1:-1:-1;;;;;71722:17:0;;;-1:-1:-1;;;;;;71722:17:0;;;;;;;71755:40;;71705:6;;;71722:17;71705:6;;71755:40;;71686:16;;71755:40;71675:128;71612:191;:::o;32831:188::-;32952:58;;;-1:-1:-1;;;;;22520:32:1;;32952:58:0;;;22502:51:1;22569:18;;;;22562:34;;;32952:58:0;;;;;;;;;;22475:18:1;;;;32952:58:0;;;;;;;;-1:-1:-1;;;;;32952:58:0;-1:-1:-1;;;32952:58:0;;;32925:86;;32945:5;;32925:19;:86::i;:::-;32831:188;;;:::o;82573:384::-;82657:16;;;82671:1;82657:16;;;;;;;;82633:21;;82657:16;;;;;;;;;;-1:-1:-1;82657:16:0;82633:40;;82696:4;82678;82683:1;82678:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;82678:23:0;;;:7;;;;;;;;;;:23;;;;82716:6;;:13;;;-1:-1:-1;;;82716:13:0;;;;:6;;;;;:11;;:13;;;;;82678:7;;82716:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;82706:4;82711:1;82706:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;82706:23:0;;;:7;;;;;;;;;:23;82768:6;;82736:53;;82753:4;;82768:6;82777:11;82736:8;:53::i;:::-;82816:6;;:136;;-1:-1:-1;;;82816:136:0;;-1:-1:-1;;;;;82816:6:0;;;;:57;;:136;;82879:11;;82816:6;;82903:4;;82921;;82932:15;;82816:136;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82628:329;82573:384;:::o;24984:317::-;25099:6;25074:21;:31;;25066:73;;;;-1:-1:-1;;;25066:73:0;;23926:2:1;25066:73:0;;;23908:21:1;23965:2;23945:18;;;23938:30;24004:31;23984:18;;;23977:59;24053:18;;25066:73:0;23724:353:1;25066:73:0;25153:12;25171:9;-1:-1:-1;;;;;25171:14:0;25193:6;25171:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25152:52;;;25223:7;25215:78;;;;-1:-1:-1;;;25215:78:0;;24284:2:1;25215:78:0;;;24266:21:1;24323:2;24303:18;;;24296:30;24362:34;24342:18;;;24335:62;24433:28;24413:18;;;24406:56;24479:19;;25215:78:0;24082:422:1;68483:412:0;68625:4;-1:-1:-1;;;;;68647:18:0;;24020:19;68642:66;;-1:-1:-1;68691:5:0;68684:12;;68642:66;68734:71;;-1:-1:-1;;;68734:71:0;;68718:13;;-1:-1:-1;;;;;68734:43:0;;;;;:71;;48364:10;;68792:6;;68800:4;;68734:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;68824:62:0;-1:-1:-1;;;68824:62:0;;-1:-1:-1;;68483:412:0;;;;;:::o;50842:149::-;44563:13;;;;;;;44555:69;;;;-1:-1:-1;;;44555:69:0;;;;;;;:::i;:::-;50945:38:::1;50968:5;50975:7;50945:22;:38::i;70000:113::-:0;44563:13;;;;;;;44555:69;;;;-1:-1:-1;;;44555:69:0;;;;;;;:::i;:::-;70073:32:::1;48364:10:::0;70073:18:::1;:32::i;77222:140::-:0;77329:28;77341:7;77350:6;77329:11;:28::i;82244:324::-;79457:8;;;;79452:71;;79473:8;:15;;-1:-1:-1;;79473:15:0;79484:4;79473:15;;;82331:4:::1;-1:-1:-1::0;52632:18:0;;;:9;:18;;;;;;82287:50:::1;;82365:13;;82346:15;:32;82342:222;;82386:33;82403:15;82386:16;:33::i;:::-;82448:21;82479:16:::0;;82475:84:::1;;82512:15;::::0;82504:48:::1;::::0;-1:-1:-1;;;;;82512:15:0::1;82539:12:::0;82504:34:::1;:48::i;:::-;82380:184;82342:222;-1:-1:-1::0;79501:8:0;:16;;-1:-1:-1;;79501:16:0;;;82244:324::o;56689:806::-;-1:-1:-1;;;;;56786:18:0;;56778:68;;;;-1:-1:-1;;;56778:68:0;;25514:2:1;56778:68:0;;;25496:21:1;25553:2;25533:18;;;25526:30;25592:34;25572:18;;;25565:62;-1:-1:-1;;;25643:18:1;;;25636:35;25688:19;;56778:68:0;25312:401:1;56778:68:0;-1:-1:-1;;;;;56865:16:0;;56857:64;;;;-1:-1:-1;;;56857:64:0;;25920:2:1;56857:64:0;;;25902:21:1;25959:2;25939:18;;;25932:30;25998:34;25978:18;;;25971:62;-1:-1:-1;;;26049:18:1;;;26042:33;26092:19;;56857:64:0;25718:399:1;56857:64:0;-1:-1:-1;;;;;57007:15:0;;56985:19;57007:15;;;:9;:15;;;;;;57041:21;;;;57033:72;;;;-1:-1:-1;;;57033:72:0;;26324:2:1;57033:72:0;;;26306:21:1;26363:2;26343:18;;;26336:30;26402:34;26382:18;;;26375:62;-1:-1:-1;;;26453:18:1;;;26446:36;26499:19;;57033:72:0;26122:402:1;57033:72:0;-1:-1:-1;;;;;57141:15:0;;;;;;;:9;:15;;;;;;57159:20;;;57141:38;;57359:13;;;;;;;;;;:23;;;;;;57411:26;;;;;;57173:6;946:25:1;;934:2;919:18;;800:177;57411:26:0;;;;;;;;57450:37;32831:188;37254:660;37689:23;37715:69;37743:4;37715:69;;;;;;;;;;;;;;;;;37723:5;-1:-1:-1;;;;;37715:27:0;;;:69;;;;;:::i;:::-;37689:95;;37803:10;:17;37824:1;37803:22;:56;;;;37840:10;37829:30;;;;;;;;;;;;:::i;:::-;37795:111;;;;-1:-1:-1;;;37795:111:0;;26981:2:1;37795:111:0;;;26963:21:1;27020:2;27000:18;;;26993:30;27059:34;27039:18;;;27032:62;-1:-1:-1;;;27110:18:1;;;27103:40;27160:19;;37795:111:0;26779:406:1;50999:162:0;44563:13;;;;;;;44555:69;;;;-1:-1:-1;;;44555:69:0;;;;;;;:::i;:::-;51112:5:::1;:13;51120:5:::0;51112;:13:::1;:::i;:::-;-1:-1:-1::0;51136:7:0::1;:17;51146:7:::0;51136;:17:::1;:::i;57782:548::-:0;-1:-1:-1;;;;;57866:21:0;;57858:65;;;;-1:-1:-1;;;57858:65:0;;29596:2:1;57858:65:0;;;29578:21:1;29635:2;29615:18;;;29608:30;29674:33;29654:18;;;29647:61;29725:18;;57858:65:0;29394:355:1;57858:65:0;58014:6;57998:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;58169:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;58224:37;946:25:1;;;58224:37:0;;919:18:1;58224:37:0;;;;;;;73941:175;;:::o;26480:229::-;26617:12;26649:52;26671:6;26679:4;26685:1;26688:12;26617;27854;27868:23;27895:6;-1:-1:-1;;;;;27895:11:0;27914:5;27921:4;27895:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27853:73;;;;27944:69;27971:6;27979:7;27988:10;28000:12;27944:26;:69::i;:::-;27937:76;27566:455;-1:-1:-1;;;;;;;27566:455:0:o;30139:644::-;30324:12;30353:7;30349:427;;;30381:10;:17;30402:1;30381:22;30377:290;;-1:-1:-1;;;;;24020:19:0;;;30591:60;;;;-1:-1:-1;;;30591:60:0;;30655:2:1;30591:60:0;;;30637:21:1;30694:2;30674:18;;;30667:30;30733:31;30713:18;;;30706:59;30782:18;;30591:60:0;30453:353:1;30591:60:0;-1:-1:-1;30688:10:0;30681:17;;30349:427;30731:33;30739:10;30751:12;31486:17;;:21;31482:388;;31718:10;31712:17;31775:15;31762:10;31758:2;31754:19;31747:44;31482:388;31845:12;31838:20;;-1:-1:-1;;;31838:20:0;;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;982:250::-;1067:1;1077:113;1091:6;1088:1;1085:13;1077:113;;;1167:11;;;1161:18;1148:11;;;1141:39;1113:2;1106:10;1077:113;;;-1:-1:-1;;1224:1:1;1206:16;;1199:27;982:250::o;1237:271::-;1279:3;1317:5;1311:12;1344:6;1339:3;1332:19;1360:76;1429:6;1422:4;1417:3;1413:14;1406:4;1399:5;1395:16;1360:76;:::i;:::-;1490:2;1469:15;-1:-1:-1;;1465:29:1;1456:39;;;;1497:4;1452:50;;1237:271;-1:-1:-1;;1237:271:1:o;1513:220::-;1662:2;1651:9;1644:21;1625:4;1682:45;1723:2;1712:9;1708:18;1700:6;1682:45;:::i;1738:131::-;-1:-1:-1;;;;;1813:31:1;;1803:42;;1793:70;;1859:1;1856;1849:12;1874:315;1942:6;1950;2003:2;1991:9;1982:7;1978:23;1974:32;1971:52;;;2019:1;2016;2009:12;1971:52;2058:9;2045:23;2077:31;2102:5;2077:31;:::i;:::-;2127:5;2179:2;2164:18;;;;2151:32;;-1:-1:-1;;;1874:315:1:o;2194:118::-;2280:5;2273:13;2266:21;2259:5;2256:32;2246:60;;2302:1;2299;2292:12;2317:241;2373:6;2426:2;2414:9;2405:7;2401:23;2397:32;2394:52;;;2442:1;2439;2432:12;2394:52;2481:9;2468:23;2500:28;2522:5;2500:28;:::i;2563:456::-;2640:6;2648;2656;2709:2;2697:9;2688:7;2684:23;2680:32;2677:52;;;2725:1;2722;2715:12;2677:52;2764:9;2751:23;2783:31;2808:5;2783:31;:::i;:::-;2833:5;-1:-1:-1;2890:2:1;2875:18;;2862:32;2903:33;2862:32;2903:33;:::i;:::-;2563:456;;2955:7;;-1:-1:-1;;;3009:2:1;2994:18;;;;2981:32;;2563:456::o;3441:127::-;3502:10;3497:3;3493:20;3490:1;3483:31;3533:4;3530:1;3523:15;3557:4;3554:1;3547:15;3573:718;3615:5;3668:3;3661:4;3653:6;3649:17;3645:27;3635:55;;3686:1;3683;3676:12;3635:55;3722:6;3709:20;3748:18;3785:2;3781;3778:10;3775:36;;;3791:18;;:::i;:::-;3866:2;3860:9;3834:2;3920:13;;-1:-1:-1;;3916:22:1;;;3940:2;3912:31;3908:40;3896:53;;;3964:18;;;3984:22;;;3961:46;3958:72;;;4010:18;;:::i;:::-;4050:10;4046:2;4039:22;4085:2;4077:6;4070:18;4131:3;4124:4;4119:2;4111:6;4107:15;4103:26;4100:35;4097:55;;;4148:1;4145;4138:12;4097:55;4212:2;4205:4;4197:6;4193:17;4186:4;4178:6;4174:17;4161:54;4259:1;4252:4;4247:2;4239:6;4235:15;4231:26;4224:37;4279:6;4270:15;;;;;;3573:718;;;;:::o;4296:523::-;4382:6;4390;4398;4451:2;4439:9;4430:7;4426:23;4422:32;4419:52;;;4467:1;4464;4457:12;4419:52;4506:9;4493:23;4525:31;4550:5;4525:31;:::i;:::-;4575:5;-1:-1:-1;4627:2:1;4612:18;;4599:32;;-1:-1:-1;4682:2:1;4667:18;;4654:32;4709:18;4698:30;;4695:50;;;4741:1;4738;4731:12;4695:50;4764:49;4805:7;4796:6;4785:9;4781:22;4764:49;:::i;:::-;4754:59;;;4296:523;;;;;:::o;4824:180::-;4883:6;4936:2;4924:9;4915:7;4911:23;4907:32;4904:52;;;4952:1;4949;4942:12;4904:52;-1:-1:-1;4975:23:1;;4824:180;-1:-1:-1;4824:180:1:o;5009:247::-;5068:6;5121:2;5109:9;5100:7;5096:23;5092:32;5089:52;;;5137:1;5134;5127:12;5089:52;5176:9;5163:23;5195:31;5220:5;5195:31;:::i;5261:665::-;5356:6;5364;5372;5380;5433:3;5421:9;5412:7;5408:23;5404:33;5401:53;;;5450:1;5447;5440:12;5401:53;5489:9;5476:23;5508:31;5533:5;5508:31;:::i;:::-;5558:5;-1:-1:-1;5615:2:1;5600:18;;5587:32;5628:33;5587:32;5628:33;:::i;:::-;5680:7;-1:-1:-1;5734:2:1;5719:18;;5706:32;;-1:-1:-1;5789:2:1;5774:18;;5761:32;5816:18;5805:30;;5802:50;;;5848:1;5845;5838:12;5802:50;5871:49;5912:7;5903:6;5892:9;5888:22;5871:49;:::i;:::-;5861:59;;;5261:665;;;;;;;:::o;5931:248::-;5999:6;6007;6060:2;6048:9;6039:7;6035:23;6031:32;6028:52;;;6076:1;6073;6066:12;6028:52;-1:-1:-1;;6099:23:1;;;6169:2;6154:18;;;6141:32;;-1:-1:-1;5931:248:1:o;6184:388::-;6252:6;6260;6313:2;6301:9;6292:7;6288:23;6284:32;6281:52;;;6329:1;6326;6319:12;6281:52;6368:9;6355:23;6387:31;6412:5;6387:31;:::i;:::-;6437:5;-1:-1:-1;6494:2:1;6479:18;;6466:32;6507:33;6466:32;6507:33;:::i;:::-;6559:7;6549:17;;;6184:388;;;;;:::o;6577:156::-;6643:20;;6703:4;6692:16;;6682:27;;6672:55;;6723:1;6720;6713:12;6672:55;6577:156;;;:::o;6738:816::-;6851:6;6859;6867;6875;6883;6936:3;6924:9;6915:7;6911:23;6907:33;6904:53;;;6953:1;6950;6943:12;6904:53;6993:9;6980:23;7022:18;7063:2;7055:6;7052:14;7049:34;;;7079:1;7076;7069:12;7049:34;7102:49;7143:7;7134:6;7123:9;7119:22;7102:49;:::i;:::-;7092:59;;7204:2;7193:9;7189:18;7176:32;7160:48;;7233:2;7223:8;7220:16;7217:36;;;7249:1;7246;7239:12;7217:36;;7272:51;7315:7;7304:8;7293:9;7289:24;7272:51;:::i;:::-;7262:61;;;7342:36;7374:2;7363:9;7359:18;7342:36;:::i;:::-;7332:46;;7425:2;7414:9;7410:18;7397:32;7387:42;;7479:3;7468:9;7464:19;7451:33;7493:31;7518:5;7493:31;:::i;:::-;7543:5;7533:15;;;6738:816;;;;;;;;:::o;7559:382::-;7624:6;7632;7685:2;7673:9;7664:7;7660:23;7656:32;7653:52;;;7701:1;7698;7691:12;7653:52;7740:9;7727:23;7759:31;7784:5;7759:31;:::i;:::-;7809:5;-1:-1:-1;7866:2:1;7851:18;;7838:32;7879:30;7838:32;7879:30;:::i;8170:388::-;8257:6;8310:2;8298:9;8289:7;8285:23;8281:32;8278:52;;;8326:1;8323;8316:12;8278:52;8366:9;8353:23;8399:18;8391:6;8388:30;8385:50;;;8431:1;8428;8421:12;8385:50;8454:22;;8510:3;8492:16;;;8488:26;8485:46;;;8527:1;8524;8517:12;8563:380;8642:1;8638:12;;;;8685;;;8706:61;;8760:4;8752:6;8748:17;8738:27;;8706:61;8813:2;8805:6;8802:14;8782:18;8779:38;8776:161;;8859:10;8854:3;8850:20;8847:1;8840:31;8894:4;8891:1;8884:15;8922:4;8919:1;8912:15;8776:161;;8563:380;;;:::o;9653:127::-;9714:10;9709:3;9705:20;9702:1;9695:31;9745:4;9742:1;9735:15;9769:4;9766:1;9759:15;9785:125;9850:9;;;9871:10;;;9868:36;;;9884:18;;:::i;9915:402::-;10117:2;10099:21;;;10156:2;10136:18;;;10129:30;10195:34;10190:2;10175:18;;10168:62;-1:-1:-1;;;10261:2:1;10246:18;;10239:36;10307:3;10292:19;;9915:402::o;10322:217::-;10362:1;10388;10378:132;;10432:10;10427:3;10423:20;10420:1;10413:31;10467:4;10464:1;10457:15;10495:4;10492:1;10485:15;10378:132;-1:-1:-1;10524:9:1;;10322:217::o;16677:522::-;16755:4;16761:6;16821:11;16808:25;16915:2;16911:7;16900:8;16884:14;16880:29;16876:43;16856:18;16852:68;16842:96;;16934:1;16931;16924:12;16842:96;16961:33;;17013:20;;;-1:-1:-1;17056:18:1;17045:30;;17042:50;;;17088:1;17085;17078:12;17042:50;17121:4;17109:17;;-1:-1:-1;17152:14:1;17148:27;;;17138:38;;17135:58;;;17189:1;17186;17179:12;17135:58;16677:522;;;;;:::o;17204:182::-;17261:6;17314:2;17302:9;17293:7;17289:23;17285:32;17282:52;;;17330:1;17327;17320:12;17282:52;17353:27;17370:9;17353:27;:::i;17391:251::-;17461:6;17514:2;17502:9;17493:7;17489:23;17485:32;17482:52;;;17530:1;17527;17520:12;17482:52;17562:9;17556:16;17581:31;17606:5;17581:31;:::i;21274:168::-;21347:9;;;21378;;21395:15;;;21389:22;;21375:37;21365:71;;21416:18;;:::i;21447:128::-;21514:9;;;21535:11;;;21532:37;;;21549:18;;:::i;21580:489::-;-1:-1:-1;;;;;21849:15:1;;;21831:34;;21901:15;;21896:2;21881:18;;21874:43;21948:2;21933:18;;21926:34;;;21996:3;21991:2;21976:18;;21969:31;;;21774:4;;22017:46;;22043:19;;22035:6;22017:46;:::i;:::-;22009:54;21580:489;-1:-1:-1;;;;;;21580:489:1:o;22074:249::-;22143:6;22196:2;22184:9;22175:7;22171:23;22167:32;22164:52;;;22212:1;22209;22202:12;22164:52;22244:9;22238:16;22263:30;22287:5;22263:30;:::i;22607:127::-;22668:10;22663:3;22659:20;22656:1;22649:31;22699:4;22696:1;22689:15;22723:4;22720:1;22713:15;22739:980;23001:4;23049:3;23038:9;23034:19;23080:6;23069:9;23062:25;23106:2;23144:6;23139:2;23128:9;23124:18;23117:34;23187:3;23182:2;23171:9;23167:18;23160:31;23211:6;23246;23240:13;23277:6;23269;23262:22;23315:3;23304:9;23300:19;23293:26;;23354:2;23346:6;23342:15;23328:29;;23375:1;23385:195;23399:6;23396:1;23393:13;23385:195;;;23464:13;;-1:-1:-1;;;;;23460:39:1;23448:52;;23555:15;;;;23520:12;;;;23496:1;23414:9;23385:195;;;-1:-1:-1;;;;;;;23636:32:1;;;;23631:2;23616:18;;23609:60;-1:-1:-1;;;23700:3:1;23685:19;23678:35;23597:3;22739:980;-1:-1:-1;;;22739:980:1:o;24509:386::-;24741:1;24737;24732:3;24728:11;24724:19;24716:6;24712:32;24701:9;24694:51;24781:6;24776:2;24765:9;24761:18;24754:34;24824:2;24819;24808:9;24804:18;24797:30;24675:4;24844:45;24885:2;24874:9;24870:18;24862:6;24844:45;:::i;:::-;24836:53;24509:386;-1:-1:-1;;;;;24509:386:1:o;24900:407::-;25102:2;25084:21;;;25141:2;25121:18;;;25114:30;25180:34;25175:2;25160:18;;25153:62;-1:-1:-1;;;25246:2:1;25231:18;;25224:41;25297:3;25282:19;;24900:407::o;26529:245::-;26596:6;26649:2;26637:9;26628:7;26624:23;26620:32;26617:52;;;26665:1;26662;26655:12;26617:52;26697:9;26691:16;26716:28;26738:5;26716:28;:::i;27316:545::-;27418:2;27413:3;27410:11;27407:448;;;27454:1;27479:5;27475:2;27468:17;27524:4;27520:2;27510:19;27594:2;27582:10;27578:19;27575:1;27571:27;27565:4;27561:38;27630:4;27618:10;27615:20;27612:47;;;-1:-1:-1;27653:4:1;27612:47;27708:2;27703:3;27699:12;27696:1;27692:20;27686:4;27682:31;27672:41;;27763:82;27781:2;27774:5;27771:13;27763:82;;;27826:17;;;27807:1;27796:13;27763:82;;28037:1352;28163:3;28157:10;28190:18;28182:6;28179:30;28176:56;;;28212:18;;:::i;:::-;28241:97;28331:6;28291:38;28323:4;28317:11;28291:38;:::i;:::-;28285:4;28241:97;:::i;:::-;28393:4;;28457:2;28446:14;;28474:1;28469:663;;;;29176:1;29193:6;29190:89;;;-1:-1:-1;29245:19:1;;;29239:26;29190:89;-1:-1:-1;;27994:1:1;27990:11;;;27986:24;27982:29;27972:40;28018:1;28014:11;;;27969:57;29292:81;;28439:944;;28469:663;27263:1;27256:14;;;27300:4;27287:18;;-1:-1:-1;;28505:20:1;;;28623:236;28637:7;28634:1;28631:14;28623:236;;;28726:19;;;28720:26;28705:42;;28818:27;;;;28786:1;28774:14;;;;28653:19;;28623:236;;;28627:3;28887:6;28878:7;28875:19;28872:201;;;28948:19;;;28942:26;-1:-1:-1;;29031:1:1;29027:14;;;29043:3;29023:24;29019:37;29015:42;29000:58;28985:74;;28872:201;-1:-1:-1;;;;;29119:1:1;29103:14;;;29099:22;29086:36;;-1:-1:-1;28037:1352:1:o;30161:287::-;30290:3;30328:6;30322:13;30344:66;30403:6;30398:3;30391:4;30383:6;30379:17;30344:66;:::i;:::-;30426:16;;;;;30161:287;-1:-1:-1;;30161:287:1:o

Swarm Source

ipfs://e59ca4c90df539a073812740d04ad4934b6d2b2684f211e11d714ff68ced02e9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.