ETH Price: $3,468.84 (-1.08%)
Gas: 2 Gwei

Token

KUSA (KUSA)
 

Overview

Max Total Supply

100,000,000 KUSA

Holders

149

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,345.552192979951433499 KUSA

Value
$0.00
0x4302C2DFcB7E89883062ddfE29Cb1F3e27fA0F3E
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:
Kusa

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-21
*/

/**
Website: https://www.kusatech.io/
Telegram: https://t.me/KusaPortal
Twitter: https://twitter.com/KusaTech
Docs: https://docs.kusatech.io/
*/
// File: @openzeppelin/[email protected]/utils/math/SafeMath.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 SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @openzeppelin/[email protected]/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: @openzeppelin/[email protected]/utils/Context.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 Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/[email protected]/access/Ownable.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 Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.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 IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.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 IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.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 ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Kusa.sol

/**
Website: https://www.kusatech.io/
Telegram: https://t.me/KusaPortal
Twitter: https://twitter.com/KusaTech
Docs: https://docs.kusatech.io/
*/

pragma solidity ^0.8.19;








contract Kusa is ERC20, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    IUniswapV2Router02 private _uniswapV2Router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address private _uniswapV2Pair;
    bool public feesDisabled;
    bool private _inSwap;
    uint256 private _swapFee = 35;
    uint256 private _tokensForFee;
    uint256 public feeTokenThreshold;
    uint256 public _maxWalletSize = 1000000 * 10**18;
    address private _feeAddr = 0xb62A384c628E328Fc703E945B3Df992e8BE6ffa2;
    address private _feeAddr2 = 0xdB60Db7be2bF1726DCD1bc2e94F5fa4F786B0d56;
    mapping(address => bool) private _excludedLimits;

    constructor() payable ERC20("KUSA", "KUSA") {
        uint256 totalSupply = 100000000000000000000000000;
        uint256 totalLiquidity = (totalSupply * 80) / 100; // 80%
        feeTokenThreshold = 10000 * 10**18;
        // exclution from fees and limits
        _excludedLimits[owner()] = true;
        _excludedLimits[address(this)] = true;
        _excludedLimits[address(0xdead)] = true;
        _excludedLimits[_feeAddr] = true;
        _excludedLimits[_feeAddr2] = true;

        // mint lp tokens to the contract and remaning to deployer
        _mint(address(this), totalLiquidity);
        _mint(msg.sender, totalSupply.sub(totalLiquidity));
    }

    function excludeUsersFromFees(address _address, bool _state)
        public
        onlyOwner
    {
        _excludedLimits[_address] = _state;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _excludedLimits[accounts[i]] = excluded;
        }
    }

    function transferMany(
        address[] calldata accounts,
        uint256[] calldata amounts
    ) external {
        if (accounts.length != amounts.length) revert();
        uint256 len = accounts.length;
        for (uint256 i = 0; i < len; ) {
            super._transfer(msg.sender, accounts[i], amounts[i]);
            unchecked {
                ++i;
            }
        }
    }

    function setFees(uint256 _fee) public onlyOwner {
        require(_fee >= 0 && _fee <= 5, "Fee cannot exceed 5 percent");
        _swapFee = _fee;
    }

    function createLpool() external onlyOwner {
        _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        _addLiquidity(balanceOf(address(this)), address(this).balance);
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(
            from != address(0),
            "Transfer from the zero address not allowed."
        );
        require(to != address(0), "Transfer to the zero address not allowed.");

        // no reason to waste gas
        bool isBuy = from == _uniswapV2Pair;
        bool exluded = _excludedLimits[from] || _excludedLimits[to];

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        // if pair has not yet been created
        if (_uniswapV2Pair == address(0)) {
            require(exluded, "Please wait for the LP pair to be created.");
        }

        if (to != _uniswapV2Pair) {
            require(
                balanceOf(to) + amount < _maxWalletSize,
                "TOKEN: Balance exceeds wallet size!"
            );
        }

        if (!feesDisabled) {
            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= feeTokenThreshold;
            if (
                canSwap &&
                !_inSwap &&
                !isBuy &&
                !_excludedLimits[from] &&
                !_excludedLimits[to]
            ) {
                _inSwap = true;
                swapFee();
                _inSwap = false;
            }

            // check if we should be taking the fee
            bool takeFee = !_inSwap;
            if (exluded || (!isBuy && to != _uniswapV2Pair)) takeFee = false;

            if (takeFee) {
                uint256 fees = amount.mul(_swapFee).div(100);
                _tokensForFee = amount.mul(_swapFee).div(100);

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

                amount -= fees;
            }
        }

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

    function _swapTokensForEth(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(_uniswapV2Router), tokenAmount);

        _uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            _feeAddr,
            block.timestamp
        );
    }

    function swapFee() internal {
        uint256 contractBal = balanceOf(address(this));
        if (contractBal == 0 || _tokensForFee == 0) return;
        if (contractBal > feeTokenThreshold) contractBal = feeTokenThreshold;
        _swapTokensForEth(contractBal);
        _tokensForFee = 0;
        uint256 _fee = address(this).balance.mul(50).div(100);
        uint256 _fee2 = address(this).balance.mul(50).div(100);
        payable(_feeAddr).transfer(_fee);
        payable(_feeAddr2).transfer(_fee2);
    }

    function disableFees() external onlyOwner {
        feesDisabled = true;
    }

    function updateFeeTokenThreshold(uint256 newThreshold) external onlyOwner {
        require(
            newThreshold >= (totalSupply() * 1) / 100000,
            "Swap threshold cannot be lower than 0.001% total supply."
        );
        require(
            newThreshold <= (totalSupply() * 5) / 1000,
            "Swap threshold cannot be higher than 0.5% total supply."
        );
        feeTokenThreshold = newThreshold;
    }

   
    // transfers any stuck eth from contract to feeAddr
    function transferStuckETH() external {
        payable(_feeAddr).transfer(address(this).balance);
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createLpool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"excludeUsersFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeTokenThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","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":[{"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":"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":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"updateFeeTokenThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600780546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d17909155602360095569d3c21bcecceda1000000600c55600d8054821673b62a384c628e328fc703e945b3df992e8be6ffa2179055600e805490911673db60db7be2bf1726dcd1bc2e94f5fa4f786b0d5617905560046080818152634b55534160e01b60a081905261010060405260c092835260e052906003620000a98382620003c9565b506004620000b88282620003c9565b505050620000d5620000cf620001ed60201b60201c565b620001f1565b60016006556a52b7d2dcc80cd2e400000060006064620000f7836050620004ab565b620001039190620004c5565b69021e19e0c9bab2400000600b5590506001600f60006200012c6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530808252600f9094528281208054861660019081179091557f99629f56119585bf27511b6b7d295dffb54757453fcc3dabcf51d92028301f108054871682179055600d54831682528382208054871682179055600e54909216815291909120805490931617909155620001ce908262000243565b620001e533620001df848462000309565b62000243565b505062000514565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200029e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002b29190620004e8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000620003178284620004fe565b90505b92915050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035057607f821691505b6020821081036200037157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032057600081815260208120601f850160051c81016020861015620003a05750805b601f850160051c820191505b81811015620003c157828155600101620003ac565b505050505050565b81516001600160401b03811115620003e557620003e562000325565b620003fd81620003f684546200033b565b8462000377565b602080601f8311600181146200043557600084156200041c5750858301515b600019600386901b1c1916600185901b178555620003c1565b600085815260208120601f198616915b82811015620004665788860151825594840194600190910190840162000445565b5085821015620004855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200031a576200031a62000495565b600082620004e357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200031a576200031a62000495565b818103818111156200031a576200031a62000495565b611acf80620005246000396000f3fe6080604052600436106101855760003560e01c8063715018a6116100d1578063b7fc66121161008a578063dd62ed3e11610064578063dd62ed3e1461043d578063ea1644d51461045d578063f2fde38b1461047d578063f442d3fb1461049d57600080fd5b8063b7fc6612146103e8578063c492f04614610408578063ce404b231461042857600080fd5b8063715018a6146103405780638da5cb5b146103555780638f9a55c01461037d57806395d89b4114610393578063a457c2d7146103a8578063a9059cbb146103c857600080fd5b8063313ce5671161013e57806351b08c271161011857806351b08c27146102b457806365cffb1e146102c957806368e76d9d146102ea57806370a082311461030a57600080fd5b8063313ce5671461025857806339509351146102745780633d18678e1461029457600080fd5b806306fdde0314610191578063095ea7b3146101bc57806318160ddd146101ec5780631fac6a3b1461020b5780631ffc29981461022257806323b872dd1461023857600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66104bd565b6040516101b3919061166a565b60405180910390f35b3480156101c857600080fd5b506101dc6101d73660046116cd565b61054f565b60405190151581526020016101b3565b3480156101f857600080fd5b506002545b6040519081526020016101b3565b34801561021757600080fd5b50610220610569565b005b34801561022e57600080fd5b506101fd600b5481565b34801561024457600080fd5b506101dc6102533660046116f9565b6105a5565b34801561026457600080fd5b50604051601281526020016101b3565b34801561028057600080fd5b506101dc61028f3660046116cd565b6105c9565b3480156102a057600080fd5b506102206102af36600461173a565b6105eb565b3480156102c057600080fd5b5061022061064e565b3480156102d557600080fd5b506008546101dc90600160a01b900460ff1681565b3480156102f657600080fd5b50610220610305366004611768565b610800565b34801561031657600080fd5b506101fd61032536600461179d565b6001600160a01b031660009081526020819052604090205490565b34801561034c57600080fd5b50610220610833565b34801561036157600080fd5b506005546040516001600160a01b0390911681526020016101b3565b34801561038957600080fd5b506101fd600c5481565b34801561039f57600080fd5b506101a6610845565b3480156103b457600080fd5b506101dc6103c33660046116cd565b610854565b3480156103d457600080fd5b506101dc6103e33660046116cd565b6108cf565b3480156103f457600080fd5b50610220610403366004611806565b6108dd565b34801561041457600080fd5b50610220610423366004611872565b61094e565b34801561043457600080fd5b506102206109cd565b34801561044957600080fd5b506101fd6104583660046118c6565b6109ea565b34801561046957600080fd5b5061022061047836600461173a565b610a15565b34801561048957600080fd5b5061022061049836600461179d565b610a22565b3480156104a957600080fd5b506102206104b836600461173a565b610a98565b6060600380546104cc906118ff565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906118ff565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b60003361055d818585610bd2565b60019150505b92915050565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156105a2573d6000803e3d6000fd5b50565b6000336105b3858285610cf6565b6105be858585610d6a565b506001949350505050565b60003361055d8185856105dc83836109ea565b6105e6919061194f565b610bd2565b6105f361111e565b60058111156106495760405162461bcd60e51b815260206004820152601b60248201527f4665652063616e6e6f742065786365656420352070657263656e74000000000060448201526064015b60405180910390fd5b600955565b61065661111e565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106cd9190611962565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561072f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107539190611962565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156107a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c49190611962565b600880546001600160a01b0319166001600160a01b0392909216919091179055306000908152602081905260409020546107fe9047611178565b565b61080861111e565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b61083b61111e565b6107fe6000611225565b6060600480546104cc906118ff565b6000338161086282866109ea565b9050838110156108c25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610640565b6105be8286868403610bd2565b60003361055d818585610d6a565b8281146108e957600080fd5b8260005b818110156109465761093e3387878481811061090b5761090b61197f565b9050602002016020810190610920919061179d565b8686858181106109325761093261197f565b90506020020135611277565b6001016108ed565b505050505050565b61095661111e565b60005b828110156109c75781600f60008686858181106109785761097861197f565b905060200201602081019061098d919061179d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109bf81611995565b915050610959565b50505050565b6109d561111e565b6008805460ff60a01b1916600160a01b179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a1d61111e565b600c55565b610a2a61111e565b6001600160a01b038116610a8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610640565b6105a281611225565b610aa061111e565b620186a0610aad60025490565b610ab89060016119ae565b610ac291906119c5565b811015610b375760405162461bcd60e51b815260206004820152603860248201527f53776170207468726573686f6c642063616e6e6f74206265206c6f776572207460448201527f68616e20302e3030312520746f74616c20737570706c792e00000000000000006064820152608401610640565b6103e8610b4360025490565b610b4e9060056119ae565b610b5891906119c5565b811115610bcd5760405162461bcd60e51b815260206004820152603760248201527f53776170207468726573686f6c642063616e6e6f74206265206869676865722060448201527f7468616e20302e352520746f74616c20737570706c792e0000000000000000006064820152608401610640565b600b55565b6001600160a01b038316610c345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610640565b6001600160a01b038216610c955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610640565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d0284846109ea565b905060001981146109c75781811015610d5d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610640565b6109c78484848403610bd2565b6001600160a01b038316610dd45760405162461bcd60e51b815260206004820152602b60248201527f5472616e736665722066726f6d20746865207a65726f2061646472657373206e60448201526a37ba1030b63637bbb2b21760a91b6064820152608401610640565b6001600160a01b038216610e3c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220746f20746865207a65726f2061646472657373206e6f746044820152681030b63637bbb2b21760b91b6064820152608401610640565b6008546001600160a01b038481166000818152600f60205260408120549290931614919060ff1680610e8657506001600160a01b0384166000908152600f602052604090205460ff165b905082600003610ea357610e9c85856000611277565b5050505050565b6008546001600160a01b0316610f135780610f135760405162461bcd60e51b815260206004820152602a60248201527f506c65617365207761697420666f7220746865204c50207061697220746f2062604482015269329031b932b0ba32b21760b11b6064820152608401610640565b6008546001600160a01b03858116911614610fae57600c5483610f4b866001600160a01b031660009081526020819052604090205490565b610f55919061194f565b10610fae5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610640565b600854600160a01b900460ff166111135730600090815260208190526040902054600b5481108015908190610fed5750600854600160a81b900460ff16155b8015610ff7575083155b801561101c57506001600160a01b0387166000908152600f602052604090205460ff16155b801561104157506001600160a01b0386166000908152600f602052604090205460ff16155b1561106f576008805460ff60a81b1916600160a81b17905561106161141b565b6008805460ff60a81b191690555b600854600160a81b900460ff161583806110a05750841580156110a057506008546001600160a01b03888116911614155b156110a9575060005b801561110f5760006110d160646110cb6009548a6114f990919063ffffffff16565b9061150c565b90506110ed60646110cb6009548a6114f990919063ffffffff16565b600a55801561110157611101893083611277565b61110b81886119e7565b9650505b5050505b610e9c858585611277565b6005546001600160a01b031633146107fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610640565b6007546111909030906001600160a01b031684610bd2565b600754600d5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611200573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e9c91906119fa565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166112db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610640565b6001600160a01b03821661133d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610640565b6001600160a01b038316600090815260208190526040902054818110156113b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610640565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109c7565b306000908152602081905260409020548015806114385750600a54155b156114405750565b600b5481111561144f5750600b545b61145881611518565b6000600a81905561146f60646110cb4760326114f9565b9050600061148360646110cb4760326114f9565b600d546040519192506001600160a01b03169083156108fc029084906000818181858888f193505050501580156114be573d6000803e3d6000fd5b50600e546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156109c7573d6000803e3d6000fd5b600061150582846119ae565b9392505050565b600061150582846119c5565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061154d5761154d61197f565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ca9190611962565b816001815181106115dd576115dd61197f565b6001600160a01b0392831660209182029290920101526007546116039130911684610bd2565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061163c908590600090869030904290600401611a28565b600060405180830381600087803b15801561165657600080fd5b505af1158015610946573d6000803e3d6000fd5b600060208083528351808285015260005b818110156116975785810183015185820160400152820161167b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105a257600080fd5b600080604083850312156116e057600080fd5b82356116eb816116b8565b946020939093013593505050565b60008060006060848603121561170e57600080fd5b8335611719816116b8565b92506020840135611729816116b8565b929592945050506040919091013590565b60006020828403121561174c57600080fd5b5035919050565b8035801515811461176357600080fd5b919050565b6000806040838503121561177b57600080fd5b8235611786816116b8565b915061179460208401611753565b90509250929050565b6000602082840312156117af57600080fd5b8135611505816116b8565b60008083601f8401126117cc57600080fd5b50813567ffffffffffffffff8111156117e457600080fd5b6020830191508360208260051b85010111156117ff57600080fd5b9250929050565b6000806000806040858703121561181c57600080fd5b843567ffffffffffffffff8082111561183457600080fd5b611840888389016117ba565b9096509450602087013591508082111561185957600080fd5b50611866878288016117ba565b95989497509550505050565b60008060006040848603121561188757600080fd5b833567ffffffffffffffff81111561189e57600080fd5b6118aa868287016117ba565b90945092506118bd905060208501611753565b90509250925092565b600080604083850312156118d957600080fd5b82356118e4816116b8565b915060208301356118f4816116b8565b809150509250929050565b600181811c9082168061191357607f821691505b60208210810361193357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056357610563611939565b60006020828403121561197457600080fd5b8151611505816116b8565b634e487b7160e01b600052603260045260246000fd5b6000600182016119a7576119a7611939565b5060010190565b808202811582820484141761056357610563611939565b6000826119e257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561056357610563611939565b600080600060608486031215611a0f57600080fd5b8351925060208401519150604084015190509250925092565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a785784516001600160a01b031683529383019391830191600101611a53565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201537ec98a468eb533a9882bb39ed97d139dbc6d6db7dde5797870710d673588564736f6c63430008130033

Deployed Bytecode

0x6080604052600436106101855760003560e01c8063715018a6116100d1578063b7fc66121161008a578063dd62ed3e11610064578063dd62ed3e1461043d578063ea1644d51461045d578063f2fde38b1461047d578063f442d3fb1461049d57600080fd5b8063b7fc6612146103e8578063c492f04614610408578063ce404b231461042857600080fd5b8063715018a6146103405780638da5cb5b146103555780638f9a55c01461037d57806395d89b4114610393578063a457c2d7146103a8578063a9059cbb146103c857600080fd5b8063313ce5671161013e57806351b08c271161011857806351b08c27146102b457806365cffb1e146102c957806368e76d9d146102ea57806370a082311461030a57600080fd5b8063313ce5671461025857806339509351146102745780633d18678e1461029457600080fd5b806306fdde0314610191578063095ea7b3146101bc57806318160ddd146101ec5780631fac6a3b1461020b5780631ffc29981461022257806323b872dd1461023857600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66104bd565b6040516101b3919061166a565b60405180910390f35b3480156101c857600080fd5b506101dc6101d73660046116cd565b61054f565b60405190151581526020016101b3565b3480156101f857600080fd5b506002545b6040519081526020016101b3565b34801561021757600080fd5b50610220610569565b005b34801561022e57600080fd5b506101fd600b5481565b34801561024457600080fd5b506101dc6102533660046116f9565b6105a5565b34801561026457600080fd5b50604051601281526020016101b3565b34801561028057600080fd5b506101dc61028f3660046116cd565b6105c9565b3480156102a057600080fd5b506102206102af36600461173a565b6105eb565b3480156102c057600080fd5b5061022061064e565b3480156102d557600080fd5b506008546101dc90600160a01b900460ff1681565b3480156102f657600080fd5b50610220610305366004611768565b610800565b34801561031657600080fd5b506101fd61032536600461179d565b6001600160a01b031660009081526020819052604090205490565b34801561034c57600080fd5b50610220610833565b34801561036157600080fd5b506005546040516001600160a01b0390911681526020016101b3565b34801561038957600080fd5b506101fd600c5481565b34801561039f57600080fd5b506101a6610845565b3480156103b457600080fd5b506101dc6103c33660046116cd565b610854565b3480156103d457600080fd5b506101dc6103e33660046116cd565b6108cf565b3480156103f457600080fd5b50610220610403366004611806565b6108dd565b34801561041457600080fd5b50610220610423366004611872565b61094e565b34801561043457600080fd5b506102206109cd565b34801561044957600080fd5b506101fd6104583660046118c6565b6109ea565b34801561046957600080fd5b5061022061047836600461173a565b610a15565b34801561048957600080fd5b5061022061049836600461179d565b610a22565b3480156104a957600080fd5b506102206104b836600461173a565b610a98565b6060600380546104cc906118ff565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906118ff565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b60003361055d818585610bd2565b60019150505b92915050565b600d546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156105a2573d6000803e3d6000fd5b50565b6000336105b3858285610cf6565b6105be858585610d6a565b506001949350505050565b60003361055d8185856105dc83836109ea565b6105e6919061194f565b610bd2565b6105f361111e565b60058111156106495760405162461bcd60e51b815260206004820152601b60248201527f4665652063616e6e6f742065786365656420352070657263656e74000000000060448201526064015b60405180910390fd5b600955565b61065661111e565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106cd9190611962565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561072f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107539190611962565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156107a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c49190611962565b600880546001600160a01b0319166001600160a01b0392909216919091179055306000908152602081905260409020546107fe9047611178565b565b61080861111e565b6001600160a01b03919091166000908152600f60205260409020805460ff1916911515919091179055565b61083b61111e565b6107fe6000611225565b6060600480546104cc906118ff565b6000338161086282866109ea565b9050838110156108c25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610640565b6105be8286868403610bd2565b60003361055d818585610d6a565b8281146108e957600080fd5b8260005b818110156109465761093e3387878481811061090b5761090b61197f565b9050602002016020810190610920919061179d565b8686858181106109325761093261197f565b90506020020135611277565b6001016108ed565b505050505050565b61095661111e565b60005b828110156109c75781600f60008686858181106109785761097861197f565b905060200201602081019061098d919061179d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806109bf81611995565b915050610959565b50505050565b6109d561111e565b6008805460ff60a01b1916600160a01b179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a1d61111e565b600c55565b610a2a61111e565b6001600160a01b038116610a8f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610640565b6105a281611225565b610aa061111e565b620186a0610aad60025490565b610ab89060016119ae565b610ac291906119c5565b811015610b375760405162461bcd60e51b815260206004820152603860248201527f53776170207468726573686f6c642063616e6e6f74206265206c6f776572207460448201527f68616e20302e3030312520746f74616c20737570706c792e00000000000000006064820152608401610640565b6103e8610b4360025490565b610b4e9060056119ae565b610b5891906119c5565b811115610bcd5760405162461bcd60e51b815260206004820152603760248201527f53776170207468726573686f6c642063616e6e6f74206265206869676865722060448201527f7468616e20302e352520746f74616c20737570706c792e0000000000000000006064820152608401610640565b600b55565b6001600160a01b038316610c345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610640565b6001600160a01b038216610c955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610640565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d0284846109ea565b905060001981146109c75781811015610d5d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610640565b6109c78484848403610bd2565b6001600160a01b038316610dd45760405162461bcd60e51b815260206004820152602b60248201527f5472616e736665722066726f6d20746865207a65726f2061646472657373206e60448201526a37ba1030b63637bbb2b21760a91b6064820152608401610640565b6001600160a01b038216610e3c5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220746f20746865207a65726f2061646472657373206e6f746044820152681030b63637bbb2b21760b91b6064820152608401610640565b6008546001600160a01b038481166000818152600f60205260408120549290931614919060ff1680610e8657506001600160a01b0384166000908152600f602052604090205460ff165b905082600003610ea357610e9c85856000611277565b5050505050565b6008546001600160a01b0316610f135780610f135760405162461bcd60e51b815260206004820152602a60248201527f506c65617365207761697420666f7220746865204c50207061697220746f2062604482015269329031b932b0ba32b21760b11b6064820152608401610640565b6008546001600160a01b03858116911614610fae57600c5483610f4b866001600160a01b031660009081526020819052604090205490565b610f55919061194f565b10610fae5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610640565b600854600160a01b900460ff166111135730600090815260208190526040902054600b5481108015908190610fed5750600854600160a81b900460ff16155b8015610ff7575083155b801561101c57506001600160a01b0387166000908152600f602052604090205460ff16155b801561104157506001600160a01b0386166000908152600f602052604090205460ff16155b1561106f576008805460ff60a81b1916600160a81b17905561106161141b565b6008805460ff60a81b191690555b600854600160a81b900460ff161583806110a05750841580156110a057506008546001600160a01b03888116911614155b156110a9575060005b801561110f5760006110d160646110cb6009548a6114f990919063ffffffff16565b9061150c565b90506110ed60646110cb6009548a6114f990919063ffffffff16565b600a55801561110157611101893083611277565b61110b81886119e7565b9650505b5050505b610e9c858585611277565b6005546001600160a01b031633146107fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610640565b6007546111909030906001600160a01b031684610bd2565b600754600d5460405163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0391821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af1158015611200573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e9c91906119fa565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166112db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610640565b6001600160a01b03821661133d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610640565b6001600160a01b038316600090815260208190526040902054818110156113b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610640565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109c7565b306000908152602081905260409020548015806114385750600a54155b156114405750565b600b5481111561144f5750600b545b61145881611518565b6000600a81905561146f60646110cb4760326114f9565b9050600061148360646110cb4760326114f9565b600d546040519192506001600160a01b03169083156108fc029084906000818181858888f193505050501580156114be573d6000803e3d6000fd5b50600e546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156109c7573d6000803e3d6000fd5b600061150582846119ae565b9392505050565b600061150582846119c5565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061154d5761154d61197f565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156115a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115ca9190611962565b816001815181106115dd576115dd61197f565b6001600160a01b0392831660209182029290920101526007546116039130911684610bd2565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac9479061163c908590600090869030904290600401611a28565b600060405180830381600087803b15801561165657600080fd5b505af1158015610946573d6000803e3d6000fd5b600060208083528351808285015260005b818110156116975785810183015185820160400152820161167b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105a257600080fd5b600080604083850312156116e057600080fd5b82356116eb816116b8565b946020939093013593505050565b60008060006060848603121561170e57600080fd5b8335611719816116b8565b92506020840135611729816116b8565b929592945050506040919091013590565b60006020828403121561174c57600080fd5b5035919050565b8035801515811461176357600080fd5b919050565b6000806040838503121561177b57600080fd5b8235611786816116b8565b915061179460208401611753565b90509250929050565b6000602082840312156117af57600080fd5b8135611505816116b8565b60008083601f8401126117cc57600080fd5b50813567ffffffffffffffff8111156117e457600080fd5b6020830191508360208260051b85010111156117ff57600080fd5b9250929050565b6000806000806040858703121561181c57600080fd5b843567ffffffffffffffff8082111561183457600080fd5b611840888389016117ba565b9096509450602087013591508082111561185957600080fd5b50611866878288016117ba565b95989497509550505050565b60008060006040848603121561188757600080fd5b833567ffffffffffffffff81111561189e57600080fd5b6118aa868287016117ba565b90945092506118bd905060208501611753565b90509250925092565b600080604083850312156118d957600080fd5b82356118e4816116b8565b915060208301356118f4816116b8565b809150509250929050565b600181811c9082168061191357607f821691505b60208210810361193357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561056357610563611939565b60006020828403121561197457600080fd5b8151611505816116b8565b634e487b7160e01b600052603260045260246000fd5b6000600182016119a7576119a7611939565b5060010190565b808202811582820484141761056357610563611939565b6000826119e257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561056357610563611939565b600080600060608486031215611a0f57600080fd5b8351925060208401519150604084015190509250925092565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a785784516001600160a01b031683529383019391830191600101611a53565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201537ec98a468eb533a9882bb39ed97d139dbc6d6db7dde5797870710d673588564736f6c63430008130033

Deployed Bytecode Sourcemap

46371:6861:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27873:201;;;;;;;;;;-1:-1:-1;27873:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;27873:201:0;1023:187:1;26642:108:0;;;;;;;;;;-1:-1:-1;26730:12:0;;26642:108;;;1361:25:1;;;1349:2;1334:18;26642:108:0;1215:177:1;53087:105:0;;;;;;;;;;;;;:::i;:::-;;46751:32;;;;;;;;;;;;;;;;28654:261;;;;;;;;;;-1:-1:-1;28654:261:0;;;;;:::i;:::-;;:::i;26484:93::-;;;;;;;;;;-1:-1:-1;26484:93:0;;26567:2;2000:36:1;;1988:2;1973:18;26484:93:0;1858:184:1;29324:238:0;;;;;;;;;;-1:-1:-1;29324:238:0;;;;;:::i;:::-;;:::i;48571:155::-;;;;;;;;;;-1:-1:-1;48571:155:0;;;;;:::i;:::-;;:::i;48734:263::-;;;;;;;;;;;;;:::i;46621:24::-;;;;;;;;;;-1:-1:-1;46621:24:0;;;;-1:-1:-1;;;46621:24:0;;;;;;47735:154;;;;;;;;;;-1:-1:-1;47735:154:0;;;;;:::i;:::-;;:::i;26813:127::-;;;;;;;;;;-1:-1:-1;26813:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;26914:18:0;26887:7;26914:18;;;;;;;;;;;;26813:127;18950:103;;;;;;;;;;;;;:::i;18309:87::-;;;;;;;;;;-1:-1:-1;18382:6:0;;18309:87;;-1:-1:-1;;;;;18382:6:0;;;3115:51:1;;3103:2;3088:18;18309:87:0;2969:203:1;46790:48:0;;;;;;;;;;;;;;;;25732:104;;;;;;;;;;;;;:::i;30065:436::-;;;;;;;;;;-1:-1:-1;30065:436:0;;;;;:::i;:::-;;:::i;27146:193::-;;;;;;;;;;-1:-1:-1;27146:193:0;;;;;:::i;:::-;;:::i;48162:401::-;;;;;;;;;;-1:-1:-1;48162:401:0;;;;;:::i;:::-;;:::i;47897:257::-;;;;;;;;;;-1:-1:-1;47897:257:0;;;;;:::i;:::-;;:::i;52485:80::-;;;;;;;;;;;;;:::i;27402:151::-;;;;;;;;;;-1:-1:-1;27402:151:0;;;;;:::i;:::-;;:::i;49005:115::-;;;;;;;;;;-1:-1:-1;49005:115:0;;;;;:::i;:::-;;:::i;19208:201::-;;;;;;;;;;-1:-1:-1;19208:201:0;;;;;:::i;:::-;;:::i;52573:444::-;;;;;;;;;;-1:-1:-1;52573:444:0;;;;;:::i;:::-;;:::i;25513:100::-;25567:13;25600:5;25593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25513:100;:::o;27873:201::-;27956:4;16934:10;28012:32;16934:10;28028:7;28037:6;28012:8;:32::i;:::-;28062:4;28055:11;;;27873:201;;;;;:::o;53087:105::-;53143:8;;53135:49;;-1:-1:-1;;;;;53143:8:0;;;;53162:21;53135:49;;;;;53143:8;53135:49;53143:8;53135:49;53162:21;53143:8;53135:49;;;;;;;;;;;;;;;;;;;;;53087:105::o;28654:261::-;28751:4;16934:10;28809:38;28825:4;16934:10;28840:6;28809:15;:38::i;:::-;28858:27;28868:4;28874:2;28878:6;28858:9;:27::i;:::-;-1:-1:-1;28903:4:0;;28654:261;-1:-1:-1;;;;28654:261:0:o;29324:238::-;29412:4;16934:10;29468:64;16934:10;29484:7;29521:10;29493:25;16934:10;29484:7;29493:9;:25::i;:::-;:38;;;;:::i;:::-;29468:8;:64::i;48571:155::-;18195:13;:11;:13::i;:::-;48659:1:::1;48651:4;:9;;48630:62;;;::::0;-1:-1:-1;;;48630:62:0;;6079:2:1;48630:62:0::1;::::0;::::1;6061:21:1::0;6118:2;6098:18;;;6091:30;6157:29;6137:18;;;6130:57;6204:18;;48630:62:0::1;;;;;;;;;48703:8;:15:::0;48571:155::o;48734:263::-;18195:13;:11;:13::i;:::-;48822:16:::1;;;;;;;;;-1:-1:-1::0;;;;;48822:16:0::1;-1:-1:-1::0;;;;;48822:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48804:70:0::1;;48883:4;48890:16;;;;;;;;;-1:-1:-1::0;;;;;48890:16:0::1;-1:-1:-1::0;;;;;48890:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48804:110;::::0;-1:-1:-1;;;;;;48804:110:0::1;::::0;;;;;;-1:-1:-1;;;;;6719:15:1;;;48804:110:0::1;::::0;::::1;6701:34:1::0;6771:15;;6751:18;;;6744:43;6636:18;;48804:110:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48787:14;:127:::0;;-1:-1:-1;;;;;;48787:127:0::1;-1:-1:-1::0;;;;;48787:127:0;;;::::1;::::0;;;::::1;::::0;;48959:4:::1;-1:-1:-1::0;26914:18:0;;;;;;;;;;;48927:62:::1;::::0;48967:21:::1;48927:13;:62::i;:::-;48734:263::o:0;47735:154::-;18195:13;:11;:13::i;:::-;-1:-1:-1;;;;;47847:25:0;;;::::1;;::::0;;;:15:::1;:25;::::0;;;;:34;;-1:-1:-1;;47847:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47735:154::o;18950:103::-;18195:13;:11;:13::i;:::-;19015:30:::1;19042:1;19015:18;:30::i;25732:104::-:0;25788:13;25821:7;25814:14;;;;;:::i;30065:436::-;30158:4;16934:10;30158:4;30241:25;16934:10;30258:7;30241:9;:25::i;:::-;30214:52;;30305:15;30285:16;:35;;30277:85;;;;-1:-1:-1;;;30277:85:0;;7000:2:1;30277:85:0;;;6982:21:1;7039:2;7019:18;;;7012:30;7078:34;7058:18;;;7051:62;-1:-1:-1;;;7129:18:1;;;7122:35;7174:19;;30277:85:0;6798:401:1;30277:85:0;30398:60;30407:5;30414:7;30442:15;30423:16;:34;30398:8;:60::i;27146:193::-;27225:4;16934:10;27281:28;16934:10;27298:2;27302:6;27281:9;:28::i;48162:401::-;48290:33;;;48286:47;;48325:8;;;48286:47;48358:8;48344:11;48384:172;48408:3;48404:1;:7;48384:172;;;48430:52;48446:10;48458:8;;48467:1;48458:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;48471:7;;48479:1;48471:10;;;;;;;:::i;:::-;;;;;;;48430:15;:52::i;:::-;48526:3;;48384:172;;;;48275:288;48162:401;;;;:::o;47897:257::-;18195:13;:11;:13::i;:::-;48040:9:::1;48035:112;48055:19:::0;;::::1;48035:112;;;48127:8;48096:15;:28;48112:8;;48121:1;48112:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;48096:28:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;48096:28:0;:39;;-1:-1:-1;;48096:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48076:3;::::1;::::0;::::1;:::i;:::-;;;;48035:112;;;;47897:257:::0;;;:::o;52485:80::-;18195:13;:11;:13::i;:::-;52538:12:::1;:19:::0;;-1:-1:-1;;;;52538:19:0::1;-1:-1:-1::0;;;52538:19:0::1;::::0;;52485:80::o;27402:151::-;-1:-1:-1;;;;;27518:18:0;;;27491:7;27518:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27402:151::o;49005:115::-;18195:13;:11;:13::i;:::-;49082:14:::1;:30:::0;49005:115::o;19208:201::-;18195:13;:11;:13::i;:::-;-1:-1:-1;;;;;19297:22:0;::::1;19289:73;;;::::0;-1:-1:-1;;;19289:73:0;;7678:2:1;19289:73:0::1;::::0;::::1;7660:21:1::0;7717:2;7697:18;;;7690:30;7756:34;7736:18;;;7729:62;-1:-1:-1;;;7807:18:1;;;7800:36;7853:19;;19289:73:0::1;7476:402:1::0;19289:73:0::1;19373:28;19392:8;19373:18;:28::i;52573:444::-:0;18195:13;:11;:13::i;:::-;52718:6:::1;52697:13;26730:12:::0;;;26642:108;52697:13:::1;:17;::::0;52713:1:::1;52697:17;:::i;:::-;52696:28;;;;:::i;:::-;52680:12;:44;;52658:150;;;::::0;-1:-1:-1;;;52658:150:0;;8480:2:1;52658:150:0::1;::::0;::::1;8462:21:1::0;8519:2;8499:18;;;8492:30;8558:34;8538:18;;;8531:62;8629:26;8609:18;;;8602:54;8673:19;;52658:150:0::1;8278:420:1::0;52658:150:0::1;52879:4;52858:13;26730:12:::0;;;26642:108;52858:13:::1;:17;::::0;52874:1:::1;52858:17;:::i;:::-;52857:26;;;;:::i;:::-;52841:12;:42;;52819:147;;;::::0;-1:-1:-1;;;52819:147:0;;8905:2:1;52819:147:0::1;::::0;::::1;8887:21:1::0;8944:2;8924:18;;;8917:30;8983:34;8963:18;;;8956:62;9054:25;9034:18;;;9027:53;9097:19;;52819:147:0::1;8703:419:1::0;52819:147:0::1;52977:17;:32:::0;52573:444::o;34058:346::-;-1:-1:-1;;;;;34160:19:0;;34152:68;;;;-1:-1:-1;;;34152:68:0;;9329:2:1;34152:68:0;;;9311:21:1;9368:2;9348:18;;;9341:30;9407:34;9387:18;;;9380:62;-1:-1:-1;;;9458:18:1;;;9451:34;9502:19;;34152:68:0;9127:400:1;34152:68:0;-1:-1:-1;;;;;34239:21:0;;34231:68;;;;-1:-1:-1;;;34231:68:0;;9734:2:1;34231:68:0;;;9716:21:1;9773:2;9753:18;;;9746:30;9812:34;9792:18;;;9785:62;-1:-1:-1;;;9863:18:1;;;9856:32;9905:19;;34231:68:0;9532:398:1;34231:68:0;-1:-1:-1;;;;;34312:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34364:32;;1361:25:1;;;34364:32:0;;1334:18:1;34364:32:0;;;;;;;34058:346;;;:::o;34695:419::-;34796:24;34823:25;34833:5;34840:7;34823:9;:25::i;:::-;34796:52;;-1:-1:-1;;34863:16:0;:37;34859:248;;34945:6;34925:16;:26;;34917:68;;;;-1:-1:-1;;;34917:68:0;;10137:2:1;34917:68:0;;;10119:21:1;10176:2;10156:18;;;10149:30;10215:31;10195:18;;;10188:59;10264:18;;34917:68:0;9935:353:1;34917:68:0;35029:51;35038:5;35045:7;35073:6;35054:16;:25;35029:8;:51::i;49128:1959::-;-1:-1:-1;;;;;49274:18:0;;49252:111;;;;-1:-1:-1;;;49252:111:0;;10495:2:1;49252:111:0;;;10477:21:1;10534:2;10514:18;;;10507:30;10573:34;10553:18;;;10546:62;-1:-1:-1;;;10624:18:1;;;10617:41;10675:19;;49252:111:0;10293:407:1;49252:111:0;-1:-1:-1;;;;;49382:16:0;;49374:70;;;;-1:-1:-1;;;49374:70:0;;10907:2:1;49374:70:0;;;10889:21:1;10946:2;10926:18;;;10919:30;10985:34;10965:18;;;10958:62;-1:-1:-1;;;11036:18:1;;;11029:39;11085:19;;49374:70:0;10705:405:1;49374:70:0;49513:14;;-1:-1:-1;;;;;49505:22:0;;;49492:10;49553:21;;;:15;:21;;;;;;49513:14;;;;49505:22;;49492:10;49553:21;;;:44;;-1:-1:-1;;;;;;49578:19:0;;;;;;:15;:19;;;;;;;;49553:44;49538:59;;49614:6;49624:1;49614:11;49610:93;;49642:28;49658:4;49664:2;49668:1;49642:15;:28::i;:::-;49685:7;;49128:1959;;;:::o;49610:93::-;49764:14;;-1:-1:-1;;;;;49764:14:0;49760:123;;49817:7;49809:62;;;;-1:-1:-1;;;49809:62:0;;11317:2:1;49809:62:0;;;11299:21:1;11356:2;11336:18;;;11329:30;11395:34;11375:18;;;11368:62;-1:-1:-1;;;11446:18:1;;;11439:40;11496:19;;49809:62:0;11115:406:1;49809:62:0;49905:14;;-1:-1:-1;;;;;49899:20:0;;;49905:14;;49899:20;49895:189;;49987:14;;49978:6;49962:13;49972:2;-1:-1:-1;;;;;26914:18:0;26887:7;26914:18;;;;;;;;;;;;26813:127;49962:13;:22;;;;:::i;:::-;:39;49936:136;;;;-1:-1:-1;;;49936:136:0;;11728:2:1;49936:136:0;;;11710:21:1;11767:2;11747:18;;;11740:30;11806:34;11786:18;;;11779:62;-1:-1:-1;;;11857:18:1;;;11850:33;11900:19;;49936:136:0;11526:399:1;49936:136:0;50101:12;;-1:-1:-1;;;50101:12:0;;;;50096:938;;50179:4;50130:28;26914:18;;;;;;;;;;;50239:17;;50215:41;;;;;;;50293:36;;-1:-1:-1;50322:7:0;;-1:-1:-1;;;50322:7:0;;;;50321:8;50293:36;:63;;;;;50351:5;50350:6;50293:63;:106;;;;-1:-1:-1;;;;;;50378:21:0;;;;;;:15;:21;;;;;;;;50377:22;50293:106;:147;;;;-1:-1:-1;;;;;;50421:19:0;;;;;;:15;:19;;;;;;;;50420:20;50293:147;50271:296;;;50475:7;:14;;-1:-1:-1;;;;50475:14:0;-1:-1:-1;;;50475:14:0;;;50508:9;:7;:9::i;:::-;50536:7;:15;;-1:-1:-1;;;;50536:15:0;;;50271:296;50652:7;;-1:-1:-1;;;50652:7:0;;;;50651:8;50678:7;;:43;;;50691:5;50690:6;:30;;;;-1:-1:-1;50706:14:0;;-1:-1:-1;;;;;50700:20:0;;;50706:14;;50700:20;;50690:30;50674:64;;;-1:-1:-1;50733:5:0;50674:64;50759:7;50755:268;;;50787:12;50802:29;50827:3;50802:20;50813:8;;50802:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;50787:44;;50866:29;50891:3;50866:20;50877:8;;50866:6;:10;;:20;;;;:::i;:29::-;50850:13;:45;50920:8;;50916:56;;50930:42;50946:4;50960;50967;50930:15;:42::i;:::-;50993:14;51003:4;50993:14;;:::i;:::-;;;50768:255;50755:268;50115:919;;;50096:938;51046:33;51062:4;51068:2;51072:6;51046:15;:33::i;18474:132::-;18382:6;;-1:-1:-1;;;;;18382:6:0;16934:10;18538:23;18530:68;;;;-1:-1:-1;;;18530:68:0;;12265:2:1;18530:68:0;;;12247:21:1;;;12284:18;;;12277:30;12343:34;12323:18;;;12316:62;12395:18;;18530:68:0;12063:356:1;51583:367:0;51698:16;;51666:63;;51683:4;;-1:-1:-1;;;;;51698:16:0;51717:11;51666:8;:63::i;:::-;51742:16;;51893:8;;51742:200;;-1:-1:-1;;;51742:200:0;;51815:4;51742:200;;;12765:34:1;12815:18;;;12808:34;;;51742:16:0;12858:18:1;;;12851:34;;;12901:18;;;12894:34;-1:-1:-1;;;;;51893:8:0;;;12944:19:1;;;12937:44;51916:15:0;12997:19:1;;;12990:35;51742:16:0;;;:32;;51782:9;;12699:19:1;;51742:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;19569:191::-;19662:6;;;-1:-1:-1;;;;;19679:17:0;;;-1:-1:-1;;;;;;19679:17:0;;;;;;;19712:40;;19662:6;;;19679:17;19662:6;;19712:40;;19643:16;;19712:40;19632:128;19569:191;:::o;30971:806::-;-1:-1:-1;;;;;31068:18:0;;31060:68;;;;-1:-1:-1;;;31060:68:0;;13549:2:1;31060:68:0;;;13531:21:1;13588:2;13568:18;;;13561:30;13627:34;13607:18;;;13600:62;-1:-1:-1;;;13678:18:1;;;13671:35;13723:19;;31060:68:0;13347:401:1;31060:68:0;-1:-1:-1;;;;;31147:16:0;;31139:64;;;;-1:-1:-1;;;31139:64:0;;13955:2:1;31139:64:0;;;13937:21:1;13994:2;13974:18;;;13967:30;14033:34;14013:18;;;14006:62;-1:-1:-1;;;14084:18:1;;;14077:33;14127:19;;31139:64:0;13753:399:1;31139:64:0;-1:-1:-1;;;;;31289:15:0;;31267:19;31289:15;;;;;;;;;;;31323:21;;;;31315:72;;;;-1:-1:-1;;;31315:72:0;;14359:2:1;31315:72:0;;;14341:21:1;14398:2;14378:18;;;14371:30;14437:34;14417:18;;;14410:62;-1:-1:-1;;;14488:18:1;;;14481:36;14534:19;;31315:72:0;14157:402:1;31315:72:0;-1:-1:-1;;;;;31423:15:0;;;:9;:15;;;;;;;;;;;31441:20;;;31423:38;;31641:13;;;;;;;;;;:23;;;;;;31693:26;;1361:25:1;;;31641:13:0;;31693:26;;1334:18:1;31693:26:0;;;;;;;31732:37;35714:91;51958:519;52037:4;51997:19;26914:18;;;;;;;;;;;52058:16;;;:38;;-1:-1:-1;52078:13:0;;:18;52058:38;52054:51;;;52098:7;51958:519::o;52054:51::-;52133:17;;52119:11;:31;52115:68;;;-1:-1:-1;52166:17:0;;52115:68;52194:30;52212:11;52194:17;:30::i;:::-;52251:1;52235:13;:17;;;52278:38;52312:3;52278:29;:21;52304:2;52278:25;:29::i;:38::-;52263:53;-1:-1:-1;52327:13:0;52343:38;52377:3;52343:29;:21;52369:2;52343:25;:29::i;:38::-;52400:8;;52392:32;;52327:54;;-1:-1:-1;;;;;;52400:8:0;;52392:32;;;;;52419:4;;52400:8;52392:32;52400:8;52392:32;52419:4;52400:8;52392:32;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52443:9:0;;52435:34;;-1:-1:-1;;;;;52443:9:0;;;;52435:34;;;;;52463:5;;52443:9;52435:34;52443:9;52435:34;52463:5;52443:9;52435:34;;;;;;;;;;;;;;;;;;;3771:98;3829:7;3856:5;3860:1;3856;:5;:::i;:::-;3849:12;3771:98;-1:-1:-1;;;3771:98:0:o;4170:::-;4228:7;4255:5;4259:1;4255;:5;:::i;51095:480::-;51187:16;;;51201:1;51187:16;;;;;;;;51163:21;;51187:16;;;;;;;;;;-1:-1:-1;51187:16:0;51163:40;;51232:4;51214;51219:1;51214:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51214:23:0;;;:7;;;;;;;;;;:23;;;;51258:16;;:23;;;-1:-1:-1;;;51258:23:0;;;;:16;;;;;:21;;:23;;;;;51214:7;;51258:23;;;;;:16;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51248:4;51253:1;51248:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51248:33:0;;;:7;;;;;;;;;:33;51326:16;;51294:63;;51311:4;;51326:16;51345:11;51294:8;:63::i;:::-;51370:16;;:197;;-1:-1:-1;;;51370:197:0;;-1:-1:-1;;;;;51370:16:0;;;;:67;;:197;;51452:11;;51370:16;;51494:4;;51521;;51541:15;;51370:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:180::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;-1:-1:-1;2198:23:1;;2047:180;-1:-1:-1;2047:180:1:o;2232:160::-;2297:20;;2353:13;;2346:21;2336:32;;2326:60;;2382:1;2379;2372:12;2326:60;2232:160;;;:::o;2397:315::-;2462:6;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2578:9;2565:23;2597:31;2622:5;2597:31;:::i;:::-;2647:5;-1:-1:-1;2671:35:1;2702:2;2687:18;;2671:35;:::i;:::-;2661:45;;2397:315;;;;;:::o;2717:247::-;2776:6;2829:2;2817:9;2808:7;2804:23;2800:32;2797:52;;;2845:1;2842;2835:12;2797:52;2884:9;2871:23;2903:31;2928:5;2903:31;:::i;3177:367::-;3240:8;3250:6;3304:3;3297:4;3289:6;3285:17;3281:27;3271:55;;3322:1;3319;3312:12;3271:55;-1:-1:-1;3345:20:1;;3388:18;3377:30;;3374:50;;;3420:1;3417;3410:12;3374:50;3457:4;3449:6;3445:17;3433:29;;3517:3;3510:4;3500:6;3497:1;3493:14;3485:6;3481:27;3477:38;3474:47;3471:67;;;3534:1;3531;3524:12;3471:67;3177:367;;;;;:::o;3549:773::-;3671:6;3679;3687;3695;3748:2;3736:9;3727:7;3723:23;3719:32;3716:52;;;3764:1;3761;3754:12;3716:52;3804:9;3791:23;3833:18;3874:2;3866:6;3863:14;3860:34;;;3890:1;3887;3880:12;3860:34;3929:70;3991:7;3982:6;3971:9;3967:22;3929:70;:::i;:::-;4018:8;;-1:-1:-1;3903:96:1;-1:-1:-1;4106:2:1;4091:18;;4078:32;;-1:-1:-1;4122:16:1;;;4119:36;;;4151:1;4148;4141:12;4119:36;;4190:72;4254:7;4243:8;4232:9;4228:24;4190:72;:::i;:::-;3549:773;;;;-1:-1:-1;4281:8:1;-1:-1:-1;;;;3549:773:1:o;4327:505::-;4419:6;4427;4435;4488:2;4476:9;4467:7;4463:23;4459:32;4456:52;;;4504:1;4501;4494:12;4456:52;4544:9;4531:23;4577:18;4569:6;4566:30;4563:50;;;4609:1;4606;4599:12;4563:50;4648:70;4710:7;4701:6;4690:9;4686:22;4648:70;:::i;:::-;4737:8;;-1:-1:-1;4622:96:1;-1:-1:-1;4791:35:1;;-1:-1:-1;4822:2:1;4807:18;;4791:35;:::i;:::-;4781:45;;4327:505;;;;;:::o;4837:388::-;4905:6;4913;4966:2;4954:9;4945:7;4941:23;4937:32;4934:52;;;4982:1;4979;4972:12;4934:52;5021:9;5008:23;5040:31;5065:5;5040:31;:::i;:::-;5090:5;-1:-1:-1;5147:2:1;5132:18;;5119:32;5160:33;5119:32;5160:33;:::i;:::-;5212:7;5202:17;;;4837:388;;;;;:::o;5230:380::-;5309:1;5305:12;;;;5352;;;5373:61;;5427:4;5419:6;5415:17;5405:27;;5373:61;5480:2;5472:6;5469:14;5449:18;5446:38;5443:161;;5526:10;5521:3;5517:20;5514:1;5507:31;5561:4;5558:1;5551:15;5589:4;5586:1;5579:15;5443:161;;5230:380;;;:::o;5615:127::-;5676:10;5671:3;5667:20;5664:1;5657:31;5707:4;5704:1;5697:15;5731:4;5728:1;5721:15;5747:125;5812:9;;;5833:10;;;5830:36;;;5846:18;;:::i;6233:251::-;6303:6;6356:2;6344:9;6335:7;6331:23;6327:32;6324:52;;;6372:1;6369;6362:12;6324:52;6404:9;6398:16;6423:31;6448:5;6423:31;:::i;7204:127::-;7265:10;7260:3;7256:20;7253:1;7246:31;7296:4;7293:1;7286:15;7320:4;7317:1;7310:15;7336:135;7375:3;7396:17;;;7393:43;;7416:18;;:::i;:::-;-1:-1:-1;7463:1:1;7452:13;;7336:135::o;7883:168::-;7956:9;;;7987;;8004:15;;;7998:22;;7984:37;7974:71;;8025:18;;:::i;8056:217::-;8096:1;8122;8112:132;;8166:10;8161:3;8157:20;8154:1;8147:31;8201:4;8198:1;8191:15;8229:4;8226:1;8219:15;8112:132;-1:-1:-1;8258:9:1;;8056:217::o;11930:128::-;11997:9;;;12018:11;;;12015:37;;;12032:18;;:::i;13036:306::-;13124:6;13132;13140;13193:2;13181:9;13172:7;13168:23;13164:32;13161:52;;;13209:1;13206;13199:12;13161:52;13238:9;13232:16;13222:26;;13288:2;13277:9;13273:18;13267:25;13257:35;;13332:2;13321:9;13317:18;13311:25;13301:35;;13036:306;;;;;:::o;14696:980::-;14958:4;15006:3;14995:9;14991:19;15037:6;15026:9;15019:25;15063:2;15101:6;15096:2;15085:9;15081:18;15074:34;15144:3;15139:2;15128:9;15124:18;15117:31;15168:6;15203;15197:13;15234:6;15226;15219:22;15272:3;15261:9;15257:19;15250:26;;15311:2;15303:6;15299:15;15285:29;;15332:1;15342:195;15356:6;15353:1;15350:13;15342:195;;;15421:13;;-1:-1:-1;;;;;15417:39:1;15405:52;;15512:15;;;;15477:12;;;;15453:1;15371:9;15342:195;;;-1:-1:-1;;;;;;;15593:32:1;;;;15588:2;15573:18;;15566:60;-1:-1:-1;;;15657:3:1;15642:19;15635:35;15554:3;14696:980;-1:-1:-1;;;14696:980:1:o

Swarm Source

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