ETH Price: $3,416.02 (-2.41%)
Gas: 9 Gwei

Token

CuriosityAnon (CA)
 

Overview

Max Total Supply

100,000,000,000 CA

Holders

459

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
15,079,923.458266093026760318 CA

Value
$0.00
0x3a3D59b530D90F71c1e3e936a736A9b9f2A6ce92
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:
CuriosityAnon

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-18
*/

// Sources flattened with hardhat v2.19.1 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// https://t.me/curiosityanonerc20

// https://twitter.com/curiosityerc20

// https://www.curiosityanon.com/

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/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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 @openzeppelin/contracts/token/ERC20/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success &&
            (returndata.length == 0 || abi.decode(returndata, (bool))) &&
            Address.isContract(address(token));
    }
}

// File contracts/token/AntiBotHelper.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @notice Anti-Bot Helper
 * Max TX Amount feature
 * Max Wallet Amount feature
 */
abstract contract AntiBotHelper is Ownable {
    /// @dev Minimum value that can be set for the max transaction limit - 0.25%
    uint16 private constant MIN__MAX_TX_LIMIT = 25;
    /// @dev Maximum value that can be set for the max transaction limit - 100%
    uint16 private constant MAX__MAX_TX_LIMIT = 10000;
    /// @dev Minimum value that can be set for the max hold limit - 0.25%
    uint16 private constant MIN__MAX_HOLD_LIMIT = 25;
    /// @dev Maximum value that can be set for the max hold limit - 100%
    uint16 private constant MAX__MAX_HOLD_LIMIT = 10000;

    uint16 internal _maxTxLimit = 200; // default 2%
    uint16 internal _maxHoldLimit = 200; // default 2%

    /// @dev trading enabled flag. default false
    bool internal _tradingEnabled;

    mapping(address => bool) internal _isExcludedFromTxLimit;
    mapping(address => bool) internal _isExcludedFromHoldLimit;

    event ExcludedFromHoldLimit(address account, bool flag);
    event ExcludedFromTxLimit(address account, bool flag);
    event MaxLimitUpdated(uint16 maxHoldLimit, uint16 maxTxLimit);
    event TradingEnabled();

    /// @notice Exclude / Include the multiple accounts from max tx limit
    /// @dev Only callable by owner
    function batchExcludeFromTxLimit(
        address[] calldata accounts,
        bool flag
    ) external onlyOwner {
        uint256 len = accounts.length;
        for (uint256 i; i < len; ) {
            address account = accounts[i];
            _isExcludedFromTxLimit[account] = flag;

            unchecked {
                ++i;
            }

            emit ExcludedFromTxLimit(account, flag);
        }
    }

    /// @notice Exclude / Include the multiple accounts from max wallet limit
    /// @dev Only callable by owner
    function batchExcludeFromHoldLimit(
        address[] calldata accounts,
        bool flag
    ) external onlyOwner {
        uint256 len = accounts.length;
        for (uint256 i; i < len; ) {
            address account = accounts[i];
            _isExcludedFromHoldLimit[account] = flag;

            unchecked {
                ++i;
            }

            emit ExcludedFromHoldLimit(account, flag);
        }
    }

    /// @notice Check if the account is excluded from max hold & wallet limit
    /// @return bool excluded from max hold limit
    /// @return bool excluded from max tx limit
    function isExcludedFromLimit(
        address account
    ) external view returns (bool, bool) {
        return (
            _isExcludedFromHoldLimit[account],
            _isExcludedFromTxLimit[account]
        );
    }

    /// @notice Update max hold limit & max tx limit
    /// @param holdLimit new max hold limit
    /// @param txLimit new max tx limit
    function updateMaxLimit(
        uint16 holdLimit,
        uint16 txLimit
    ) external onlyOwner {
        require(holdLimit >= txLimit, "tx limit exceeds hold limit");
        require(
            _maxHoldLimit <= holdLimit && _maxTxLimit <= txLimit,
            "increase only"
        );
        require(txLimit <= MAX__MAX_TX_LIMIT, "tx limit out of range");
        require(holdLimit <= MAX__MAX_HOLD_LIMIT, "hold limit out of range");

        _maxHoldLimit = holdLimit;
        _maxTxLimit = txLimit;

        emit MaxLimitUpdated(holdLimit, txLimit);
    }

    /// @notice View max hold limit & max tx limit
    /// @return uint16 max hold limit percent
    /// @return uint16 max tx limit percent
    function maxLimit() external view returns (uint16, uint16) {
        return (_maxHoldLimit, _maxTxLimit);
    }

    /// @notice Enable trading
    function enableTrading() external onlyOwner {
        require(!_tradingEnabled, "already enabled");
        _tradingEnabled = true;

        emit TradingEnabled();
    }

    /// @notice Check if the trading is enabled now
    function isTradingEnabled() external view returns (bool) {
        return _tradingEnabled;
    }
}

// File contracts/interfaces/IUniswapAmm.sol

// Original license: SPDX_License_Identifier: MIT

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

pragma solidity ^0.8.4;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(
        uint256 amountIn,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);

    function getAmountsIn(
        uint256 amountOut,
        address[] calldata path
    ) external view returns (uint256[] memory amounts);
}

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

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

// File contracts/token/TaxHelper.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @notice Tax Helper
 * Marketing fee
 * Burn fee
 * Fee in buy/sell/transfer separately
 */
abstract contract TaxHelper is Ownable {
    /// @dev Max buy tax after token launched. 10%
    uint16 private constant MAX_BUY_TAX_AFTER = 1000;
    /// @dev Max sell tax after token launched. 10%
    uint16 private constant MAX_SELL_TAX_AFTER = 1000;
    /// @dev Project tax is set on top buy / sell tax as a service fee. 15%
    uint16 internal constant PROJECT_TAX = 1500;
    /// @dev Project tax is removed after 15 days
    uint256 internal constant PROJECT_TAX_PERIOD = 15 days;
    /// @dev Project tax receive wallet
    address payable internal constant PROJECT_WALLET =
        payable(0xcd443a0950f1842c7BE8A6c31FCEBf2FF22EbEdc);

    bool internal _projectTaxApplied = true;

    /// @dev Buy tax default 33%
    uint16 internal _buyTax = 3300;
    /// @dev Sell tax default 33%
    uint16 internal _sellTax = 3300;

    address payable internal _marketingWallet;

    mapping(address => bool) internal _isExcludedFromTax;
    mapping(address => bool) internal _isAmmPair;

    event ExcludedFromTax(address account, bool flag);
    event MarketingWalletUpdated(address marketingWallet);
    event NewAmmPair(address pair, bool flag);
    event TaxesUpdated(uint16 buyTax, uint16 sellTax);

    /// @notice Update buy / sell / treasury tax
    /// @dev new tax values should not be greater than the `taxAfterLimit`
    /// @param buyTax new buy tax value
    /// @param sellTax new sell tax value
    function updateTaxes(uint16 buyTax, uint16 sellTax) external onlyOwner {
        // gas-saving code
        uint16 buyTax_ = _buyTax;
        uint16 sellTax_ = _sellTax;

        if (buyTax > buyTax_)
            require(buyTax <= MAX_BUY_TAX_AFTER, "invalid buyTax");
        if (sellTax > sellTax_)
            require(sellTax <= MAX_SELL_TAX_AFTER, "invalid sellTax");

        _buyTax = buyTax;
        _sellTax = sellTax;

        emit TaxesUpdated(buyTax, sellTax);
    }

    /// @notice View taxes applied to the token
    /// @return uint16 {_buyTax}
    /// @return uint16 {_sellTax}
    function taxes() external view returns (uint16, uint16) {
        return (_buyTax, _sellTax);
    }

    /// @notice Update marketing wallet
    function updateMarketingWallet(
        address payable newWallet
    ) external onlyOwner {
        require(_marketingWallet != newWallet, "nothing changed");
        require(newWallet != address(0), "invalid wallet");

        _marketingWallet = newWallet;

        emit MarketingWalletUpdated(newWallet);
    }

    /// @notice View current marketing wallet
    function marketingWallet() external view returns (address payable) {
        return _marketingWallet;
    }

    /// @notice Exclude / Include the multiple accounts from tax
    /// @dev Only callable by owner
    function batchExcludeFromTax(
        address[] calldata accounts,
        bool flag
    ) external onlyOwner {
        uint256 len = accounts.length;
        for (uint256 i; i < len; ) {
            address account = accounts[i];
            _isExcludedFromTax[account] = flag;

            unchecked {
                ++i;
            }

            emit ExcludedFromTax(account, flag);
        }
    }

    /// @notice Check if the account is excluded from the fees
    /// @param account: the account to be checked
    function isExcludedFromTax(address account) external view returns (bool) {
        return _isExcludedFromTax[account];
    }

    /// @notice Check if the {pair} is AMM pair
    function isAmmPair(address pair) external view returns (bool) {
        return _isAmmPair[pair];
    }

    /**
     * @dev function {taxLimits}
     *
     * Return tax limits compared with current value and taxAfterLimits
     *
     * @return uint16 max buy tax limit
     * @return uint16 max sell tax limit
     */
    function taxLimits() external view returns (uint16, uint16) {
        uint16 maxBuyTax = _buyTax < MAX_BUY_TAX_AFTER
            ? MAX_BUY_TAX_AFTER
            : _buyTax;
        uint16 maxSellTax = _sellTax < MAX_SELL_TAX_AFTER
            ? MAX_SELL_TAX_AFTER
            : _sellTax;
        return (maxBuyTax, maxSellTax);
    }
}

// File contracts/token/TokenERC20Base.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;

contract TokenERC20Base is AntiBotHelper, TaxHelper, ERC20Burnable {
    using Address for address payable;

    uint16 internal constant DENOMINATOR = 10000;
    // default threshold would be 0.25% of the total supply
    uint16 private constant DEFAULT_THRESHOLD = 25;

    address public immutable uniswapV2Router;
    address public immutable ethPair;

    bool internal _isTaxConvertEnabled = true;

    uint256 public firstBuyAt;

    /// @dev Threshold amount of accumlated tax until swap to pair token
    uint256 internal _thresholdAmount;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 supply_,
        address router_,
        address payable marketingWallet_
    ) ERC20(name_, symbol_) {
        // check if marketing account can receive ETH
        marketingWallet_.sendValue(0);

        // pair with ETH
        address lpPair = IUniswapV2Factory(
            IUniswapV2Router02(router_).factory()
        ).createPair(address(this), IUniswapV2Router02(router_).WETH());

        uniswapV2Router = router_;
        ethPair = lpPair;
        _marketingWallet = marketingWallet_;

        _isAmmPair[lpPair] = true;
        _isExcludedFromHoldLimit[lpPair] = true;

        // threshold amount is 0.05% of the total supply
        _thresholdAmount = (supply_ * DEFAULT_THRESHOLD) / DENOMINATOR;

        _isExcludedFromTxLimit[_msgSender()] = true;
        _isExcludedFromTxLimit[address(0)] = true;
        _isExcludedFromTxLimit[address(0xdead)] = true;
        _isExcludedFromTxLimit[address(this)] = true;

        _isExcludedFromHoldLimit[_msgSender()] = true;
        _isExcludedFromHoldLimit[address(0)] = true;
        _isExcludedFromHoldLimit[address(0xdead)] = true;
        _isExcludedFromHoldLimit[address(this)] = true;

        _isExcludedFromTax[_msgSender()] = true;
        _isExcludedFromTax[address(0)] = true;
        _isExcludedFromTax[address(0xdead)] = true;
        _isExcludedFromTax[address(this)] = true;

        // Mint the tokens to the token deployer
        _mint(_msgSender(), supply_);
    }

    /**
     * @notice function {batchSetAsAmmPair}
     *
     * Set / unset multiple pair addresses as AMM pair
     * LP addresses should be excluded from hold limit
     *
     * @param pairs lp addresses
     * @param flag true / false
     */
    function batchSetAsAmmPair(
        address[] calldata pairs,
        bool flag
    ) external onlyOwner {
        uint256 len = pairs.length;

        for (uint256 i; i < len; ) {
            address pair = pairs[i];
            require(pair != ethPair, "can not access base eth pair");
            _isAmmPair[pair] = flag;
            _isExcludedFromHoldLimit[pair] = flag;

            unchecked {
                ++i;
            }

            emit NewAmmPair(pair, flag);
        }
    }

    /// @notice Enable conversion of token tax
    function enableTaxConvert(bool flag) external onlyOwner {
        _isTaxConvertEnabled = flag;
    }

    function isTaxConvertEnabled() external view returns (bool) {
        return _isTaxConvertEnabled;
    }

    /// @notice Update the threshold amount for the swapping to occur
    /// @dev Too small value will cause sell tx happens in every tx
    function updateThresholdAmount(uint256 amount) external onlyOwner {
        require(amount > 0, "invalid threshold");
        _thresholdAmount = amount;
    }

    function thresholdAmount() external view returns (uint256) {
        return _thresholdAmount;
    }
}

// File contracts/token/TokenERC20.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;

contract CuriosityAnon is TokenERC20Base {
    using Address for address payable;
    using SafeERC20 for IERC20;

    bool private _inSwap;

    modifier lockTheSwap() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    constructor(
        address payable marketingWallet_
    )
        TokenERC20Base(
            "CuriosityAnon",
            "CA",
            100_000_000_000 ether,
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,
            marketingWallet_
        )
    {}

    /**
     * @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 override {
        uint256 totalSupply_ = totalSupply();

        // Check if trading is enabled
        address owner_ = owner();
        require(
            _tradingEnabled || owner_ == from || owner_ == to,
            "trading disabled"
        );

        // Check max tx limit
        require(
            _isExcludedFromTxLimit[from] ||
                _isExcludedFromTxLimit[to] ||
                amount <= (totalSupply_ * _maxTxLimit) / DENOMINATOR,
            "tx amount limited"
        );

        // Check max wallet amount limit
        require(
            _isExcludedFromHoldLimit[to] ||
                balanceOf(to) <= (totalSupply_ * _maxHoldLimit) / DENOMINATOR,
            "receiver hold limited"
        );
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        uint256 blockTime = block.timestamp;

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

        bool isWhitelisted = _isExcludedFromTax[from] || _isExcludedFromTax[to];
        bool isBuyTx = _isAmmPair[from];
        bool isSellTx = _isAmmPair[to];

        // swap accumlated tax into ETH or USDC
        if (
            !_inSwap &&
            !isWhitelisted &&
            !isBuyTx &&
            _isTaxConvertEnabled &&
            contractTokenBalance >= _thresholdAmount
        ) {
            // although the project tax period is finished, there may still be accumulated taxes thus far.
            // in this case, we will swap all those taxes into ETH.
            bool isProjectTaxOverTime = _projectTaxApplied &&
                firstBuyAt > 0 &&
                blockTime > firstBuyAt + PROJECT_TAX_PERIOD;

            // when the physicsico fee period is over, swap all accumlated taxes
            if (isProjectTaxOverTime) _swapToPairedToken(contractTokenBalance);
            else _swapToPairedToken(_thresholdAmount);
            if (isProjectTaxOverTime) _projectTaxApplied = false;
        }

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

        uint256 fees;
        if (!isWhitelisted) {
            if (isBuyTx) {
                // project tax is applied on top of buy tax for 15 days
                // its 15% of buy tax
                if (firstBuyAt == 0) firstBuyAt = block.timestamp;
                if (
                    _projectTaxApplied &&
                    blockTime <= firstBuyAt + PROJECT_TAX_PERIOD
                )
                    fees =
                        (amount * _buyTax * (DENOMINATOR + PROJECT_TAX)) /
                        DENOMINATOR /
                        DENOMINATOR;
                else fees = (amount * _buyTax) / DENOMINATOR;
            } else if (isSellTx) {
                // project tax is applied on top of sell tax for 15 days
                // its 15% of buy tax
                if (
                    _projectTaxApplied &&
                    (firstBuyAt == 0 ||
                        blockTime <= firstBuyAt + PROJECT_TAX_PERIOD)
                )
                    fees =
                        (amount * _sellTax * (DENOMINATOR + PROJECT_TAX)) /
                        DENOMINATOR /
                        DENOMINATOR;
                else fees = (amount * _sellTax) / DENOMINATOR;
            }

            if (fees > 0) super._transfer(from, address(this), fees);
            amount -= fees;
        }

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

    /**
     * @dev Swap token accumlated in this contract to the base paired token
     * 
     * According to the paired token

     * - when paired token is ETH, swapToETH function is called
     * - when paired token is another token, swapToToken is called

     */
    function _swapToPairedToken(uint256 amount) private lockTheSwap {
        uint256 swappedAmount = _swapToETH(amount);
        if (swappedAmount > 0) {
            // send project tax
            if (_projectTaxApplied) {
                uint256 projectTaxAmount = (swappedAmount * PROJECT_TAX) /
                    (DENOMINATOR + PROJECT_TAX);
                PROJECT_WALLET.sendValue(projectTaxAmount);
                swappedAmount -= projectTaxAmount;
            }
            // send buy/sell tax
            _marketingWallet.sendValue(swappedAmount);
        }
    }

    function _swapToETH(uint256 amount) private returns (uint256) {
        IUniswapV2Router02 dexRouter = IUniswapV2Router02(uniswapV2Router);
        // generate the uniswap pair path of token -> eth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

        _approve(address(this), address(dexRouter), amount);
        uint256 balanceBefore = address(this).balance;
        // make the swap
        try
            dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
                amount,
                0, // accept any amount of ETH
                path,
                address(this),
                block.timestamp + 300
            )
        {
            return address(this).balance - balanceBefore;
        } catch (bytes memory /* lowLevelData */) {}
        return 0;
    }

    receive() external payable {}

    /**
     * @dev It allows the admin to recover tokens sent to the contract
     * @param token_: the address of the token to withdraw
     * @param amount_: the number of tokens to withdraw
     *
     * This function is only callable by owner
     */
    function recoverToken(address token_, uint256 amount_) external onlyOwner {
        require(token_ != address(this), "Not allowed token");
        IERC20(token_).safeTransfer(_msgSender(), amount_);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"marketingWallet_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"ExcludedFromHoldLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"ExcludedFromTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"ExcludedFromTxLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"marketingWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"maxHoldLimit","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"maxTxLimit","type":"uint16"}],"name":"MaxLimitUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"NewAmmPair","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":false,"internalType":"uint16","name":"buyTax","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"sellTax","type":"uint16"}],"name":"TaxesUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":[{"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":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchExcludeFromHoldLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchExcludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchExcludeFromTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"batchSetAsAmmPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"flag","type":"bool"}],"name":"enableTaxConvert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstBuyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"pair","type":"address"}],"name":"isAmmPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxConvertEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxLimits","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxes","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"holdLimit","type":"uint16"},{"internalType":"uint16","name":"txLimit","type":"uint16"}],"name":"updateMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"buyTax","type":"uint16"},{"internalType":"uint16","name":"sellTax","type":"uint16"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040525f805463ffffffff60a01b19166219001960a31b1790556003805464ffffffffff1916640ce40ce401179055600b805460ff1916600117905534801562000049575f80fd5b5060405162003279380380620032798339810160408190526200006c91620008ec565b6040518060400160405280600d81526020016c21bab934b7b9b4ba3ca0b737b760991b81525060405180604001604052806002815260200161434160f01b8152506c01431e0fae6d7217caa0000000737a250d5630b4cf539739df2c5dacb4c659f2488d848484620000ed620000e76200047460201b60201c565b62000478565b6009620000fb8382620009b0565b50600a6200010a8282620009b0565b50620001239150506001600160a01b0382165f620004c7565b5f826001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000161573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001879190620008ec565b6001600160a01b031663c9c6539630856001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001f99190620008ec565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000244573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200026a9190620008ec565b6001600160a01b0380851660805280821660a0819052600380549286166501000000000002600160281b600160c81b0319909316929092179091555f908152600560209081526040808320805460ff19908116600190811790925560029093529220805490911690911790559050612710620002e860198662000a8c565b620002f4919062000aac565b600d55335f818152600160208181526040808420805460ff1990811685179091557fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4980548216851790557fb34209a263f6c38fe55f099e9e70f9d67e93982480ff3234a5e0108028ad164d80548216851790553080865282862080548316861790558686526002845282862080548316861790557fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b80548316861790557f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc80548316861790558086528286208054831686179055868652600490935281852080548216851790557f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80548216851790557f42c63635470f1fb1d6d4b6441c413cb435b1ebb6fedd1896dd5e25d1399147dd80548216851790559184529092208054909216179055620004679085620005eb565b5050505050505062000ae2565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b804710156200051d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064015b60405180910390fd5b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811462000568576040519150601f19603f3d011682016040523d82523d5f602084013e6200056d565b606091505b5050905080620005e65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840162000514565b505050565b6001600160a01b038216620006435760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000514565b8060085f82825462000656919062000acc565b90915550506001600160a01b0382165f818152600660209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620006b75f8383620006bb565b5050565b5f620006c660085490565b90505f620006db5f546001600160a01b031690565b5f54909150600160c01b900460ff1680620007075750846001600160a01b0316816001600160a01b0316145b80620007245750836001600160a01b0316816001600160a01b0316145b620007655760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b604482015260640162000514565b6001600160a01b0385165f9081526001602052604090205460ff1680620007a357506001600160a01b0384165f9081526001602052604090205460ff165b80620007d757505f5461271090620007c790600160a01b900461ffff168462000a8c565b620007d3919062000aac565b8311155b620008195760405162461bcd60e51b81526020600482015260116024820152701d1e08185b5bdd5b9d081b1a5b5a5d1959607a1b604482015260640162000514565b6001600160a01b0384165f9081526002602052604090205460ff16806200087f57505f54612710906200085890600160b01b900461ffff168462000a8c565b62000864919062000aac565b6001600160a01b0385165f9081526006602052604090205411155b620008cd5760405162461bcd60e51b815260206004820152601560248201527f726563656976657220686f6c64206c696d697465640000000000000000000000604482015260640162000514565b5050505050565b6001600160a01b0381168114620008e9575f80fd5b50565b5f60208284031215620008fd575f80fd5b81516200090a81620008d4565b9392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200093a57607f821691505b6020821081036200095957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005e6575f81815260208120601f850160051c81016020861015620009875750805b601f850160051c820191505b81811015620009a85782815560010162000993565b505050505050565b81516001600160401b03811115620009cc57620009cc62000911565b620009e481620009dd845462000925565b846200095f565b602080601f83116001811462000a1a575f841562000a025750858301515b5f19600386901b1c1916600185901b178555620009a8565b5f85815260208120601f198616915b8281101562000a4a5788860151825594840194600190910190840162000a29565b508582101562000a6857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000aa65762000aa662000a78565b92915050565b5f8262000ac757634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000aa65762000aa662000a78565b60805160a05161276762000b125f395f81816103680152610ee701525f81816102c00152611f0401526127675ff3fe608060405260043610610236575f3560e01c806379cc679011610129578063aacebbe3116100a8578063d94160e01161006d578063d94160e0146106f2578063db200bfa14610751578063dd62ed3e14610770578063def98aba1461078f578063f2fde38b146107ae575f80fd5b8063aacebbe31461063f578063b29a81401461065e578063b6a6790b1461067d578063c5f7f1681461069c578063cb4ca631146106bb575f80fd5b806395d89b41116100ee57806395d89b41146105ba5780639c5a6996146105ce578063a103657e146105ed578063a457c2d714610601578063a9059cbb14610620575f80fd5b806379cc6790146105155780638a8c523c146105345780638da5cb5b146105485780639191a9c714610564578063944886831461059b575f80fd5b80632af65da1116101b557806370a082311161017a57806370a082311461046b578063715018a61461049f578063728f8eea146104b357806375f0a874146104da578063785e8a12146104fe575f80fd5b80632af65da1146103de578063313ce567146103fd578063395093511461041857806341d3a7b91461043757806342966c681461044c575f80fd5b80631a861d26116101fb5780631a861d261461031857806322d0c30d1461035757806323b872dd1461038a57806328f4dbb6146103a95780632aa9c376146103bd575f80fd5b8063064a59d01461024157806306fdde031461026f578063095ea7b3146102905780631694505e146102af57806318160ddd146102fa575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b505f54600160c01b900460ff165b60405190151581526020015b60405180910390f35b34801561027a575f80fd5b506102836107cd565b6040516102669190612387565b34801561029b575f80fd5b5061025a6102aa3660046123cd565b61085d565b3480156102ba575f80fd5b506102e27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610266565b348015610305575f80fd5b506008545b604051908152602001610266565b348015610323575f80fd5b505f5461ffff600160b01b8204811691600160a01b9004165b6040805161ffff938416815292909116602083015201610266565b348015610362575f80fd5b506102e27f000000000000000000000000000000000000000000000000000000000000000081565b348015610395575f80fd5b5061025a6103a43660046123f7565b610876565b3480156103b4575f80fd5b50600d5461030a565b3480156103c8575f80fd5b506103dc6103d7366004612442565b610899565b005b3480156103e9575f80fd5b506103dc6103f8366004612464565b6108b4565b348015610408575f80fd5b5060405160128152602001610266565b348015610423575f80fd5b5061025a6104323660046123cd565b610964565b348015610442575f80fd5b5061030a600c5481565b348015610457575f80fd5b506103dc6104663660046124e3565b610985565b348015610476575f80fd5b5061030a6104853660046124fa565b6001600160a01b03165f9081526006602052604090205490565b3480156104aa575f80fd5b506103dc610992565b3480156104be575f80fd5b5060035461ffff6101008204811691630100000090041661033c565b3480156104e5575f80fd5b50600354600160281b90046001600160a01b03166102e2565b348015610509575f80fd5b50600b5460ff1661025a565b348015610520575f80fd5b506103dc61052f3660046123cd565b6109a5565b34801561053f575f80fd5b506103dc6109be565b348015610553575f80fd5b505f546001600160a01b03166102e2565b34801561056f575f80fd5b5061025a61057e3660046124fa565b6001600160a01b03165f9081526005602052604090205460ff1690565b3480156105a6575f80fd5b506103dc6105b5366004612464565b610a51565b3480156105c5575f80fd5b50610283610afa565b3480156105d9575f80fd5b506103dc6105e836600461252b565b610b09565b3480156105f8575f80fd5b5061033c610c44565b34801561060c575f80fd5b5061025a61061b3660046123cd565b610cb2565b34801561062b575f80fd5b5061025a61063a3660046123cd565b610d2c565b34801561064a575f80fd5b506103dc6106593660046124fa565b610d39565b348015610669575f80fd5b506103dc6106783660046123cd565b610e40565b348015610688575f80fd5b506103dc610697366004612464565b610ea8565b3480156106a7575f80fd5b506103dc6106b6366004612464565b610fe6565b3480156106c6575f80fd5b5061025a6106d53660046124fa565b6001600160a01b03165f9081526004602052604090205460ff1690565b3480156106fd575f80fd5b5061073a61070c3660046124fa565b6001600160a01b03165f9081526002602090815260408083205460019092529091205460ff91821692911690565b604080519215158352901515602083015201610266565b34801561075c575f80fd5b506103dc61076b3660046124e3565b61108d565b34801561077b575f80fd5b5061030a61078a36600461255c565b6110dd565b34801561079a575f80fd5b506103dc6107a936600461252b565b611107565b3480156107b9575f80fd5b506103dc6107c83660046124fa565b6112e9565b6060600980546107dc90612593565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612593565b80156108535780601f1061082a57610100808354040283529160200191610853565b820191905f5260205f20905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b5f3361086a81858561135f565b60019150505b92915050565b5f33610883858285611482565b61088e8585856114fa565b506001949350505050565b6108a161179b565b600b805460ff1916911515919091179055565b6108bc61179b565b815f5b8181101561095d575f8585838181106108da576108da6125cb565b90506020020160208101906108ef91906124fa565b6001600160a01b0381165f81815260026020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507f0a3739d32ce712ba6f19229ad53a9267424ae1f5fb81ea18eb916ca6fd9f7188910160405180910390a1506108bf565b5050505050565b5f3361086a81858561097683836110dd565b61098091906125f3565b61135f565b61098f33826117f4565b50565b61099a61179b565b6109a35f611931565b565b6109b0823383611482565b6109ba82826117f4565b5050565b6109c661179b565b5f54600160c01b900460ff1615610a165760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064015b60405180910390fd5b5f805460ff60c01b1916600160c01b1781556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c79190a1565b610a5961179b565b815f5b8181101561095d575f858583818110610a7757610a776125cb565b9050602002016020810190610a8c91906124fa565b6001600160a01b0381165f81815260046020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507fea5814d1cf99e5f6aee98da410ea4adcdbe5ded97855de3b25144b0898d0be4a910160405180910390a150610a5c565b6060600a80546107dc90612593565b610b1161179b565b60035461ffff6101008204811691630100000090048116908416821015610b79576103e861ffff85161115610b795760405162461bcd60e51b815260206004820152600e60248201526d0d2dcecc2d8d2c840c4eaf2a8c2f60931b6044820152606401610a0d565b8061ffff168361ffff161115610bd1576103e861ffff84161115610bd15760405162461bcd60e51b815260206004820152600f60248201526e0d2dcecc2d8d2c840e6cad8d8a8c2f608b1b6044820152606401610a0d565b6003805464ffffffff00191661010061ffff87811691820264ffff0000001916929092176301000000928716928302179092556040805192835260208301919091527fb4974848e899701c9d6891bf1592fd40b2600b743dcd9ea1aed5aba77a059469910160405180910390a150505050565b6003545f90819081906103e861010090910461ffff1610610c7057600354610100900461ffff16610c74565b6103e85b6003549091505f906103e8630100000090910461ffff1610610ca3576003546301000000900461ffff16610ca7565b6103e85b919491935090915050565b5f3381610cbf82866110dd565b905083811015610d1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a0d565b61088e828686840361135f565b5f3361086a8185856114fa565b610d4161179b565b6003546001600160a01b03808316600160281b9092041603610d975760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd1a1a5b99c818da185b99d959608a1b6044820152606401610a0d565b6001600160a01b038116610dde5760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081dd85b1b195d60921b6044820152606401610a0d565b6003805465010000000000600160c81b031916600160281b6001600160a01b038416908102919091179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e79060200160405180910390a150565b610e4861179b565b306001600160a01b03831603610e945760405162461bcd60e51b81526020600482015260116024820152702737ba1030b63637bbb2b2103a37b5b2b760791b6044820152606401610a0d565b6109ba6001600160a01b0383163383611980565b610eb061179b565b815f5b8181101561095d575f858583818110610ece57610ece6125cb565b9050602002016020810190610ee391906124fa565b90507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031603610f665760405162461bcd60e51b815260206004820152601c60248201527f63616e206e6f74206163636573732062617365206574682070616972000000006044820152606401610a0d565b6001600160a01b0381165f818152600560209081526040808320805489151560ff199182168117909255600284529382902080549094168117909355805193845290830191909152600193909301927f4d5593e244fd41eece27031c1331466a9e253a06df08dda6c1c2b3c387140da0910160405180910390a150610eb3565b610fee61179b565b815f5b8181101561095d575f85858381811061100c5761100c6125cb565b905060200201602081019061102191906124fa565b6001600160a01b0381165f81815260016020818152604092839020805460ff19168a151590811790915583519485529084015294909401939192507fa301a811c39dbd3a2ffd9aea1076306ae8b2a227d5304311a68939f08e3d084a910160405180910390a150610ff1565b61109561179b565b5f81116110d85760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081d1a1c995cda1bdb19607a1b6044820152606401610a0d565b600d55565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205490565b61110f61179b565b8061ffff168261ffff1610156111675760405162461bcd60e51b815260206004820152601b60248201527f7478206c696d6974206578636565647320686f6c64206c696d697400000000006044820152606401610a0d565b5f5461ffff808416600160b01b909204161180159061119557505f5461ffff808316600160a01b9092041611155b6111d15760405162461bcd60e51b815260206004820152600d60248201526c696e637265617365206f6e6c7960981b6044820152606401610a0d565b61271061ffff8216111561121f5760405162461bcd60e51b81526020600482015260156024820152747478206c696d6974206f7574206f662072616e676560581b6044820152606401610a0d565b61271061ffff831611156112755760405162461bcd60e51b815260206004820152601760248201527f686f6c64206c696d6974206f7574206f662072616e67650000000000000000006044820152606401610a0d565b5f805463ffffffff60a01b1916600160b01b61ffff85811691820261ffff60a01b191692909217600160a01b928516928302179092556040805192835260208301919091527f244331ce56bb49b130a963a6c0f1869845bb5ded2cd3dea0329926354d27699a910160405180910390a15050565b6112f161179b565b6001600160a01b0381166113565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0d565b61098f81611931565b6001600160a01b0383166113c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0d565b6001600160a01b0382166114225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a0d565b6001600160a01b038381165f8181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61148d84846110dd565b90505f1981146114f457818110156114e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a0d565b6114f4848484840361135f565b50505050565b305f908152600660209081526040808320546001600160a01b0387168452600490925282205442929060ff168061154857506001600160a01b0385165f9081526004602052604090205460ff165b6001600160a01b038088165f90815260056020526040808220549289168252902054600e5492935060ff918216929082169116158015611586575082155b8015611590575081155b801561159e5750600b5460ff165b80156115ac5750600d548410155b15611615576003545f9060ff1680156115c657505f600c54115b80156115e157506213c680600c546115de91906125f3565b86115b905080156115f7576115f2856119d2565b611602565b611602600d546119d2565b8015611613576003805460ff191690555b505b855f036116315761162788885f611a7e565b5050505050505050565b5f836117855782156116db57600c545f0361164b5742600c555b60035460ff16801561166d57506213c680600c5461166991906125f3565b8611155b156116c157612710806116826105dc82612606565b60035461ffff9182169161169c916101009004168b612628565b6116a69190612628565b6116b0919061263f565b6116ba919061263f565b9050611767565b600354612710906116b090610100900461ffff1689612628565b81156117675760035460ff16801561170d5750600c54158061170d57506213c680600c5461170991906125f3565b8611155b1561173e57612710806117226105dc82612606565b60035461ffff9182169161169c9163010000009004168b612628565b6003546127109061175a906301000000900461ffff1689612628565b611764919061263f565b90505b801561177857611778893083611a7e565b611782818861265e565b96505b611790898989611a7e565b505050505050505050565b5f546001600160a01b031633146109a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a0d565b6001600160a01b0382166118545760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a0d565b6001600160a01b0382165f90815260066020526040902054818110156118c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a0d565b6001600160a01b0383165f8181526006602090815260408083208686039055600880548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361192c835f84611c29565b505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261192c908490611e1e565b600e805460ff191660011790555f6119e982611ef1565b90508015611a705760035460ff1615611a53575f611a0b6105dc612710612606565b61ffff16611a1b6105dc84612628565b611a25919061263f565b9050611a4573cd443a0950f1842c7be8a6c31fcebf2ff22ebedc826120c6565b611a4f818361265e565b9150505b600354611a7090600160281b90046001600160a01b0316826120c6565b5050600e805460ff19169055565b6001600160a01b038316611ae25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0d565b6001600160a01b038216611b445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0d565b6001600160a01b0383165f9081526006602052604090205481811015611bbb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a0d565b6001600160a01b038085165f8181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611c1a9086815260200190565b60405180910390a36114f48484845b5f611c3360085490565b90505f611c475f546001600160a01b031690565b5f54909150600160c01b900460ff1680611c725750846001600160a01b0316816001600160a01b0316145b80611c8e5750836001600160a01b0316816001600160a01b0316145b611ccd5760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b6044820152606401610a0d565b6001600160a01b0385165f9081526001602052604090205460ff1680611d0a57506001600160a01b0384165f9081526001602052604090205460ff165b80611d3957505f5461271090611d2b90600160a01b900461ffff1684612628565b611d35919061263f565b8311155b611d795760405162461bcd60e51b81526020600482015260116024820152701d1e08185b5bdd5b9d081b1a5b5a5d1959607a1b6044820152606401610a0d565b6001600160a01b0384165f9081526002602052604090205460ff1680611dda57505f5461271090611db590600160b01b900461ffff1684612628565b611dbf919061263f565b6001600160a01b0385165f9081526006602052604090205411155b61095d5760405162461bcd60e51b81526020600482015260156024820152741c9958d95a5d995c881a1bdb19081b1a5b5a5d1959605a1b6044820152606401610a0d565b5f611e72826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121db9092919063ffffffff16565b905080515f1480611e92575080806020019051810190611e929190612671565b61192c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a0d565b6040805160028082526060820183525f927f0000000000000000000000000000000000000000000000000000000000000000928492909160208301908036833701905050905030815f81518110611f4a57611f4a6125cb565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fca919061268c565b81600181518110611fdd57611fdd6125cb565b60200260200101906001600160a01b031690816001600160a01b03168152505061200830838661135f565b476001600160a01b03831663791ac947865f85306120284261012c6125f3565b6040518663ffffffff1660e01b81526004016120489594939291906126a7565b5f604051808303815f87803b15801561205f575f80fd5b505af1925050508015612070575060015b6120a9573d80801561209d576040519150601f19603f3d011682016040523d82523d5f602084013e6120a2565b606091505b50506120bc565b6120b3814761265e565b95945050505050565b505f949350505050565b804710156121165760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a0d565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811461215f576040519150601f19603f3d011682016040523d82523d5f602084013e612164565b606091505b505090508061192c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a0d565b60606121e984845f856121f1565b949350505050565b6060824710156122525760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a0d565b5f80866001600160a01b0316858760405161226d9190612716565b5f6040518083038185875af1925050503d805f81146122a7576040519150601f19603f3d011682016040523d82523d5f602084013e6122ac565b606091505b50915091506122bd878383876122c8565b979650505050505050565b606083156123365782515f0361232f576001600160a01b0385163b61232f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a0d565b50816121e9565b6121e9838381511561234b5781518083602001fd5b8060405162461bcd60e51b8152600401610a0d9190612387565b5f5b8381101561237f578181015183820152602001612367565b50505f910152565b602081525f82518060208401526123a5816040850160208701612365565b601f01601f19169190910160400192915050565b6001600160a01b038116811461098f575f80fd5b5f80604083850312156123de575f80fd5b82356123e9816123b9565b946020939093013593505050565b5f805f60608486031215612409575f80fd5b8335612414816123b9565b92506020840135612424816123b9565b929592945050506040919091013590565b801515811461098f575f80fd5b5f60208284031215612452575f80fd5b813561245d81612435565b9392505050565b5f805f60408486031215612476575f80fd5b833567ffffffffffffffff8082111561248d575f80fd5b818601915086601f8301126124a0575f80fd5b8135818111156124ae575f80fd5b8760208260051b85010111156124c2575f80fd5b602092830195509350508401356124d881612435565b809150509250925092565b5f602082840312156124f3575f80fd5b5035919050565b5f6020828403121561250a575f80fd5b813561245d816123b9565b803561ffff81168114612526575f80fd5b919050565b5f806040838503121561253c575f80fd5b61254583612515565b915061255360208401612515565b90509250929050565b5f806040838503121561256d575f80fd5b8235612578816123b9565b91506020830135612588816123b9565b809150509250929050565b600181811c908216806125a757607f821691505b6020821081036125c557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610870576108706125df565b61ffff818116838216019080821115612621576126216125df565b5092915050565b8082028115828204841417610870576108706125df565b5f8261265957634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610870576108706125df565b5f60208284031215612681575f80fd5b815161245d81612435565b5f6020828403121561269c575f80fd5b815161245d816123b9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156126f55784516001600160a01b0316835293830193918301916001016126d0565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8251612727818460208701612365565b919091019291505056fea2646970667358221220cfd191c3921dcf14f503c2614163e0df715942e3510f7b6a0cb073ccf452932364736f6c6343000814003300000000000000000000000050ffd4bb1ef5275d8025602c44e36da719285687

Deployed Bytecode

0x608060405260043610610236575f3560e01c806379cc679011610129578063aacebbe3116100a8578063d94160e01161006d578063d94160e0146106f2578063db200bfa14610751578063dd62ed3e14610770578063def98aba1461078f578063f2fde38b146107ae575f80fd5b8063aacebbe31461063f578063b29a81401461065e578063b6a6790b1461067d578063c5f7f1681461069c578063cb4ca631146106bb575f80fd5b806395d89b41116100ee57806395d89b41146105ba5780639c5a6996146105ce578063a103657e146105ed578063a457c2d714610601578063a9059cbb14610620575f80fd5b806379cc6790146105155780638a8c523c146105345780638da5cb5b146105485780639191a9c714610564578063944886831461059b575f80fd5b80632af65da1116101b557806370a082311161017a57806370a082311461046b578063715018a61461049f578063728f8eea146104b357806375f0a874146104da578063785e8a12146104fe575f80fd5b80632af65da1146103de578063313ce567146103fd578063395093511461041857806341d3a7b91461043757806342966c681461044c575f80fd5b80631a861d26116101fb5780631a861d261461031857806322d0c30d1461035757806323b872dd1461038a57806328f4dbb6146103a95780632aa9c376146103bd575f80fd5b8063064a59d01461024157806306fdde031461026f578063095ea7b3146102905780631694505e146102af57806318160ddd146102fa575f80fd5b3661023d57005b5f80fd5b34801561024c575f80fd5b505f54600160c01b900460ff165b60405190151581526020015b60405180910390f35b34801561027a575f80fd5b506102836107cd565b6040516102669190612387565b34801561029b575f80fd5b5061025a6102aa3660046123cd565b61085d565b3480156102ba575f80fd5b506102e27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610266565b348015610305575f80fd5b506008545b604051908152602001610266565b348015610323575f80fd5b505f5461ffff600160b01b8204811691600160a01b9004165b6040805161ffff938416815292909116602083015201610266565b348015610362575f80fd5b506102e27f00000000000000000000000020623d8f84a305555947812aa228d18bb4025f2d81565b348015610395575f80fd5b5061025a6103a43660046123f7565b610876565b3480156103b4575f80fd5b50600d5461030a565b3480156103c8575f80fd5b506103dc6103d7366004612442565b610899565b005b3480156103e9575f80fd5b506103dc6103f8366004612464565b6108b4565b348015610408575f80fd5b5060405160128152602001610266565b348015610423575f80fd5b5061025a6104323660046123cd565b610964565b348015610442575f80fd5b5061030a600c5481565b348015610457575f80fd5b506103dc6104663660046124e3565b610985565b348015610476575f80fd5b5061030a6104853660046124fa565b6001600160a01b03165f9081526006602052604090205490565b3480156104aa575f80fd5b506103dc610992565b3480156104be575f80fd5b5060035461ffff6101008204811691630100000090041661033c565b3480156104e5575f80fd5b50600354600160281b90046001600160a01b03166102e2565b348015610509575f80fd5b50600b5460ff1661025a565b348015610520575f80fd5b506103dc61052f3660046123cd565b6109a5565b34801561053f575f80fd5b506103dc6109be565b348015610553575f80fd5b505f546001600160a01b03166102e2565b34801561056f575f80fd5b5061025a61057e3660046124fa565b6001600160a01b03165f9081526005602052604090205460ff1690565b3480156105a6575f80fd5b506103dc6105b5366004612464565b610a51565b3480156105c5575f80fd5b50610283610afa565b3480156105d9575f80fd5b506103dc6105e836600461252b565b610b09565b3480156105f8575f80fd5b5061033c610c44565b34801561060c575f80fd5b5061025a61061b3660046123cd565b610cb2565b34801561062b575f80fd5b5061025a61063a3660046123cd565b610d2c565b34801561064a575f80fd5b506103dc6106593660046124fa565b610d39565b348015610669575f80fd5b506103dc6106783660046123cd565b610e40565b348015610688575f80fd5b506103dc610697366004612464565b610ea8565b3480156106a7575f80fd5b506103dc6106b6366004612464565b610fe6565b3480156106c6575f80fd5b5061025a6106d53660046124fa565b6001600160a01b03165f9081526004602052604090205460ff1690565b3480156106fd575f80fd5b5061073a61070c3660046124fa565b6001600160a01b03165f9081526002602090815260408083205460019092529091205460ff91821692911690565b604080519215158352901515602083015201610266565b34801561075c575f80fd5b506103dc61076b3660046124e3565b61108d565b34801561077b575f80fd5b5061030a61078a36600461255c565b6110dd565b34801561079a575f80fd5b506103dc6107a936600461252b565b611107565b3480156107b9575f80fd5b506103dc6107c83660046124fa565b6112e9565b6060600980546107dc90612593565b80601f016020809104026020016040519081016040528092919081815260200182805461080890612593565b80156108535780601f1061082a57610100808354040283529160200191610853565b820191905f5260205f20905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b5f3361086a81858561135f565b60019150505b92915050565b5f33610883858285611482565b61088e8585856114fa565b506001949350505050565b6108a161179b565b600b805460ff1916911515919091179055565b6108bc61179b565b815f5b8181101561095d575f8585838181106108da576108da6125cb565b90506020020160208101906108ef91906124fa565b6001600160a01b0381165f81815260026020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507f0a3739d32ce712ba6f19229ad53a9267424ae1f5fb81ea18eb916ca6fd9f7188910160405180910390a1506108bf565b5050505050565b5f3361086a81858561097683836110dd565b61098091906125f3565b61135f565b61098f33826117f4565b50565b61099a61179b565b6109a35f611931565b565b6109b0823383611482565b6109ba82826117f4565b5050565b6109c661179b565b5f54600160c01b900460ff1615610a165760405162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e48195b98589b1959608a1b60448201526064015b60405180910390fd5b5f805460ff60c01b1916600160c01b1781556040517f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c79190a1565b610a5961179b565b815f5b8181101561095d575f858583818110610a7757610a776125cb565b9050602002016020810190610a8c91906124fa565b6001600160a01b0381165f81815260046020908152604091829020805460ff1916891515908117909155825193845290830152600194909401939192507fea5814d1cf99e5f6aee98da410ea4adcdbe5ded97855de3b25144b0898d0be4a910160405180910390a150610a5c565b6060600a80546107dc90612593565b610b1161179b565b60035461ffff6101008204811691630100000090048116908416821015610b79576103e861ffff85161115610b795760405162461bcd60e51b815260206004820152600e60248201526d0d2dcecc2d8d2c840c4eaf2a8c2f60931b6044820152606401610a0d565b8061ffff168361ffff161115610bd1576103e861ffff84161115610bd15760405162461bcd60e51b815260206004820152600f60248201526e0d2dcecc2d8d2c840e6cad8d8a8c2f608b1b6044820152606401610a0d565b6003805464ffffffff00191661010061ffff87811691820264ffff0000001916929092176301000000928716928302179092556040805192835260208301919091527fb4974848e899701c9d6891bf1592fd40b2600b743dcd9ea1aed5aba77a059469910160405180910390a150505050565b6003545f90819081906103e861010090910461ffff1610610c7057600354610100900461ffff16610c74565b6103e85b6003549091505f906103e8630100000090910461ffff1610610ca3576003546301000000900461ffff16610ca7565b6103e85b919491935090915050565b5f3381610cbf82866110dd565b905083811015610d1f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a0d565b61088e828686840361135f565b5f3361086a8185856114fa565b610d4161179b565b6003546001600160a01b03808316600160281b9092041603610d975760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd1a1a5b99c818da185b99d959608a1b6044820152606401610a0d565b6001600160a01b038116610dde5760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081dd85b1b195d60921b6044820152606401610a0d565b6003805465010000000000600160c81b031916600160281b6001600160a01b038416908102919091179091556040519081527fbf86feedee5b30c30a8243bd21deebb704d141478d39b1be04fe5ee739f214e79060200160405180910390a150565b610e4861179b565b306001600160a01b03831603610e945760405162461bcd60e51b81526020600482015260116024820152702737ba1030b63637bbb2b2103a37b5b2b760791b6044820152606401610a0d565b6109ba6001600160a01b0383163383611980565b610eb061179b565b815f5b8181101561095d575f858583818110610ece57610ece6125cb565b9050602002016020810190610ee391906124fa565b90507f00000000000000000000000020623d8f84a305555947812aa228d18bb4025f2d6001600160a01b0316816001600160a01b031603610f665760405162461bcd60e51b815260206004820152601c60248201527f63616e206e6f74206163636573732062617365206574682070616972000000006044820152606401610a0d565b6001600160a01b0381165f818152600560209081526040808320805489151560ff199182168117909255600284529382902080549094168117909355805193845290830191909152600193909301927f4d5593e244fd41eece27031c1331466a9e253a06df08dda6c1c2b3c387140da0910160405180910390a150610eb3565b610fee61179b565b815f5b8181101561095d575f85858381811061100c5761100c6125cb565b905060200201602081019061102191906124fa565b6001600160a01b0381165f81815260016020818152604092839020805460ff19168a151590811790915583519485529084015294909401939192507fa301a811c39dbd3a2ffd9aea1076306ae8b2a227d5304311a68939f08e3d084a910160405180910390a150610ff1565b61109561179b565b5f81116110d85760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081d1a1c995cda1bdb19607a1b6044820152606401610a0d565b600d55565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205490565b61110f61179b565b8061ffff168261ffff1610156111675760405162461bcd60e51b815260206004820152601b60248201527f7478206c696d6974206578636565647320686f6c64206c696d697400000000006044820152606401610a0d565b5f5461ffff808416600160b01b909204161180159061119557505f5461ffff808316600160a01b9092041611155b6111d15760405162461bcd60e51b815260206004820152600d60248201526c696e637265617365206f6e6c7960981b6044820152606401610a0d565b61271061ffff8216111561121f5760405162461bcd60e51b81526020600482015260156024820152747478206c696d6974206f7574206f662072616e676560581b6044820152606401610a0d565b61271061ffff831611156112755760405162461bcd60e51b815260206004820152601760248201527f686f6c64206c696d6974206f7574206f662072616e67650000000000000000006044820152606401610a0d565b5f805463ffffffff60a01b1916600160b01b61ffff85811691820261ffff60a01b191692909217600160a01b928516928302179092556040805192835260208301919091527f244331ce56bb49b130a963a6c0f1869845bb5ded2cd3dea0329926354d27699a910160405180910390a15050565b6112f161179b565b6001600160a01b0381166113565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a0d565b61098f81611931565b6001600160a01b0383166113c15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a0d565b6001600160a01b0382166114225760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a0d565b6001600160a01b038381165f8181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61148d84846110dd565b90505f1981146114f457818110156114e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a0d565b6114f4848484840361135f565b50505050565b305f908152600660209081526040808320546001600160a01b0387168452600490925282205442929060ff168061154857506001600160a01b0385165f9081526004602052604090205460ff165b6001600160a01b038088165f90815260056020526040808220549289168252902054600e5492935060ff918216929082169116158015611586575082155b8015611590575081155b801561159e5750600b5460ff165b80156115ac5750600d548410155b15611615576003545f9060ff1680156115c657505f600c54115b80156115e157506213c680600c546115de91906125f3565b86115b905080156115f7576115f2856119d2565b611602565b611602600d546119d2565b8015611613576003805460ff191690555b505b855f036116315761162788885f611a7e565b5050505050505050565b5f836117855782156116db57600c545f0361164b5742600c555b60035460ff16801561166d57506213c680600c5461166991906125f3565b8611155b156116c157612710806116826105dc82612606565b60035461ffff9182169161169c916101009004168b612628565b6116a69190612628565b6116b0919061263f565b6116ba919061263f565b9050611767565b600354612710906116b090610100900461ffff1689612628565b81156117675760035460ff16801561170d5750600c54158061170d57506213c680600c5461170991906125f3565b8611155b1561173e57612710806117226105dc82612606565b60035461ffff9182169161169c9163010000009004168b612628565b6003546127109061175a906301000000900461ffff1689612628565b611764919061263f565b90505b801561177857611778893083611a7e565b611782818861265e565b96505b611790898989611a7e565b505050505050505050565b5f546001600160a01b031633146109a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a0d565b6001600160a01b0382166118545760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a0d565b6001600160a01b0382165f90815260066020526040902054818110156118c75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a0d565b6001600160a01b0383165f8181526006602090815260408083208686039055600880548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361192c835f84611c29565b505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261192c908490611e1e565b600e805460ff191660011790555f6119e982611ef1565b90508015611a705760035460ff1615611a53575f611a0b6105dc612710612606565b61ffff16611a1b6105dc84612628565b611a25919061263f565b9050611a4573cd443a0950f1842c7be8a6c31fcebf2ff22ebedc826120c6565b611a4f818361265e565b9150505b600354611a7090600160281b90046001600160a01b0316826120c6565b5050600e805460ff19169055565b6001600160a01b038316611ae25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0d565b6001600160a01b038216611b445760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0d565b6001600160a01b0383165f9081526006602052604090205481811015611bbb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a0d565b6001600160a01b038085165f8181526006602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611c1a9086815260200190565b60405180910390a36114f48484845b5f611c3360085490565b90505f611c475f546001600160a01b031690565b5f54909150600160c01b900460ff1680611c725750846001600160a01b0316816001600160a01b0316145b80611c8e5750836001600160a01b0316816001600160a01b0316145b611ccd5760405162461bcd60e51b815260206004820152601060248201526f1d1c98591a5b99c8191a5cd8589b195960821b6044820152606401610a0d565b6001600160a01b0385165f9081526001602052604090205460ff1680611d0a57506001600160a01b0384165f9081526001602052604090205460ff165b80611d3957505f5461271090611d2b90600160a01b900461ffff1684612628565b611d35919061263f565b8311155b611d795760405162461bcd60e51b81526020600482015260116024820152701d1e08185b5bdd5b9d081b1a5b5a5d1959607a1b6044820152606401610a0d565b6001600160a01b0384165f9081526002602052604090205460ff1680611dda57505f5461271090611db590600160b01b900461ffff1684612628565b611dbf919061263f565b6001600160a01b0385165f9081526006602052604090205411155b61095d5760405162461bcd60e51b81526020600482015260156024820152741c9958d95a5d995c881a1bdb19081b1a5b5a5d1959605a1b6044820152606401610a0d565b5f611e72826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166121db9092919063ffffffff16565b905080515f1480611e92575080806020019051810190611e929190612671565b61192c5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a0d565b6040805160028082526060820183525f927f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d928492909160208301908036833701905050905030815f81518110611f4a57611f4a6125cb565b60200260200101906001600160a01b031690816001600160a01b031681525050816001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fa6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fca919061268c565b81600181518110611fdd57611fdd6125cb565b60200260200101906001600160a01b031690816001600160a01b03168152505061200830838661135f565b476001600160a01b03831663791ac947865f85306120284261012c6125f3565b6040518663ffffffff1660e01b81526004016120489594939291906126a7565b5f604051808303815f87803b15801561205f575f80fd5b505af1925050508015612070575060015b6120a9573d80801561209d576040519150601f19603f3d011682016040523d82523d5f602084013e6120a2565b606091505b50506120bc565b6120b3814761265e565b95945050505050565b505f949350505050565b804710156121165760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a0d565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f811461215f576040519150601f19603f3d011682016040523d82523d5f602084013e612164565b606091505b505090508061192c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a0d565b60606121e984845f856121f1565b949350505050565b6060824710156122525760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a0d565b5f80866001600160a01b0316858760405161226d9190612716565b5f6040518083038185875af1925050503d805f81146122a7576040519150601f19603f3d011682016040523d82523d5f602084013e6122ac565b606091505b50915091506122bd878383876122c8565b979650505050505050565b606083156123365782515f0361232f576001600160a01b0385163b61232f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a0d565b50816121e9565b6121e9838381511561234b5781518083602001fd5b8060405162461bcd60e51b8152600401610a0d9190612387565b5f5b8381101561237f578181015183820152602001612367565b50505f910152565b602081525f82518060208401526123a5816040850160208701612365565b601f01601f19169190910160400192915050565b6001600160a01b038116811461098f575f80fd5b5f80604083850312156123de575f80fd5b82356123e9816123b9565b946020939093013593505050565b5f805f60608486031215612409575f80fd5b8335612414816123b9565b92506020840135612424816123b9565b929592945050506040919091013590565b801515811461098f575f80fd5b5f60208284031215612452575f80fd5b813561245d81612435565b9392505050565b5f805f60408486031215612476575f80fd5b833567ffffffffffffffff8082111561248d575f80fd5b818601915086601f8301126124a0575f80fd5b8135818111156124ae575f80fd5b8760208260051b85010111156124c2575f80fd5b602092830195509350508401356124d881612435565b809150509250925092565b5f602082840312156124f3575f80fd5b5035919050565b5f6020828403121561250a575f80fd5b813561245d816123b9565b803561ffff81168114612526575f80fd5b919050565b5f806040838503121561253c575f80fd5b61254583612515565b915061255360208401612515565b90509250929050565b5f806040838503121561256d575f80fd5b8235612578816123b9565b91506020830135612588816123b9565b809150509250929050565b600181811c908216806125a757607f821691505b6020821081036125c557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610870576108706125df565b61ffff818116838216019080821115612621576126216125df565b5092915050565b8082028115828204841417610870576108706125df565b5f8261265957634e487b7160e01b5f52601260045260245ffd5b500490565b81810381811115610870576108706125df565b5f60208284031215612681575f80fd5b815161245d81612435565b5f6020828403121561269c575f80fd5b815161245d816123b9565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156126f55784516001600160a01b0316835293830193918301916001016126d0565b50506001600160a01b03969096166060850152505050608001529392505050565b5f8251612727818460208701612365565b919091019291505056fea2646970667358221220cfd191c3921dcf14f503c2614163e0df715942e3510f7b6a0cb073ccf452932364736f6c63430008140033

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

00000000000000000000000050ffd4bb1ef5275d8025602c44e36da719285687

-----Decoded View---------------
Arg [0] : marketingWallet_ (address): 0x50fFD4Bb1EF5275D8025602c44E36dA719285687

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000050ffd4bb1ef5275d8025602c44e36da719285687


Deployed Bytecode Sourcemap

65705:7411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47689:98;;;;;;;;;;-1:-1:-1;47740:4:0;47764:15;-1:-1:-1;;;47764:15:0;;;;47689:98;;;179:14:1;;172:22;154:41;;142:2;127:18;47689:98:0;;;;;;;;9950:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12376:226::-;;;;;;;;;;-1:-1:-1;12376:226:0;;;;;:::i;:::-;;:::i;62247:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1482:32:1;;;1464:51;;1452:2;1437:18;62247:40:0;1318:203:1;11079:108:0;;;;;;;;;;-1:-1:-1;11167:12:0;;11079:108;;;1672:25:1;;;1660:2;1645:18;11079:108:0;1526:177:1;47301:113:0;;;;;;;;;;-1:-1:-1;47344:6:0;47379:13;;-1:-1:-1;;;47379:13:0;;;;;-1:-1:-1;;;47394:11:0;;;47301:113;;;;1888:6:1;1921:15;;;1903:34;;1973:15;;;;1968:2;1953:18;;1946:43;1851:18;47301:113:0;1708:287:1;62294:32:0;;;;;;;;;;;;;;;13182:295;;;;;;;;;;-1:-1:-1;13182:295:0;;;;;:::i;:::-;;:::i;65475:101::-;;;;;;;;;;-1:-1:-1;65552:16:0;;65475:101;;64942:102;;;;;;;;;;-1:-1:-1;64942:102:0;;;;;:::i;:::-;;:::i;:::-;;45567:437;;;;;;;;;;-1:-1:-1;45567:437:0;;;;;:::i;:::-;;:::i;10921:93::-;;;;;;;;;;-1:-1:-1;10921:93:0;;11004:2;3727:36:1;;3715:2;3700:18;10921:93:0;3585:184:1;13886:263:0;;;;;;;;;;-1:-1:-1;13886:263:0;;;;;:::i;:::-;;:::i;62385:25::-;;;;;;;;;;;;;;;;22045:91;;;;;;;;;;-1:-1:-1;22045:91:0;;;;;:::i;:::-;;:::i;11250:143::-;;;;;;;;;;-1:-1:-1;11250:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;11367:18:0;11340:7;11367:18;;;:9;:18;;;;;;;11250:143;3118:103;;;;;;;;;;;;;:::i;59683:101::-;;;;;;;;;;-1:-1:-1;59758:7:0;;;;;;;;;59767:8;;;;59683:101;;60210:109;;;;;;;;;;-1:-1:-1;60295:16:0;;-1:-1:-1;;;60295:16:0;;-1:-1:-1;;;;;60295:16:0;60210:109;;65052:106;;;;;;;;;;-1:-1:-1;65130:20:0;;;;65052:106;;22455:164;;;;;;;;;;-1:-1:-1;22455:164:0;;;;;:::i;:::-;;:::i;47454:174::-;;;;;;;;;;;;;:::i;2477:87::-;;;;;;;;;;-1:-1:-1;2523:7:0;2550:6;-1:-1:-1;;;;;2550:6:0;2477:87;;61155:104;;;;;;;;;;-1:-1:-1;61155:104:0;;;;;:::i;:::-;-1:-1:-1;;;;;61235:16:0;61211:4;61235:16;;;:10;:16;;;;;;;;;61155:104;60430:419;;;;;;;;;;-1:-1:-1;60430:419:0;;;;;:::i;:::-;;:::i;10169:104::-;;;;;;;;;;;;;:::i;59066:491::-;;;;;;;;;;-1:-1:-1;59066:491:0;;;;;:::i;:::-;;:::i;61491:340::-;;;;;;;;;;;;;:::i;14652:498::-;;;;;;;;;;-1:-1:-1;14652:498:0;;;;;:::i;:::-;;:::i;11599:218::-;;;;;;;;;;-1:-1:-1;11599:218:0;;;;;:::i;:::-;;:::i;59833:322::-;;;;;;;;;;-1:-1:-1;59833:322:0;;;;;:::i;:::-;;:::i;72906:207::-;;;;;;;;;;-1:-1:-1;72906:207:0;;;;;:::i;:::-;;:::i;64375:511::-;;;;;;;;;;-1:-1:-1;64375:511:0;;;;;:::i;:::-;;:::i;45012:431::-;;;;;;;;;;-1:-1:-1;45012:431:0;;;;;:::i;:::-;;:::i;60972:126::-;;;;;;;;;;-1:-1:-1;60972:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;61063:27:0;61039:4;61063:27;;;:18;:27;;;;;;;;;60972:126;46191:228;;;;;;;;;;-1:-1:-1;46191:228:0;;;;;:::i;:::-;-1:-1:-1;;;;;46321:33:0;46276:4;46321:33;;;:24;:33;;;;;;;;;;46369:31;;;;;;;46321:33;;;;;46369:31;;;46191:228;;;;;5307:14:1;;5300:22;5282:41;;5366:14;;5359:22;5354:2;5339:18;;5332:50;5255:18;46191:228:0;5120:268:1;65306:161:0;;;;;;;;;;-1:-1:-1;65306:161:0;;;;;:::i;:::-;;:::i;11880:176::-;;;;;;;;;;-1:-1:-1;11880:176:0;;;;;:::i;:::-;;:::i;46567:582::-;;;;;;;;;;-1:-1:-1;46567:582:0;;;;;:::i;:::-;;:::i;3376:238::-;;;;;;;;;;-1:-1:-1;3376:238:0;;;;;:::i;:::-;;:::i;9950:100::-;10004:13;10037:5;10030:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9950:100;:::o;12376:226::-;12484:4;1030:10;12540:32;1030:10;12556:7;12565:6;12540:8;:32::i;:::-;12590:4;12583:11;;;12376:226;;;;;:::o;13182:295::-;13313:4;1030:10;13371:38;13387:4;1030:10;13402:6;13371:15;:38::i;:::-;13420:27;13430:4;13436:2;13440:6;13420:9;:27::i;:::-;-1:-1:-1;13465:4:0;;13182:295;-1:-1:-1;;;;13182:295:0:o;64942:102::-;2363:13;:11;:13::i;:::-;65009:20:::1;:27:::0;;-1:-1:-1;;65009:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64942:102::o;45567:437::-;2363:13;:11;:13::i;:::-;45711:8;45697:11:::1;45737:260;45757:3;45753:1;:7;45737:260;;;45779:15;45797:8;;45806:1;45797:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45823:33:0;::::1;;::::0;;;:24:::1;:33;::::0;;;;;;;;:40;;-1:-1:-1;;45823:40:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45949:36;;6471:51:1;;;6538:18;;;6531:50;-1:-1:-1;45909:3:0;;;::::1;::::0;45823:33;;-1:-1:-1;45949:36:0::1;::::0;6444:18:1;45949:36:0::1;;;;;;;45764:233;45737:260;;;;45686:318;45567:437:::0;;;:::o;13886:263::-;13999:4;1030:10;14055:64;1030:10;14071:7;14108:10;14080:25;1030:10;14071:7;14080:9;:25::i;:::-;:38;;;;:::i;:::-;14055:8;:64::i;22045:91::-;22101:27;1030:10;22121:6;22101:5;:27::i;:::-;22045:91;:::o;3118:103::-;2363:13;:11;:13::i;:::-;3183:30:::1;3210:1;3183:18;:30::i;:::-;3118:103::o:0;22455:164::-;22532:46;22548:7;1030:10;22571:6;22532:15;:46::i;:::-;22589:22;22595:7;22604:6;22589:5;:22::i;:::-;22455:164;;:::o;47454:174::-;2363:13;:11;:13::i;:::-;47518:15:::1;::::0;-1:-1:-1;;;47518:15:0;::::1;;;47517:16;47509:44;;;::::0;-1:-1:-1;;;47509:44:0;;7056:2:1;47509:44:0::1;::::0;::::1;7038:21:1::0;7095:2;7075:18;;;7068:30;-1:-1:-1;;;7114:18:1;;;7107:45;7169:18;;47509:44:0::1;;;;;;;;;47564:15;:22:::0;;-1:-1:-1;;;;47564:22:0::1;-1:-1:-1::0;;;47564:22:0::1;::::0;;47604:16:::1;::::0;::::1;::::0;47564:15;47604:16:::1;47454:174::o:0;60430:419::-;2363:13;:11;:13::i;:::-;60568:8;60554:11:::1;60594:248;60614:3;60610:1;:7;60594:248;;;60636:15;60654:8;;60663:1;60654:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;60680:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;60680:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;60800:30;;6471:51:1;;;6538:18;;;6531:50;-1:-1:-1;60760:3:0;;;::::1;::::0;60680:27;;-1:-1:-1;60800:30:0::1;::::0;6444:18:1;60800:30:0::1;;;;;;;60621:221;60594:248;;10169:104:::0;10225:13;10258:7;10251:14;;;;;:::i;59066:491::-;2363:13;:11;:13::i;:::-;59193:7:::1;::::0;::::1;;::::0;::::1;::::0;::::1;::::0;59229:8;;::::1;::::0;::::1;::::0;59254:16;::::1;::::0;-1:-1:-1;59250:89:0::1;;;57758:4;59293:27;::::0;::::1;;;59285:54;;;::::0;-1:-1:-1;;;59285:54:0;;7400:2:1;59285:54:0::1;::::0;::::1;7382:21:1::0;7439:2;7419:18;;;7412:30;-1:-1:-1;;;7458:18:1;;;7451:44;7512:18;;59285:54:0::1;7198:338:1::0;59285:54:0::1;59364:8;59354:18;;:7;:18;;;59350:94;;;57867:4;59395:29;::::0;::::1;;;59387:57;;;::::0;-1:-1:-1;;;59387:57:0;;7743:2:1;59387:57:0::1;::::0;::::1;7725:21:1::0;7782:2;7762:18;;;7755:30;-1:-1:-1;;;7801:18:1;;;7794:45;7856:18;;59387:57:0::1;7541:339:1::0;59387:57:0::1;59457:7;:16:::0;;-1:-1:-1;;59484:18:0;59457:16:::1;;::::0;;::::1;::::0;;::::1;-1:-1:-1::0;;59484:18:0;;;;;;;;::::1;::::0;;::::1;;::::0;;;59520:29:::1;::::0;;1903:34:1;;;1968:2;1953:18;;1946:43;;;;59520:29:0::1;::::0;1851:18:1;59520:29:0::1;;;;;;;59137:420;;59066:491:::0;;:::o;61491:340::-;61581:7;;61535:6;;;;;;57758:4;61581:7;;;;:27;:7;:27;:83;;61657:7;;;;;;;61581:83;;;57758:4;61581:83;61695:8;;61562:102;;-1:-1:-1;61675:17:0;;57867:4;61695:8;;;;:29;:8;:29;:87;;61774:8;;;;;;;61695:87;;;57867:4;61695:87;61801:9;;61675:107;;-1:-1:-1;61491:340:0;;-1:-1:-1;;61491:340:0:o;14652:498::-;14770:4;1030:10;14770:4;14853:25;1030:10;14870:7;14853:9;:25::i;:::-;14826:52;;14931:15;14911:16;:35;;14889:122;;;;-1:-1:-1;;;14889:122:0;;8087:2:1;14889:122:0;;;8069:21:1;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:35;8261:19;;14889:122:0;7885:401:1;14889:122:0;15047:60;15056:5;15063:7;15091:15;15072:16;:34;15047:8;:60::i;11599:218::-;11703:4;1030:10;11759:28;1030:10;11776:2;11780:6;11759:9;:28::i;59833:322::-;2363:13;:11;:13::i;:::-;59945:16:::1;::::0;-1:-1:-1;;;;;59945:29:0;;::::1;-1:-1:-1::0;;;59945:16:0;;::::1;;:29:::0;59937:57:::1;;;::::0;-1:-1:-1;;;59937:57:0;;8493:2:1;59937:57:0::1;::::0;::::1;8475:21:1::0;8532:2;8512:18;;;8505:30;-1:-1:-1;;;8551:18:1;;;8544:45;8606:18;;59937:57:0::1;8291:339:1::0;59937:57:0::1;-1:-1:-1::0;;;;;60013:23:0;::::1;60005:50;;;::::0;-1:-1:-1;;;60005:50:0;;8837:2:1;60005:50:0::1;::::0;::::1;8819:21:1::0;8876:2;8856:18;;;8849:30;-1:-1:-1;;;8895:18:1;;;8888:44;8949:18;;60005:50:0::1;8635:338:1::0;60005:50:0::1;60068:16;:28:::0;;-1:-1:-1;;;;;;60068:28:0::1;-1:-1:-1::0;;;;;;;;60068:28:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;60114:33:::1;::::0;1464:51:1;;;60114:33:0::1;::::0;1452:2:1;1437:18;60114:33:0::1;;;;;;;59833:322:::0;:::o;72906:207::-;2363:13;:11;:13::i;:::-;73017:4:::1;-1:-1:-1::0;;;;;72999:23:0;::::1;::::0;72991:53:::1;;;::::0;-1:-1:-1;;;72991:53:0;;9396:2:1;72991:53:0::1;::::0;::::1;9378:21:1::0;9435:2;9415:18;;;9408:30;-1:-1:-1;;;9454:18:1;;;9447:47;9511:18;;72991:53:0::1;9194:341:1::0;72991:53:0::1;73055:50;-1:-1:-1::0;;;;;73055:27:0;::::1;1030:10:::0;73097:7;73055:27:::1;:50::i;64375:511::-:0;2363:13;:11;:13::i;:::-;64508:5;64494:11:::1;64533:346;64553:3;64549:1;:7;64533:346;;;64575:12;64590:5;;64596:1;64590:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;64575:23;;64629:7;-1:-1:-1::0;;;;;64621:15:0::1;:4;-1:-1:-1::0;;;;;64621:15:0::1;::::0;64613:56:::1;;;::::0;-1:-1:-1;;;64613:56:0;;9742:2:1;64613:56:0::1;::::0;::::1;9724:21:1::0;9781:2;9761:18;;;9754:30;9820;9800:18;;;9793:58;9868:18;;64613:56:0::1;9540:352:1::0;64613:56:0::1;-1:-1:-1::0;;;;;64684:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;;;:23;;;::::1;;-1:-1:-1::0;;64684:23:0;;::::1;::::0;::::1;::::0;;;64722:24:::1;:30:::0;;;;;;:37;;;;::::1;::::0;::::1;::::0;;;64845:22;;6471:51:1;;;6538:18;;;6531:50;;;;-1:-1:-1;64805:3:0;;;::::1;::::0;64845:22:::1;::::0;6444:18:1;64845:22:0::1;;;;;;;64560:319;64533:346;;45012:431:::0;2363:13;:11;:13::i;:::-;45154:8;45140:11:::1;45180:256;45200:3;45196:1;:7;45180:256;;;45222:15;45240:8;;45249:1;45240:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45266:31:0;::::1;;::::0;;;:22:::1;:31;::::0;;;;;;;;:38;;-1:-1:-1;;45266:38:0::1;::::0;::::1;;::::0;;::::1;::::0;;;45390:34;;6471:51:1;;;6538:18;;;6531:50;45350:3:0;;;::::1;::::0;45266:31;;-1:-1:-1;45390:34:0::1;::::0;6444:18:1;45390:34:0::1;;;;;;;45207:229;45180:256;;65306:161:::0;2363:13;:11;:13::i;:::-;65400:1:::1;65391:6;:10;65383:40;;;::::0;-1:-1:-1;;;65383:40:0;;10099:2:1;65383:40:0::1;::::0;::::1;10081:21:1::0;10138:2;10118:18;;;10111:30;-1:-1:-1;;;10157:18:1;;;10150:47;10214:18;;65383:40:0::1;9897:341:1::0;65383:40:0::1;65434:16;:25:::0;65306:161::o;11880:176::-;-1:-1:-1;;;;;12021:18:0;;;11994:7;12021:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11880:176::o;46567:582::-;2363:13;:11;:13::i;:::-;46701:7:::1;46688:20;;:9;:20;;;;46680:60;;;::::0;-1:-1:-1;;;46680:60:0;;10445:2:1;46680:60:0::1;::::0;::::1;10427:21:1::0;10484:2;10464:18;;;10457:30;10523:29;10503:18;;;10496:57;10570:18;;46680:60:0::1;10243:351:1::0;46680:60:0::1;46773:13;::::0;:26:::1;::::0;;::::1;-1:-1:-1::0;;;46773:13:0;;::::1;;:26;::::0;::::1;::::0;:52:::1;;-1:-1:-1::0;46803:11:0::1;::::0;:22:::1;::::0;;::::1;-1:-1:-1::0;;;46803:11:0;;::::1;;:22;;46773:52;46751:115;;;::::0;-1:-1:-1;;;46751:115:0;;10801:2:1;46751:115:0::1;::::0;::::1;10783:21:1::0;10840:2;10820:18;;;10813:30;-1:-1:-1;;;10859:18:1;;;10852:43;10912:18;;46751:115:0::1;10599:337:1::0;46751:115:0::1;44073:5;46885:28;::::0;::::1;;;46877:62;;;::::0;-1:-1:-1;;;46877:62:0;;11143:2:1;46877:62:0::1;::::0;::::1;11125:21:1::0;11182:2;11162:18;;;11155:30;-1:-1:-1;;;11201:18:1;;;11194:51;11262:18;;46877:62:0::1;10941:345:1::0;46877:62:0::1;44335:5;46958:32;::::0;::::1;;;46950:68;;;::::0;-1:-1:-1;;;46950:68:0;;11493:2:1;46950:68:0::1;::::0;::::1;11475:21:1::0;11532:2;11512:18;;;11505:30;11571:25;11551:18;;;11544:53;11614:18;;46950:68:0::1;11291:347:1::0;46950:68:0::1;47031:13;:25:::0;;-1:-1:-1;;;;47067:21:0;-1:-1:-1;;;47031:25:0::1;::::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;;47067:21:0;;;;;-1:-1:-1;;;47067:21:0;;::::1;::::0;;::::1;;::::0;;;47106:35:::1;::::0;;1903:34:1;;;1968:2;1953:18;;1946:43;;;;47106:35:0::1;::::0;1851:18:1;47106:35:0::1;;;;;;;46567:582:::0;;:::o;3376:238::-;2363:13;:11;:13::i;:::-;-1:-1:-1;;;;;3479:22:0;::::1;3457:110;;;::::0;-1:-1:-1;;;3457:110:0;;11845:2:1;3457:110:0::1;::::0;::::1;11827:21:1::0;11884:2;11864:18;;;11857:30;11923:34;11903:18;;;11896:62;-1:-1:-1;;;11974:18:1;;;11967:36;12020:19;;3457:110:0::1;11643:402:1::0;3457:110:0::1;3578:28;3597:8;3578:18;:28::i;18778:380::-:0;-1:-1:-1;;;;;18914:19:0;;18906:68;;;;-1:-1:-1;;;18906:68:0;;12252:2:1;18906:68:0;;;12234:21:1;12291:2;12271:18;;;12264:30;12330:34;12310:18;;;12303:62;-1:-1:-1;;;12381:18:1;;;12374:34;12425:19;;18906:68:0;12050:400:1;18906:68:0;-1:-1:-1;;;;;18993:21:0;;18985:68;;;;-1:-1:-1;;;18985:68:0;;12657:2:1;18985:68:0;;;12639:21:1;12696:2;12676:18;;;12669:30;12735:34;12715:18;;;12708:62;-1:-1:-1;;;12786:18:1;;;12779:32;12828:19;;18985:68:0;12455:398:1;18985:68:0;-1:-1:-1;;;;;19066:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19118:32;;1672:25:1;;;19118:32:0;;1645:18:1;19118:32:0;;;;;;;18778:380;;;:::o;19449:502::-;19584:24;19611:25;19621:5;19628:7;19611:9;:25::i;:::-;19584:52;;-1:-1:-1;;19651:16:0;:37;19647:297;;19751:6;19731:16;:26;;19705:117;;;;-1:-1:-1;;;19705:117:0;;13060:2:1;19705:117:0;;;13042:21:1;13099:2;13079:18;;;13072:30;13138:31;13118:18;;;13111:59;13187:18;;19705:117:0;12858:353:1;19705:117:0;19866:51;19875:5;19882:7;19910:6;19891:16;:25;19866:8;:51::i;:::-;19573:378;19449:502;;;:::o;67732:3098::-;68235:4;67856:17;11367:18;;;:9;:18;;;;;;;;;-1:-1:-1;;;;;68275:24:0;;;;:18;:24;;;;;;67876:15;;67856:17;68275:24;;;:50;;-1:-1:-1;;;;;;68303:22:0;;;;;;:18;:22;;;;;;;;68275:50;-1:-1:-1;;;;;68351:16:0;;;68336:12;68351:16;;;:10;:16;;;;;;;68394:14;;;;;;;;68489:7;;68254:71;;-1:-1:-1;68351:16:0;;;;;68394:14;;;;68489:7;68488:8;:39;;;;;68514:13;68513:14;68488:39;:64;;;;;68545:7;68544:8;68488:64;:101;;;;-1:-1:-1;68569:20:0;;;;68488:101;:158;;;;;68630:16;;68606:20;:40;;68488:158;68470:825;;;68878:18;;68850:25;;68878:18;;:53;;;;;68930:1;68917:10;;:14;68878:53;:117;;;;;58103:7;68964:10;;:31;;;;:::i;:::-;68952:9;:43;68878:117;68850:145;;69098:20;69094:122;;;69120:40;69139:20;69120:18;:40::i;:::-;69094:122;;;69180:36;69199:16;;69180:18;:36::i;:::-;69235:20;69231:52;;;69257:18;:26;;-1:-1:-1;;69257:26:0;;;69231:52;68658:637;68470:825;69311:6;69321:1;69311:11;69307:93;;69339:28;69355:4;69361:2;69365:1;69339:15;:28::i;:::-;69382:7;;;;;67732:3098;;;:::o;69307:93::-;69412:12;69440:13;69435:1342;;69474:7;69470:1194;;;69618:10;;69632:1;69618:15;69614:49;;69648:15;69635:10;:28;69614:49;69708:18;;;;:87;;;;;58103:7;69764:10;;:31;;;;:::i;:::-;69751:9;:44;;69708:87;69682:375;;;62119:5;;69889:25;57994:4;62119:5;69889:25;:::i;:::-;69878:7;;69869:46;;;;;:16;;69878:7;;;;69869:6;:16;:::i;:::-;:46;;;;:::i;:::-;69868:87;;;;:::i;:::-;:126;;;;:::i;:::-;69836:158;;69470:1194;;69682:375;70035:7;;62119:5;;70026:16;;70035:7;;;70025:32;70035:7;70026:6;:16;:::i;69470:1194::-;70083:8;70079:585;;;70251:18;;;;:133;;;;-1:-1:-1;70295:10:0;;:15;;:88;;;58103:7;70352:10;;:31;;;;:::i;:::-;70339:9;:44;;70295:88;70225:423;;;62119:5;;70479:25;57994:4;62119:5;70479:25;:::i;:::-;70467:8;;70458:47;;;;;:17;;70467:8;;;;70458:6;:17;:::i;70225:423::-;70625:8;;62119:5;;70616:17;;70625:8;;;70615:33;70625:8;70616:6;:17;:::i;:::-;70615:33;;;;:::i;:::-;70608:40;;70225:423;70684:8;;70680:56;;70694:42;70710:4;70724;70731;70694:15;:42::i;:::-;70751:14;70761:4;70751:14;;:::i;:::-;;;69435:1342;70789:33;70805:4;70811:2;70815:6;70789:15;:33::i;:::-;67845:2985;;;;;;67732:3098;;;:::o;2642:132::-;2523:7;2550:6;-1:-1:-1;;;;;2550:6:0;1030:10;2706:23;2698:68;;;;-1:-1:-1;;;2698:68:0;;14119:2:1;2698:68:0;;;14101:21:1;;;14138:18;;;14131:30;14197:34;14177:18;;;14170:62;14249:18;;2698:68:0;13917:356:1;17665:675:0;-1:-1:-1;;;;;17749:21:0;;17741:67;;;;-1:-1:-1;;;17741:67:0;;14480:2:1;17741:67:0;;;14462:21:1;14519:2;14499:18;;;14492:30;14558:34;14538:18;;;14531:62;-1:-1:-1;;;14609:18:1;;;14602:31;14650:19;;17741:67:0;14278:397:1;17741:67:0;-1:-1:-1;;;;;17908:18:0;;17883:22;17908:18;;;:9;:18;;;;;;17945:24;;;;17937:71;;;;-1:-1:-1;;;17937:71:0;;14882:2:1;17937:71:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:34;14940:18;;;14933:62;-1:-1:-1;;;15011:18:1;;;15004:32;15053:19;;17937:71:0;14680:398:1;17937:71:0;-1:-1:-1;;;;;18044:18:0;;;;;;:9;:18;;;;;;;;18065:23;;;18044:44;;18183:12;:22;;;;;;;18234:37;1672:25:1;;;18044:18:0;;;18234:37;;1645:18:1;18234:37:0;;;;;;;18284:48;18304:7;18321:1;18325:6;18284:19;:48::i;:::-;17730:610;17665:675;;:::o;3774:191::-;3848:16;3867:6;;-1:-1:-1;;;;;3884:17:0;;;-1:-1:-1;;;;;;3884:17:0;;;;;;3917:40;;3867:6;;;;;;;3917:40;;3848:16;3917:40;3837:128;3774:191;:::o;36595:214::-;36732:58;;;-1:-1:-1;;;;;15275:32:1;;36732:58:0;;;15257:51:1;15324:18;;;;15317:34;;;36732:58:0;;;;;;;;;;15230:18:1;;;;36732:58:0;;;;;;;;-1:-1:-1;;;;;36732:58:0;-1:-1:-1;;;36732:58:0;;;36678:123;;36712:5;;36678:19;:123::i;71117:586::-;65891:7;:14;;-1:-1:-1;;65891:14:0;65901:4;65891:14;;;:7;71216:18:::1;71227:6:::0;71216:10:::1;:18::i;:::-;71192:42:::0;-1:-1:-1;71249:17:0;;71245:451:::1;;71320:18;::::0;::::1;;71316:279;;;71359:24;71440:25;57994:4;62119:5;71440:25;:::i;:::-;71386:80;;71387:27;57994:4;71387:13:::0;:27:::1;:::i;:::-;71386:80;;;;:::i;:::-;71359:107:::0;-1:-1:-1;71485:42:0::1;58226;71359:107:::0;71485:24:::1;:42::i;:::-;71546:33;71563:16:::0;71546:33;::::1;:::i;:::-;;;71340:255;71316:279;71643:16;::::0;:41:::1;::::0;-1:-1:-1;;;71643:16:0;::::1;-1:-1:-1::0;;;;;71643:16:0::1;71670:13:::0;71643:26:::1;:41::i;:::-;-1:-1:-1::0;;65928:7:0;:15;;-1:-1:-1;;65928:15:0;;;71117:586::o;15620:877::-;-1:-1:-1;;;;;15751:18:0;;15743:68;;;;-1:-1:-1;;;15743:68:0;;15564:2:1;15743:68:0;;;15546:21:1;15603:2;15583:18;;;15576:30;15642:34;15622:18;;;15615:62;-1:-1:-1;;;15693:18:1;;;15686:35;15738:19;;15743:68:0;15362:401:1;15743:68:0;-1:-1:-1;;;;;15830:16:0;;15822:64;;;;-1:-1:-1;;;15822:64:0;;15970:2:1;15822:64:0;;;15952:21:1;16009:2;15989:18;;;15982:30;16048:34;16028:18;;;16021:62;-1:-1:-1;;;16099:18:1;;;16092:33;16142:19;;15822:64:0;15768:399:1;15822:64:0;-1:-1:-1;;;;;15972:15:0;;15950:19;15972:15;;;:9;:15;;;;;;16020:21;;;;15998:109;;;;-1:-1:-1;;;15998:109:0;;16374:2:1;15998:109:0;;;16356:21:1;16413:2;16393:18;;;16386:30;16452:34;16432:18;;;16425:62;-1:-1:-1;;;16503:18:1;;;16496:36;16549:19;;15998:109:0;16172:402:1;15998:109:0;-1:-1:-1;;;;;16143:15:0;;;;;;;:9;:15;;;;;;16161:20;;;16143:38;;16361:13;;;;;;;;;;:23;;;;;;16413:26;;;;;;16175:6;1672:25:1;;1660:2;1645:18;;1526:177;16413:26:0;;;;;;;;16452:37;16472:4;16478:2;16482:6;66840:884;66982:20;67005:13;11167:12;;;11079:108;67005:13;66982:36;;67071:14;67088:7;2523;2550:6;-1:-1:-1;;;;;2550:6:0;;2477:87;67088:7;67128:15;;67071:24;;-1:-1:-1;;;;67128:15:0;;;;;:33;;;67157:4;-1:-1:-1;;;;;67147:14:0;:6;-1:-1:-1;;;;;67147:14:0;;67128:33;:49;;;;67175:2;-1:-1:-1;;;;;67165:12:0;:6;-1:-1:-1;;;;;67165:12:0;;67128:49;67106:115;;;;-1:-1:-1;;;67106:115:0;;16781:2:1;67106:115:0;;;16763:21:1;16820:2;16800:18;;;16793:30;-1:-1:-1;;;16839:18:1;;;16832:46;16895:18;;67106:115:0;16579:340:1;67106:115:0;-1:-1:-1;;;;;67287:28:0;;;;;;:22;:28;;;;;;;;;:75;;-1:-1:-1;;;;;;67336:26:0;;;;;;:22;:26;;;;;;;;67287:75;:148;;;-1:-1:-1;67409:11:0;;62119:5;;67394:26;;-1:-1:-1;;;67409:11:0;;67393:42;67409:11;67394:12;:26;:::i;:::-;67393:42;;;;:::i;:::-;67383:6;:52;;67287:148;67265:215;;;;-1:-1:-1;;;67265:215:0;;17126:2:1;67265:215:0;;;17108:21:1;17165:2;17145:18;;;17138:30;-1:-1:-1;;;17184:18:1;;;17177:47;17241:18;;67265:215:0;16924:341:1;67265:215:0;-1:-1:-1;;;;;67557:28:0;;;;;;:24;:28;;;;;;;;;:110;;-1:-1:-1;67639:13:0;;62119:5;;67624:28;;-1:-1:-1;;;67639:13:0;;67623:44;67639:13;67624:12;:28;:::i;:::-;67623:44;;;;:::i;:::-;-1:-1:-1;;;;;11367:18:0;;11340:7;11367:18;;;:9;:18;;;;;;67606:61;;67557:110;67535:181;;;;-1:-1:-1;;;67535:181:0;;17472:2:1;67535:181:0;;;17454:21:1;17511:2;17491:18;;;17484:30;-1:-1:-1;;;17530:18:1;;;17523:51;17591:18;;67535:181:0;17270:345:1;41650:723:0;42074:23;42100:106;42142:4;42100:106;;;;;;;;;;;;;;;;;42108:5;-1:-1:-1;;;;;42100:27:0;;;:106;;;;;:::i;:::-;42074:132;;42239:10;:17;42260:1;42239:22;:56;;;;42276:10;42265:30;;;;;;;;;;;;:::i;:::-;42217:148;;;;-1:-1:-1;;;42217:148:0;;18072:2:1;42217:148:0;;;18054:21:1;18111:2;18091:18;;;18084:30;18150:34;18130:18;;;18123:62;-1:-1:-1;;;18201:18:1;;;18194:40;18251:19;;42217:148:0;17870:406:1;71711:887:0;71944:16;;;71958:1;71944:16;;;;;;;;71764:7;;71834:15;;71764:7;;71944:16;;;;;;;;;;;;-1:-1:-1;71944:16:0;71920:40;;71989:4;71971;71976:1;71971:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;71971:23:0;;;-1:-1:-1;;;;;71971:23:0;;;;;72015:9;-1:-1:-1;;;;;72015:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72005:4;72010:1;72005:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;72005:26:0;;;-1:-1:-1;;;;;72005:26:0;;;;;72044:51;72061:4;72076:9;72088:6;72044:8;:51::i;:::-;72130:21;-1:-1:-1;;;;;72205:60:0;;;72284:6;72106:21;72357:4;72388;72412:21;:15;72430:3;72412:21;:::i;:::-;72205:243;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72188:384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72530:42;72188:384;;;72480:37;72504:13;72480:21;:37;:::i;:::-;72473:44;71711:887;-1:-1:-1;;;;;71711:887:0:o;72188:384::-;-1:-1:-1;72589:1:0;;71711:887;-1:-1:-1;;;;71711:887:0:o;27837:391::-;27966:6;27941:21;:31;;27919:110;;;;-1:-1:-1;;;27919:110:0;;19856:2:1;27919:110:0;;;19838:21:1;19895:2;19875:18;;;19868:30;19934:31;19914:18;;;19907:59;19983:18;;27919:110:0;19654:353:1;27919:110:0;28043:12;28061:9;-1:-1:-1;;;;;28061:14:0;28083:6;28061:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28042:52;;;28127:7;28105:115;;;;-1:-1:-1;;;28105:115:0;;20424:2:1;28105:115:0;;;20406:21:1;20463:2;20443:18;;;20436:30;20502:34;20482:18;;;20475:62;20573:28;20553:18;;;20546:56;20619:19;;28105:115:0;20222:422:1;29528:229:0;29665:12;29697:52;29719:6;29727:4;29733:1;29736:12;29697:21;:52::i;:::-;29690:59;29528:229;-1:-1:-1;;;;29528:229:0:o;30744:612::-;30914:12;30986:5;30961:21;:30;;30939:118;;;;-1:-1:-1;;;30939:118:0;;20851:2:1;30939:118:0;;;20833:21:1;20890:2;20870:18;;;20863:30;20929:34;20909:18;;;20902:62;-1:-1:-1;;;20980:18:1;;;20973:36;21026:19;;30939:118:0;20649:402:1;30939:118:0;31069:12;31083:23;31110:6;-1:-1:-1;;;;;31110:11:0;31129:5;31150:4;31110:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31068:97;;;;31196:152;31241:6;31266:7;31292:10;31321:12;31196:26;:152::i;:::-;31176:172;30744:612;-1:-1:-1;;;;;;;30744:612:0:o;33874:644::-;34059:12;34088:7;34084:427;;;34116:10;:17;34137:1;34116:22;34112:290;;-1:-1:-1;;;;;26873:19:0;;;34326:60;;;;-1:-1:-1;;;34326:60:0;;21550:2:1;34326:60:0;;;21532:21:1;21589:2;21569:18;;;21562:30;21628:31;21608:18;;;21601:59;21677:18;;34326:60:0;21348:353:1;34326:60:0;-1:-1:-1;34423:10:0;34416:17;;34084:427;34466:33;34474:10;34486:12;35246:17;;:21;35242:388;;35478:10;35472:17;35535:15;35522:10;35518:2;35514:19;35507:44;35242:388;35605:12;35598:20;;-1:-1:-1;;;35598:20:0;;;;;;;;:::i;206:250:1:-;291:1;301:113;315:6;312:1;309:13;301:113;;;391:11;;;385:18;372:11;;;365:39;337:2;330:10;301:113;;;-1:-1:-1;;448:1:1;430:16;;423:27;206:250::o;461:396::-;610:2;599:9;592:21;573:4;642:6;636:13;685:6;680:2;669:9;665:18;658:34;701:79;773:6;768:2;757:9;753:18;748:2;740:6;736:15;701:79;:::i;:::-;841:2;820:15;-1:-1:-1;;816:29:1;801:45;;;;848:2;797:54;;461:396;-1:-1:-1;;461:396:1:o;862:131::-;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:315;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1182:9;1169:23;1201:31;1226:5;1201:31;:::i;:::-;1251:5;1303:2;1288:18;;;;1275:32;;-1:-1:-1;;;998:315:1:o;2000:456::-;2077:6;2085;2093;2146:2;2134:9;2125:7;2121:23;2117:32;2114:52;;;2162:1;2159;2152:12;2114:52;2201:9;2188:23;2220:31;2245:5;2220:31;:::i;:::-;2270:5;-1:-1:-1;2327:2:1;2312:18;;2299:32;2340:33;2299:32;2340:33;:::i;:::-;2000:456;;2392:7;;-1:-1:-1;;;2446:2:1;2431:18;;;;2418:32;;2000:456::o;2461:118::-;2547:5;2540:13;2533:21;2526:5;2523:32;2513:60;;2569:1;2566;2559:12;2584:241;2640:6;2693:2;2681:9;2672:7;2668:23;2664:32;2661:52;;;2709:1;2706;2699:12;2661:52;2748:9;2735:23;2767:28;2789:5;2767:28;:::i;:::-;2814:5;2584:241;-1:-1:-1;;;2584:241:1:o;2830:750::-;2922:6;2930;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3047:9;3034:23;3076:18;3117:2;3109:6;3106:14;3103:34;;;3133:1;3130;3123:12;3103:34;3171:6;3160:9;3156:22;3146:32;;3216:7;3209:4;3205:2;3201:13;3197:27;3187:55;;3238:1;3235;3228:12;3187:55;3278:2;3265:16;3304:2;3296:6;3293:14;3290:34;;;3320:1;3317;3310:12;3290:34;3375:7;3368:4;3358:6;3355:1;3351:14;3347:2;3343:23;3339:34;3336:47;3333:67;;;3396:1;3393;3386:12;3333:67;3427:4;3419:13;;;;-1:-1:-1;3451:6:1;-1:-1:-1;;3492:20:1;;3479:34;3522:28;3479:34;3522:28;:::i;:::-;3569:5;3559:15;;;2830:750;;;;;:::o;3774:180::-;3833:6;3886:2;3874:9;3865:7;3861:23;3857:32;3854:52;;;3902:1;3899;3892:12;3854:52;-1:-1:-1;3925:23:1;;3774:180;-1:-1:-1;3774:180:1:o;3959:247::-;4018:6;4071:2;4059:9;4050:7;4046:23;4042:32;4039:52;;;4087:1;4084;4077:12;4039:52;4126:9;4113:23;4145:31;4170:5;4145:31;:::i;4435:159::-;4502:20;;4562:6;4551:18;;4541:29;;4531:57;;4584:1;4581;4574:12;4531:57;4435:159;;;:::o;4599:256::-;4665:6;4673;4726:2;4714:9;4705:7;4701:23;4697:32;4694:52;;;4742:1;4739;4732:12;4694:52;4765:28;4783:9;4765:28;:::i;:::-;4755:38;;4812:37;4845:2;4834:9;4830:18;4812:37;:::i;:::-;4802:47;;4599:256;;;;;:::o;5393:388::-;5461:6;5469;5522:2;5510:9;5501:7;5497:23;5493:32;5490:52;;;5538:1;5535;5528:12;5490:52;5577:9;5564:23;5596:31;5621:5;5596:31;:::i;:::-;5646:5;-1:-1:-1;5703:2:1;5688:18;;5675:32;5716:33;5675:32;5716:33;:::i;:::-;5768:7;5758:17;;;5393:388;;;;;:::o;5786:380::-;5865:1;5861:12;;;;5908;;;5929:61;;5983:4;5975:6;5971:17;5961:27;;5929:61;6036:2;6028:6;6025:14;6005:18;6002:38;5999:161;;6082:10;6077:3;6073:20;6070:1;6063:31;6117:4;6114:1;6107:15;6145:4;6142:1;6135:15;5999:161;;5786:380;;;:::o;6171:127::-;6232:10;6227:3;6223:20;6220:1;6213:31;6263:4;6260:1;6253:15;6287:4;6284:1;6277:15;6592:127;6653:10;6648:3;6644:20;6641:1;6634:31;6684:4;6681:1;6674:15;6708:4;6705:1;6698:15;6724:125;6789:9;;;6810:10;;;6807:36;;;6823:18;;:::i;13216:168::-;13283:6;13309:10;;;13321;;;13305:27;;13344:11;;;13341:37;;;13358:18;;:::i;:::-;13341:37;13216:168;;;;:::o;13389:::-;13462:9;;;13493;;13510:15;;;13504:22;;13490:37;13480:71;;13531:18;;:::i;13562:217::-;13602:1;13628;13618:132;;13672:10;13667:3;13663:20;13660:1;13653:31;13707:4;13704:1;13697:15;13735:4;13732:1;13725:15;13618:132;-1:-1:-1;13764:9:1;;13562:217::o;13784:128::-;13851:9;;;13872:11;;;13869:37;;;13886:18;;:::i;17620:245::-;17687:6;17740:2;17728:9;17719:7;17715:23;17711:32;17708:52;;;17756:1;17753;17746:12;17708:52;17788:9;17782:16;17807:28;17829:5;17807:28;:::i;18413:251::-;18483:6;18536:2;18524:9;18515:7;18511:23;18507:32;18504:52;;;18552:1;18549;18542:12;18504:52;18584:9;18578:16;18603:31;18628:5;18603:31;:::i;18669:980::-;18931:4;18979:3;18968:9;18964:19;19010:6;18999:9;18992:25;19036:2;19074:6;19069:2;19058:9;19054:18;19047:34;19117:3;19112:2;19101:9;19097:18;19090:31;19141:6;19176;19170:13;19207:6;19199;19192:22;19245:3;19234:9;19230:19;19223:26;;19284:2;19276:6;19272:15;19258:29;;19305:1;19315:195;19329:6;19326:1;19323:13;19315:195;;;19394:13;;-1:-1:-1;;;;;19390:39:1;19378:52;;19485:15;;;;19450:12;;;;19426:1;19344:9;19315:195;;;-1:-1:-1;;;;;;;19566:32:1;;;;19561:2;19546:18;;19539:60;-1:-1:-1;;;19630:3:1;19615:19;19608:35;19527:3;18669:980;-1:-1:-1;;;18669:980:1:o;21056:287::-;21185:3;21223:6;21217:13;21239:66;21298:6;21293:3;21286:4;21278:6;21274:17;21239:66;:::i;:::-;21321:16;;;;;21056:287;-1:-1:-1;;21056:287:1:o

Swarm Source

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