ETH Price: $2,469.76 (+5.92%)

Token

Gucci Grok X ($GUCCIX)
 

Overview

Max Total Supply

100,000,000,000 $GUCCIX

Holders

27

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
Gucci_Groke_X

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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




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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        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);
}

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


error GucciX__InvalidBuyFees();
error GucciX__InvalidSellFees();
error GucciX__InvalidtransferFees();
error GucciX__UnableToTransfer();

contract Gucci_Groke_X is ERC20, Ownable {
    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isWhitelisted;

    
    mapping(address => bool) public isLP;
    mapping (address=>bool) public  isBlacklisted;

    IUniswapV2Pair public mainPair;
    IUniswapV2Router02 public router;

    address public WETH;

    address payable public marketingWallet;
    address payable public lpWallet;
    


    uint public buyMarketing = 3;
    uint public buyLiquidity = 2;
    uint public totalBuyFee = 5;


    uint public sellMarketing = 5;
    uint public sellLiquidity = 5;
    uint public totalSellFee = 10;

     uint public transferMarketing = 5;
    uint public transferLiquidity = 5;
    uint public totaltransferFee = 10;

   

    uint public totalTokensMarketing;
    uint public totalTokensLiquidity;
   

    uint public threshold = 10_000 ether;
    uint public maxLimit=1000000 ether;

    uint public constant MAX_SUPPLY = 1_000_00_000_000 ether;
    uint private constant PERCENTAGE = 100;

    bool private swapping = false;
    bool public trading=true;
    bool public whitelistSale=true;

    event SetExclusionStatus(address indexed user, bool status);
    event UpdatedTreshhold(string,uint);
    event SetLpStatus(address indexed lpAddress, bool status);
    event SetBuyFees(uint totalFee, uint lpFee, uint marketingFee);
    event SetSellFees(
        uint totalFee,
        uint lpFee,
        uint marketingFee
    );
     event SettransferFees(
        uint totalFee,
        uint lpFee,
        uint marketingFee
    );
    event FailTransfer(address indexed user, uint amount);

    constructor(
        
    ) ERC20("Gucci Grok X", "$GUCCIX") {
        _transferOwnership(0x0e3B416f604951224B707c75Caa19528b1613467);
        
        _mint(owner(), MAX_SUPPLY);

        marketingWallet = payable(0xC6BE3C41C256cB83E052b417c39a4b53408cDd35);
        lpWallet = payable(0x13dC6aD7D602e8E787566C5b7bd4a158919785d5);
       

        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        WETH = router.WETH();
        address mp = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            WETH
        );

        mainPair = IUniswapV2Pair(mp);

        isExcludedFromFee[owner()] = true;
        isExcludedFromFee[address(this)] = true;
        isLP[mp] = true;
        _approve(address(this), address(router), type(uint256).max);
    }

    receive() external payable {}

    function _transfer(
        address from,
        address to,
        uint amount
    ) internal override {
        require(isBlacklisted[from]==false,"you are blacklisted");
        require(isBlacklisted[to]==false,"recipient is blacklisted");
        bool isBuy = isLP[from];
        bool canSwap = balanceOf(address(this)) > threshold;
            
        if (
            !swapping &&
            canSwap &&
            !isBuy &&
            !isExcludedFromFee[from] &&
            !isExcludedFromFee[to]
        ) {
            swapAndDistributeBNB();
        }

        if (!isExcludedFromFee[from] && !isExcludedFromFee[to]) {
        require(trading==true,"Trading is off");
        require(amount<=maxLimit,"More than max is not allowed!");
        if(whitelistSale==true)
        {
            require(isWhitelisted[from]==true || isWhitelisted[to]==true,"only whitelist allowed");
        }
      
            bool isSell = isLP[to];
            uint fee;
            if (isBuy && totalBuyFee > 0) {
                fee = (amount * totalBuyFee) / PERCENTAGE;
                amount -= fee;
                distributeBuy(fee);
                super._transfer(from, address(this), fee);
            } else if (isSell && totalSellFee > 0) {
                fee = (amount * totalSellFee) / PERCENTAGE;
                amount -= fee;
                distributeSell(fee);
                super._transfer(from, address(this), fee);
            }
            else if (!isSell && !isBuy && totaltransferFee > 0) {
                fee = (amount * totaltransferFee) / PERCENTAGE;
                amount -= fee;
                distributetransfer(fee);
                super._transfer(from, address(this), fee);
            }
        }

      

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

    function distributeBuy(uint amount) internal {
        totalTokensMarketing += (amount * buyMarketing) / totalBuyFee;
        totalTokensLiquidity += (amount * buyLiquidity) / totalBuyFee;
    }

    function distributeSell(uint amount) internal {
        totalTokensMarketing += (amount * sellMarketing) / totalSellFee;
        totalTokensLiquidity += (amount * sellLiquidity) / totalSellFee;
    }

       function distributetransfer(uint amount) internal {
        totalTokensMarketing += (amount * transferMarketing) / totaltransferFee;
        totalTokensLiquidity += (amount * transferLiquidity) / totaltransferFee;
    }

    function EmergencyswapAndDistributeBNB() external onlyOwner {
        swapping = true;

        uint toSwap = balanceOf(address(this));

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            toSwap,
            0,
            path,
            address(this),
            block.timestamp
        );

        toSwap = address(this).balance;
        uint totalTokens = totalTokensMarketing +
            totalTokensLiquidity ;
        if (totalTokens == 0) totalTokens = 1;

        uint marketingAmount = (toSwap * totalTokensMarketing) / totalTokens;
        uint liquidityAmount = (toSwap * totalTokensLiquidity) / totalTokens;
       

        totalTokensMarketing = 0;
        totalTokensLiquidity = 0;
        

        (bool succ, ) = marketingWallet.call{value: marketingAmount}("");
        if (!succ) emit FailTransfer(marketingWallet, marketingAmount);
        (succ, ) = lpWallet.call{value: liquidityAmount}("");
        if (!succ) emit FailTransfer(lpWallet, liquidityAmount);

        swapping = false;
    }

    function swapAndDistributeBNB() internal {
        swapping = true;

        uint toSwap = balanceOf(address(this));

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = WETH;

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            toSwap,
            0,
            path,
            address(this),
            block.timestamp
        );

        toSwap = address(this).balance;
        uint totalTokens = totalTokensMarketing +
            totalTokensLiquidity ;
        if (totalTokens == 0) totalTokens = 1;

        uint marketingAmount = (toSwap * totalTokensMarketing) / totalTokens;
        uint liquidityAmount = (toSwap * totalTokensLiquidity) / totalTokens;
       

        totalTokensMarketing = 0;
        totalTokensLiquidity = 0;
        

        (bool succ, ) = marketingWallet.call{value: marketingAmount}("");
        if (!succ) emit FailTransfer(marketingWallet, marketingAmount);
        (succ, ) = lpWallet.call{value: liquidityAmount}("");
        if (!succ) emit FailTransfer(lpWallet, liquidityAmount);

        swapping = false;
    }


    function setExcludedAddress(address _user, bool status) external onlyOwner {
        require(isExcludedFromFee[_user] != status, "The wallet already has that value set!");
        isExcludedFromFee[_user] = status;
        emit SetExclusionStatus(_user, status);
    }

   

    function setLP(address _lp, bool status) external onlyOwner {
        require(isLP[_lp] != status, "The wallet already has that value set!");
        isLP[_lp] = status;
        emit SetLpStatus(_lp, status);
    }

    function setBuyFees(uint lpFee, uint marketingFee) external onlyOwner {
        uint fullBuyFee = lpFee + marketingFee;
        if (fullBuyFee > 45) revert GucciX__InvalidBuyFees();

        buyMarketing = marketingFee;
        buyLiquidity = lpFee;
        totalBuyFee = fullBuyFee;
        emit SetBuyFees(totalBuyFee, lpFee, marketingFee);
    }

    function setSellFees(
        uint lpFee,
        uint marketingFee
    ) external onlyOwner {
        uint fullSellFee = lpFee + marketingFee;
        if (fullSellFee > 45) revert GucciX__InvalidSellFees();

        sellMarketing = marketingFee;
        sellLiquidity = lpFee;
        totalSellFee = fullSellFee;

        emit SetSellFees(totalSellFee, lpFee, marketingFee);
    }

        function settransferFees(
        uint lpFee,
        uint marketingFee
    ) external onlyOwner {
        uint fulltransferFee = lpFee + marketingFee;
        if (fulltransferFee > 45) revert GucciX__InvalidtransferFees();

        transferMarketing = marketingFee;
        transferLiquidity = lpFee;
        totaltransferFee = fulltransferFee;

        emit SettransferFees(totaltransferFee, lpFee, marketingFee);
    }

    function claimLeftoverBNB() external onlyOwner {
        uint balance = address(this).balance;
        (bool succ, ) = payable(msg.sender).call{value: balance}("");
        if (!succ) revert GucciX__UnableToTransfer();
    }

     function setblacklisted(address _addr,bool _state) external  onlyOwner {
        isBlacklisted[_addr]=_state;
    }

    function setRouterApprovalToMax() external onlyOwner {
        _approve(address(this), address(router), type(uint256).max);
    }

    function changeThreshold(uint _newThreshold) external onlyOwner {
        require(
            _newThreshold < MAX_SUPPLY / 10,
            "Cant be above 10% max supply"
        );
        threshold = _newThreshold;
        emit UpdatedTreshhold("New Threshhold was set to:",_newThreshold);
    }

    function Fliptrading (bool _state) external onlyOwner{
        trading=_state;
    }

    function setMaxLimit(uint256 _limit) external onlyOwner{
        maxLimit=_limit;
    }

    function FlipwhitelistSale (bool _state) external onlyOwner{
        whitelistSale=_state;
    }

     function setWhitelistAddress(address _user, bool status) external onlyOwner {
        require(isWhitelisted[_user] != status, "The wallet already has that value set!");
        isWhitelisted[_user] = status;
      
    }

    function addAddressToWhitelist(address addr) onlyOwner public returns(bool success) {
    if (!isWhitelisted[addr]) {
      isWhitelisted[addr] = true;
      success = true;
    }
  }

  
  function addAddressesToWhitelist(address[] memory addrs) onlyOwner public returns(bool success) {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (addAddressToWhitelist(addrs[i])) {
        success = true;
      }
    }
  }

  
  function removeAddressFromWhitelist(address addr) onlyOwner public returns(bool success) {
    if (isWhitelisted[addr]) {
      isWhitelisted[addr] = false;
      success = true;
    }
  }


  function removeAddressesFromWhitelist(address[] memory addrs) onlyOwner public returns(bool success) {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (removeAddressFromWhitelist(addrs[i])) {
        success = true;
      }
    }
  }

  function setWallets(address payable _lpWallet, address payable _marketingWallet) external onlyOwner{
    lpWallet=_lpWallet;
    marketingWallet=_marketingWallet;
  }


    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"GucciX__InvalidBuyFees","type":"error"},{"inputs":[],"name":"GucciX__InvalidSellFees","type":"error"},{"inputs":[],"name":"GucciX__InvalidtransferFees","type":"error"},{"inputs":[],"name":"GucciX__UnableToTransfer","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FailTransfer","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":"uint256","name":"totalFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetExclusionStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"lpAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLpStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lpFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"SettransferFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"UpdatedTreshhold","type":"event"},{"inputs":[],"name":"EmergencyswapAndDistributeBNB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"Fliptrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"FlipwhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"changeThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimLeftoverBNB","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":"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":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromWhitelist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setExcludedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRouterApprovalToMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_lpWallet","type":"address"},{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setblacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpFee","type":"uint256"},{"internalType":"uint256","name":"marketingFee","type":"uint256"}],"name":"settransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"threshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totaltransferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"transferLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526003600f5560026010556005601181905560128190556013819055600a6014819055601582905560169190915560175569021e19e0c9bab2400000601a5569d3c21bcecceda1000000601b55601c805462ffffff1916620101001790553480156200006d575f80fd5b506040518060400160405280600c81526020016b08eeac6c6d2408ee4ded640b60a31b815250604051806040016040528060078152602001660488eaa868692b60cb1b8152508160039081620000c491906200068b565b506004620000d382826200068b565b505050620000f0620000ea620003a660201b60201c565b620003aa565b6200010f730e3b416f604951224b707c75caa19528b1613467620003aa565b6200013a620001266005546001600160a01b031690565b6c01431e0fae6d7217caa0000000620003fb565b600d805473c6be3c41c256cb83e052b417c39a4b53408cdd356001600160a01b031991821617909155600e80547313dc6ad7d602e8e787566c5b7bd4a158919785d5908316179055600b8054737a250d5630b4cf539739df2c5dacb4c659f2488d921682179055604080516315ab88c960e31b8152905163ad5c4648916004808201926020929091908290030181865afa158015620001db573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000201919062000753565b600c80546001600160a01b0319166001600160a01b03928316179055600b546040805163c45a015560e01b815290515f93929092169163c45a0155916004808201926020929091908290030181865afa15801562000261573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000287919062000753565b600c546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303815f875af1158015620002d6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002fc919062000753565b600a80546001600160a01b0319166001600160a01b0383161790559050600160065f620003316005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553080825260068552838220805487166001908117909155878416835260089095529290208054909416909217909255600b546200039f9291165f19620004c0565b50620007a8565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004575760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f8282546200046a919062000782565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620005245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016200044e565b6001600160a01b038216620005875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200044e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200061557607f821691505b6020821081036200063457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620005e7575f81815260208120601f850160051c81016020861015620006625750805b601f850160051c820191505b8181101562000683578281556001016200066e565b505050505050565b81516001600160401b03811115620006a757620006a7620005ec565b620006bf81620006b8845462000600565b846200063a565b602080601f831160018114620006f5575f8415620006dd5750858301515b5f19600386901b1c1916600185901b17855562000683565b5f85815260208120601f198616915b82811015620007255788860151825594840194600190910190840162000704565b50858210156200074357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000764575f80fd5b81516001600160a01b03811681146200077b575f80fd5b9392505050565b80820180821115620007a257634e487b7160e01b5f52601160045260245ffd5b92915050565b612c6780620007b65f395ff3fe608060405260043610610374575f3560e01c80637df0f767116101c8578063bf8bcee4116100fd578063e2ec6ec31161009d578063f196782c1161006d578063f196782c14610a51578063f2fde38b14610a70578063f887ea4014610a8f578063fe575a8714610abb575f80fd5b8063e2ec6ec3146109ea578063e729aeba14610a09578063eb1fbc3b14610a1e578063ec44acf214610a33575f80fd5b8063cba6c7d6116100d8578063cba6c7d614610946578063d3f6a1571461095b578063daac9a921461097a578063dd62ed3e14610999575f80fd5b8063bf8bcee4146108f4578063c5a4aabc14610913578063c91c388a14610932575f80fd5b80639fd8234e11610168578063a9059cbb11610143578063a9059cbb14610875578063acd502bb14610894578063ad5c4648146108a9578063b2d8f208146108d5575f80fd5b80639fd8234e14610822578063a457c2d714610841578063a8b9f94d14610860575f80fd5b80638da5cb5b116101a35780638da5cb5b146107ba5780638de03655146107e457806395d89b41146107f95780639d9241ec1461080d575f80fd5b80637df0f7671461074b578063838227111461077957806385af30c51461078e575f80fd5b806339049862116102a95780636303516c1161024957806370a082311161021957806370a08231146106ab578063715018a6146106ec57806375f0a874146107005780637b9417c81461072c575f80fd5b80636303516c14610607578063694e80c3146106585780636b41ae0c146106775780636e0531511461068c575f80fd5b80633f914aef116102845780633f914aef1461059057806342cde4e8146105af5780635342acb4146105c457806359b107b9146105f2575f80fd5b8063390498621461052f57806339509351146105435780633af32abf14610562575f80fd5b806323b872dd1161031457806328d67938116102ef57806328d67938146104b6578063313ce567146104d557806331ffd6f1146104f057806332cb6b0c1461050f575f80fd5b806323b872dd1461045957806324953eaa14610478578063286dd3f514610497575f80fd5b806310166f401161034f57806310166f40146103ee57806313d9ce341461041157806318160ddd146104305780631a861d2614610444575f80fd5b806306fdde031461037f578063095ea7b3146103a95780630d4d674e146103d8575f80fd5b3661037b57005b5f80fd5b34801561038a575f80fd5b50610393610ae9565b6040516103a09190612764565b60405180910390f35b3480156103b4575f80fd5b506103c86103c33660046127f9565b610b79565b60405190151581526020016103a0565b3480156103e3575f80fd5b506103ec610b92565b005b3480156103f9575f80fd5b5061040360135481565b6040519081526020016103a0565b34801561041c575f80fd5b506103ec61042b366004612832565b610be1565b34801561043b575f80fd5b50600254610403565b34801561044f575f80fd5b50610403601b5481565b348015610464575f80fd5b506103c8610473366004612852565b610c21565b348015610483575f80fd5b506103c86104923660046128bd565b610c44565b3480156104a2575f80fd5b506103c86104b136600461299b565b610c9c565b3480156104c1575f80fd5b506103ec6104d03660046129b6565b610d25565b3480156104e0575f80fd5b50604051601281526020016103a0565b3480156104fb575f80fd5b50601c546103c89062010000900460ff1681565b34801561051a575f80fd5b506104036c01431e0fae6d7217caa000000081565b34801561053a575f80fd5b506103ec610e78565b34801561054e575f80fd5b506103c861055d3660046127f9565b6111c7565b34801561056d575f80fd5b506103c861057c36600461299b565b60076020525f908152604090205460ff1681565b34801561059b575f80fd5b506103ec6105aa3660046129b6565b611212565b3480156105ba575f80fd5b50610403601a5481565b3480156105cf575f80fd5b506103c86105de36600461299b565b60066020525f908152604090205460ff1681565b3480156105fd575f80fd5b5061040360115481565b348015610612575f80fd5b50600e546106339073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a0565b348015610663575f80fd5b506103ec6106723660046129e9565b61132b565b348015610682575f80fd5b5061040360125481565b348015610697575f80fd5b506103ec6106a63660046129b6565b611421565b3480156106b6575f80fd5b506104036106c536600461299b565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b3480156106f7575f80fd5b506103ec61147e565b34801561070b575f80fd5b50600d546106339073ffffffffffffffffffffffffffffffffffffffff1681565b348015610737575f80fd5b506103c861074636600461299b565b61148f565b348015610756575f80fd5b506103c861076536600461299b565b60086020525f908152604090205460ff1681565b348015610784575f80fd5b5061040360175481565b348015610799575f80fd5b50600a546106339073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107c5575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610633565b3480156107ef575f80fd5b5061040360105481565b348015610804575f80fd5b50610393611517565b348015610818575f80fd5b5061040360145481565b34801561082d575f80fd5b506103ec61083c366004612a00565b611526565b34801561084c575f80fd5b506103c861085b3660046127f9565b6115cc565b34801561086b575f80fd5b50610403600f5481565b348015610880575f80fd5b506103c861088f3660046127f9565b61169c565b34801561089f575f80fd5b5061040360165481565b3480156108b4575f80fd5b50600c546106339073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108e0575f80fd5b506103ec6108ef366004612a00565b6116a9565b3480156108ff575f80fd5b506103ec61090e3660046129e9565b611746565b34801561091e575f80fd5b506103ec61092d366004612832565b611753565b34801561093d575f80fd5b506103ec611792565b348015610951575f80fd5b5061040360185481565b348015610966575f80fd5b506103ec610975366004612a20565b61181f565b348015610985575f80fd5b506103ec610994366004612a00565b61187a565b3480156109a4575f80fd5b506104036109b3366004612a20565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156109f5575f80fd5b506103c8610a043660046128bd565b611917565b348015610a14575f80fd5b5061040360155481565b348015610a29575f80fd5b5061040360195481565b348015610a3e575f80fd5b50601c546103c890610100900460ff1681565b348015610a5c575f80fd5b506103ec610a6b3660046129b6565b611969565b348015610a7b575f80fd5b506103ec610a8a36600461299b565b611aaf565b348015610a9a575f80fd5b50600b546106339073ffffffffffffffffffffffffffffffffffffffff1681565b348015610ac6575f80fd5b506103c8610ad536600461299b565b60096020525f908152604090205460ff1681565b606060038054610af890612a57565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2490612a57565b8015610b6f5780601f10610b4657610100808354040283529160200191610b6f565b820191905f5260205f20905b815481529060010190602001808311610b5257829003601f168201915b5050505050905090565b5f33610b86818585611b66565b60019150505b92915050565b610b9a611d18565b600b54610bdf90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611b66565b565b610be9611d18565b601c805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b5f33610c2e858285611d99565b610c39858585611e6f565b506001949350505050565b5f610c4d611d18565b5f5b8251811015610c9657610c7a838281518110610c6d57610c6d612aa2565b6020026020010151610c9c565b15610c8457600191505b80610c8e81612afc565b915050610c4f565b50919050565b5f610ca5611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205460ff1615610d20575073ffffffffffffffffffffffffffffffffffffffff81165f90815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560015b919050565b610d2d611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526008602052604090205481151560ff909116151503610dee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5468652077616c6c657420616c72656164792068617320746861742076616c7560448201527f652073657421000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82165f8181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f55b60110f970be54878d8bfe021d5cd0772df53f2e15bb8207e0f4c890c950ea91015b60405180910390a25050565b610e80611d18565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055305f9081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905030815f81518110610eee57610eee612aa2565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600c54825191169082906001908110610f2c57610f2c612aa2565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790610f979085905f90869030904290600401612b33565b5f604051808303815f87803b158015610fae575f80fd5b505af1158015610fc0573d5f803e3d5ffd5b505050504791505f601954601854610fd89190612bbc565b9050805f03610fe5575060015b5f8160185485610ff59190612bcf565b610fff9190612be6565b90505f82601954866110119190612bcf565b61101b9190612be6565b5f60188190556019819055600d54604051929350909173ffffffffffffffffffffffffffffffffffffffff9091169084908381818185875af1925050503d805f8114611082576040519150601f19603f3d011682016040523d82523d5f602084013e611087565b606091505b50509050806110e057600d5460405184815273ffffffffffffffffffffffffffffffffffffffff909116907f11e717e1448fb29602b166d1efdb1695d9c5e1160a8001f0a431532ca6d154499060200160405180910390a25b600e5460405173ffffffffffffffffffffffffffffffffffffffff9091169083905f81818185875af1925050503d805f8114611137576040519150601f19603f3d011682016040523d82523d5f602084013e61113c565b606091505b5050809150508061119757600e5460405183815273ffffffffffffffffffffffffffffffffffffffff909116907f11e717e1448fb29602b166d1efdb1695d9c5e1160a8001f0a431532ca6d154499060200160405180910390a25b5050601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610b86908290869061120d908790612bbc565b611b66565b61121a611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205481151560ff9091161515036112d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5468652077616c6c657420616c72656164792068617320746861742076616c7560448201527f65207365742100000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611333611d18565b61134b600a6c01431e0fae6d7217caa0000000612be6565b81106113b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616e742062652061626f766520313025206d617820737570706c79000000006044820152606401610de5565b601a81815560408051818152808201929092527f4e657720546872657368686f6c64207761732073657420746f3a000000000000606083015260208201839052517f99868de4f7dff0fc73bf078aff5cff658eda3bf0e4d4228c7ec6374ed28e94b39181900360800190a150565b611429611d18565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611486611d18565b610bdf5f6123a2565b5f611498611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205460ff16610d20575073ffffffffffffffffffffffffffffffffffffffff165f90815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915590565b606060048054610af890612a57565b61152e611d18565b5f6115398284612bbc565b9050602d811115611576576040517f31bc865d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60128290556013839055601481905560408051828152602081018590529081018390527f3de2715c8363c0e8144c3eb2c16ea96e693d3467e6f22566e2622aaffbef697a906060015b60405180910390a1505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610de5565b610c398286868403611b66565b5f33610b86818585611e6f565b6116b1611d18565b5f6116bc8284612bbc565b9050602d8111156116f9576040517ff252635300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f8290556010839055601181905560408051828152602081018590529081018390527f7cd0e98e90b672c3b55db6cf5f77f00a1ca751e0494a29786efa42ef670f697b906060016115bf565b61174e611d18565b601b55565b61175b611d18565b601c8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b61179a611d18565b60405147905f90339083908381818185875af1925050503d805f81146117db576040519150601f19603f3d011682016040523d82523d5f602084013e6117e0565b606091505b505090508061181b576040517f34f8362b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b611827611d18565b600e805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600d8054929093169116179055565b611882611d18565b5f61188d8284612bbc565b9050602d8111156118ca576040517fccfb8d9d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60158290556016839055601781905560408051828152602081018590529081018390527fc5fa9f73434ae30bda25f9f2c8e207a1c023f0ffef50b675f7afe5144affe00c906060016115bf565b5f611920611d18565b5f5b8251811015610c965761194d83828151811061194057611940612aa2565b602002602001015161148f565b1561195757600191505b8061196181612afc565b915050611922565b611971611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526006602052604090205481151560ff909116151503611a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5468652077616c6c657420616c72656164792068617320746861742076616c7560448201527f65207365742100000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff82165f8181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f926aa5b668417cf93f5146a62276c847038f033b1ec9452fef4a3297036d44529101610e6c565b611ab7611d18565b73ffffffffffffffffffffffffffffffffffffffff8116611b5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610de5565b611b63816123a2565b50565b73ffffffffffffffffffffffffffffffffffffffff8316611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff8216611cab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e695781811015611e5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610de5565b611e698484848403611b66565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526009602052604090205460ff1615611efe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f796f752061726520626c61636b6c6973746564000000000000000000000000006044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526009602052604090205460ff1615611f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f726563697069656e7420697320626c61636b6c697374656400000000000000006044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260086020908152604080832054601a5430855292849052922054601c5460ff93841693919092109116158015611fdb5750805b8015611fe5575081155b8015612016575073ffffffffffffffffffffffffffffffffffffffff85165f9081526006602052604090205460ff16155b8015612047575073ffffffffffffffffffffffffffffffffffffffff84165f9081526006602052604090205460ff16155b1561205457612054610e80565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526006602052604090205460ff161580156120ae575073ffffffffffffffffffffffffffffffffffffffff84165f9081526006602052604090205460ff16155b1561239057601c5460ff61010090910416151560011461212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f54726164696e67206973206f66660000000000000000000000000000000000006044820152606401610de5565b601b54831115612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d6f7265207468616e206d6178206973206e6f7420616c6c6f776564210000006044820152606401610de5565b601c5462010000900460ff1615156001036122725773ffffffffffffffffffffffffffffffffffffffff85165f9081526007602052604090205460ff1615156001148061220c575073ffffffffffffffffffffffffffffffffffffffff84165f9081526007602052604090205460ff1615156001145b612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792077686974656c69737420616c6c6f776564000000000000000000006044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526008602052604081205460ff16908380156122a957505f601154115b156122ef576064601154866122be9190612bcf565b6122c89190612be6565b90506122d48186612c1e565b94506122df81612418565b6122ea873083612479565b61238d565b8180156122fd57505f601454115b15612333576064601454866123129190612bcf565b61231c9190612be6565b90506123288186612c1e565b94506122df816126e6565b8115801561233f575083155b801561234c57505f601754115b1561238d576064601754866123619190612bcf565b61236b9190612be6565b90506123778186612c1e565b945061238281612725565b61238d873083612479565b50505b61239b858585612479565b5050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b601154600f546124289083612bcf565b6124329190612be6565b60185f8282546124429190612bbc565b90915550506011546010546124579083612bcf565b6124619190612be6565b60195f8282546124719190612bbc565b909155505050565b73ffffffffffffffffffffffffffffffffffffffff831661251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff82166125bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e69565b6014546012546126f69083612bcf565b6127009190612be6565b60185f8282546127109190612bbc565b90915550506014546013546124579083612bcf565b6017546015546127359083612bcf565b61273f9190612be6565b60185f82825461274f9190612bbc565b90915550506017546016546124579083612bcf565b5f6020808352835180828501525f5b8181101561278f57858101830151858201604001528201612773565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114611b63575f80fd5b8035610d20816127cd565b5f806040838503121561280a575f80fd5b8235612815816127cd565b946020939093013593505050565b80358015158114610d20575f80fd5b5f60208284031215612842575f80fd5b61284b82612823565b9392505050565b5f805f60608486031215612864575f80fd5b833561286f816127cd565b9250602084013561287f816127cd565b929592945050506040919091013590565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208083850312156128ce575f80fd5b823567ffffffffffffffff808211156128e5575f80fd5b818501915085601f8301126128f8575f80fd5b81358181111561290a5761290a612890565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561294d5761294d612890565b60405291825284820192508381018501918883111561296a575f80fd5b938501935b8285101561298f57612980856127ee565b8452938501939285019261296f565b98975050505050505050565b5f602082840312156129ab575f80fd5b813561284b816127cd565b5f80604083850312156129c7575f80fd5b82356129d2816127cd565b91506129e060208401612823565b90509250929050565b5f602082840312156129f9575f80fd5b5035919050565b5f8060408385031215612a11575f80fd5b50508035926020909101359150565b5f8060408385031215612a31575f80fd5b8235612a3c816127cd565b91506020830135612a4c816127cd565b809150509250929050565b600181811c90821680612a6b57607f821691505b602082108103610c96577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b2c57612b2c612acf565b5060010190565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612b8e57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101612b5c565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820180821115610b8c57610b8c612acf565b8082028115828204841417610b8c57610b8c612acf565b5f82612c19577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b81810381811115610b8c57610b8c612acf56fea2646970667358221220ec3cd60e8a6ee99f91947b11fa75224d98f5ee6fab4d7441651e98e51b4dee0664736f6c63430008150033

Deployed Bytecode

0x608060405260043610610374575f3560e01c80637df0f767116101c8578063bf8bcee4116100fd578063e2ec6ec31161009d578063f196782c1161006d578063f196782c14610a51578063f2fde38b14610a70578063f887ea4014610a8f578063fe575a8714610abb575f80fd5b8063e2ec6ec3146109ea578063e729aeba14610a09578063eb1fbc3b14610a1e578063ec44acf214610a33575f80fd5b8063cba6c7d6116100d8578063cba6c7d614610946578063d3f6a1571461095b578063daac9a921461097a578063dd62ed3e14610999575f80fd5b8063bf8bcee4146108f4578063c5a4aabc14610913578063c91c388a14610932575f80fd5b80639fd8234e11610168578063a9059cbb11610143578063a9059cbb14610875578063acd502bb14610894578063ad5c4648146108a9578063b2d8f208146108d5575f80fd5b80639fd8234e14610822578063a457c2d714610841578063a8b9f94d14610860575f80fd5b80638da5cb5b116101a35780638da5cb5b146107ba5780638de03655146107e457806395d89b41146107f95780639d9241ec1461080d575f80fd5b80637df0f7671461074b578063838227111461077957806385af30c51461078e575f80fd5b806339049862116102a95780636303516c1161024957806370a082311161021957806370a08231146106ab578063715018a6146106ec57806375f0a874146107005780637b9417c81461072c575f80fd5b80636303516c14610607578063694e80c3146106585780636b41ae0c146106775780636e0531511461068c575f80fd5b80633f914aef116102845780633f914aef1461059057806342cde4e8146105af5780635342acb4146105c457806359b107b9146105f2575f80fd5b8063390498621461052f57806339509351146105435780633af32abf14610562575f80fd5b806323b872dd1161031457806328d67938116102ef57806328d67938146104b6578063313ce567146104d557806331ffd6f1146104f057806332cb6b0c1461050f575f80fd5b806323b872dd1461045957806324953eaa14610478578063286dd3f514610497575f80fd5b806310166f401161034f57806310166f40146103ee57806313d9ce341461041157806318160ddd146104305780631a861d2614610444575f80fd5b806306fdde031461037f578063095ea7b3146103a95780630d4d674e146103d8575f80fd5b3661037b57005b5f80fd5b34801561038a575f80fd5b50610393610ae9565b6040516103a09190612764565b60405180910390f35b3480156103b4575f80fd5b506103c86103c33660046127f9565b610b79565b60405190151581526020016103a0565b3480156103e3575f80fd5b506103ec610b92565b005b3480156103f9575f80fd5b5061040360135481565b6040519081526020016103a0565b34801561041c575f80fd5b506103ec61042b366004612832565b610be1565b34801561043b575f80fd5b50600254610403565b34801561044f575f80fd5b50610403601b5481565b348015610464575f80fd5b506103c8610473366004612852565b610c21565b348015610483575f80fd5b506103c86104923660046128bd565b610c44565b3480156104a2575f80fd5b506103c86104b136600461299b565b610c9c565b3480156104c1575f80fd5b506103ec6104d03660046129b6565b610d25565b3480156104e0575f80fd5b50604051601281526020016103a0565b3480156104fb575f80fd5b50601c546103c89062010000900460ff1681565b34801561051a575f80fd5b506104036c01431e0fae6d7217caa000000081565b34801561053a575f80fd5b506103ec610e78565b34801561054e575f80fd5b506103c861055d3660046127f9565b6111c7565b34801561056d575f80fd5b506103c861057c36600461299b565b60076020525f908152604090205460ff1681565b34801561059b575f80fd5b506103ec6105aa3660046129b6565b611212565b3480156105ba575f80fd5b50610403601a5481565b3480156105cf575f80fd5b506103c86105de36600461299b565b60066020525f908152604090205460ff1681565b3480156105fd575f80fd5b5061040360115481565b348015610612575f80fd5b50600e546106339073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103a0565b348015610663575f80fd5b506103ec6106723660046129e9565b61132b565b348015610682575f80fd5b5061040360125481565b348015610697575f80fd5b506103ec6106a63660046129b6565b611421565b3480156106b6575f80fd5b506104036106c536600461299b565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b3480156106f7575f80fd5b506103ec61147e565b34801561070b575f80fd5b50600d546106339073ffffffffffffffffffffffffffffffffffffffff1681565b348015610737575f80fd5b506103c861074636600461299b565b61148f565b348015610756575f80fd5b506103c861076536600461299b565b60086020525f908152604090205460ff1681565b348015610784575f80fd5b5061040360175481565b348015610799575f80fd5b50600a546106339073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107c5575f80fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610633565b3480156107ef575f80fd5b5061040360105481565b348015610804575f80fd5b50610393611517565b348015610818575f80fd5b5061040360145481565b34801561082d575f80fd5b506103ec61083c366004612a00565b611526565b34801561084c575f80fd5b506103c861085b3660046127f9565b6115cc565b34801561086b575f80fd5b50610403600f5481565b348015610880575f80fd5b506103c861088f3660046127f9565b61169c565b34801561089f575f80fd5b5061040360165481565b3480156108b4575f80fd5b50600c546106339073ffffffffffffffffffffffffffffffffffffffff1681565b3480156108e0575f80fd5b506103ec6108ef366004612a00565b6116a9565b3480156108ff575f80fd5b506103ec61090e3660046129e9565b611746565b34801561091e575f80fd5b506103ec61092d366004612832565b611753565b34801561093d575f80fd5b506103ec611792565b348015610951575f80fd5b5061040360185481565b348015610966575f80fd5b506103ec610975366004612a20565b61181f565b348015610985575f80fd5b506103ec610994366004612a00565b61187a565b3480156109a4575f80fd5b506104036109b3366004612a20565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156109f5575f80fd5b506103c8610a043660046128bd565b611917565b348015610a14575f80fd5b5061040360155481565b348015610a29575f80fd5b5061040360195481565b348015610a3e575f80fd5b50601c546103c890610100900460ff1681565b348015610a5c575f80fd5b506103ec610a6b3660046129b6565b611969565b348015610a7b575f80fd5b506103ec610a8a36600461299b565b611aaf565b348015610a9a575f80fd5b50600b546106339073ffffffffffffffffffffffffffffffffffffffff1681565b348015610ac6575f80fd5b506103c8610ad536600461299b565b60096020525f908152604090205460ff1681565b606060038054610af890612a57565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2490612a57565b8015610b6f5780601f10610b4657610100808354040283529160200191610b6f565b820191905f5260205f20905b815481529060010190602001808311610b5257829003601f168201915b5050505050905090565b5f33610b86818585611b66565b60019150505b92915050565b610b9a611d18565b600b54610bdf90309073ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611b66565b565b610be9611d18565b601c805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b5f33610c2e858285611d99565b610c39858585611e6f565b506001949350505050565b5f610c4d611d18565b5f5b8251811015610c9657610c7a838281518110610c6d57610c6d612aa2565b6020026020010151610c9c565b15610c8457600191505b80610c8e81612afc565b915050610c4f565b50919050565b5f610ca5611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205460ff1615610d20575073ffffffffffffffffffffffffffffffffffffffff81165f90815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905560015b919050565b610d2d611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526008602052604090205481151560ff909116151503610dee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5468652077616c6c657420616c72656164792068617320746861742076616c7560448201527f652073657421000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82165f8181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f55b60110f970be54878d8bfe021d5cd0772df53f2e15bb8207e0f4c890c950ea91015b60405180910390a25050565b610e80611d18565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055305f9081526020818152604080832054815160028082526060820184529194939092908301908036833701905050905030815f81518110610eee57610eee612aa2565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600c54825191169082906001908110610f2c57610f2c612aa2565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600b546040517f791ac94700000000000000000000000000000000000000000000000000000000815291169063791ac94790610f979085905f90869030904290600401612b33565b5f604051808303815f87803b158015610fae575f80fd5b505af1158015610fc0573d5f803e3d5ffd5b505050504791505f601954601854610fd89190612bbc565b9050805f03610fe5575060015b5f8160185485610ff59190612bcf565b610fff9190612be6565b90505f82601954866110119190612bcf565b61101b9190612be6565b5f60188190556019819055600d54604051929350909173ffffffffffffffffffffffffffffffffffffffff9091169084908381818185875af1925050503d805f8114611082576040519150601f19603f3d011682016040523d82523d5f602084013e611087565b606091505b50509050806110e057600d5460405184815273ffffffffffffffffffffffffffffffffffffffff909116907f11e717e1448fb29602b166d1efdb1695d9c5e1160a8001f0a431532ca6d154499060200160405180910390a25b600e5460405173ffffffffffffffffffffffffffffffffffffffff9091169083905f81818185875af1925050503d805f8114611137576040519150601f19603f3d011682016040523d82523d5f602084013e61113c565b606091505b5050809150508061119757600e5460405183815273ffffffffffffffffffffffffffffffffffffffff909116907f11e717e1448fb29602b166d1efdb1695d9c5e1160a8001f0a431532ca6d154499060200160405180910390a25b5050601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905550505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610b86908290869061120d908790612bbc565b611b66565b61121a611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205481151560ff9091161515036112d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5468652077616c6c657420616c72656164792068617320746861742076616c7560448201527f65207365742100000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611333611d18565b61134b600a6c01431e0fae6d7217caa0000000612be6565b81106113b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43616e742062652061626f766520313025206d617820737570706c79000000006044820152606401610de5565b601a81815560408051818152808201929092527f4e657720546872657368686f6c64207761732073657420746f3a000000000000606083015260208201839052517f99868de4f7dff0fc73bf078aff5cff658eda3bf0e4d4228c7ec6374ed28e94b39181900360800190a150565b611429611d18565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b611486611d18565b610bdf5f6123a2565b5f611498611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526007602052604090205460ff16610d20575073ffffffffffffffffffffffffffffffffffffffff165f90815260076020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915590565b606060048054610af890612a57565b61152e611d18565b5f6115398284612bbc565b9050602d811115611576576040517f31bc865d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60128290556013839055601481905560408051828152602081018590529081018390527f3de2715c8363c0e8144c3eb2c16ea96e693d3467e6f22566e2622aaffbef697a906060015b60405180910390a1505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610de5565b610c398286868403611b66565b5f33610b86818585611e6f565b6116b1611d18565b5f6116bc8284612bbc565b9050602d8111156116f9576040517ff252635300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f8290556010839055601181905560408051828152602081018590529081018390527f7cd0e98e90b672c3b55db6cf5f77f00a1ca751e0494a29786efa42ef670f697b906060016115bf565b61174e611d18565b601b55565b61175b611d18565b601c8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b61179a611d18565b60405147905f90339083908381818185875af1925050503d805f81146117db576040519150601f19603f3d011682016040523d82523d5f602084013e6117e0565b606091505b505090508061181b576040517f34f8362b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b611827611d18565b600e805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600d8054929093169116179055565b611882611d18565b5f61188d8284612bbc565b9050602d8111156118ca576040517fccfb8d9d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60158290556016839055601781905560408051828152602081018590529081018390527fc5fa9f73434ae30bda25f9f2c8e207a1c023f0ffef50b675f7afe5144affe00c906060016115bf565b5f611920611d18565b5f5b8251811015610c965761194d83828151811061194057611940612aa2565b602002602001015161148f565b1561195757600191505b8061196181612afc565b915050611922565b611971611d18565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526006602052604090205481151560ff909116151503611a2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5468652077616c6c657420616c72656164792068617320746861742076616c7560448201527f65207365742100000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff82165f8181526006602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f926aa5b668417cf93f5146a62276c847038f033b1ec9452fef4a3297036d44529101610e6c565b611ab7611d18565b73ffffffffffffffffffffffffffffffffffffffff8116611b5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610de5565b611b63816123a2565b50565b73ffffffffffffffffffffffffffffffffffffffff8316611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff8216611cab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e695781811015611e5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610de5565b611e698484848403611b66565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526009602052604090205460ff1615611efe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f796f752061726520626c61636b6c6973746564000000000000000000000000006044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526009602052604090205460ff1615611f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f726563697069656e7420697320626c61636b6c697374656400000000000000006044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff83165f90815260086020908152604080832054601a5430855292849052922054601c5460ff93841693919092109116158015611fdb5750805b8015611fe5575081155b8015612016575073ffffffffffffffffffffffffffffffffffffffff85165f9081526006602052604090205460ff16155b8015612047575073ffffffffffffffffffffffffffffffffffffffff84165f9081526006602052604090205460ff16155b1561205457612054610e80565b73ffffffffffffffffffffffffffffffffffffffff85165f9081526006602052604090205460ff161580156120ae575073ffffffffffffffffffffffffffffffffffffffff84165f9081526006602052604090205460ff16155b1561239057601c5460ff61010090910416151560011461212a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f54726164696e67206973206f66660000000000000000000000000000000000006044820152606401610de5565b601b54831115612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4d6f7265207468616e206d6178206973206e6f7420616c6c6f776564210000006044820152606401610de5565b601c5462010000900460ff1615156001036122725773ffffffffffffffffffffffffffffffffffffffff85165f9081526007602052604090205460ff1615156001148061220c575073ffffffffffffffffffffffffffffffffffffffff84165f9081526007602052604090205460ff1615156001145b612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f6f6e6c792077686974656c69737420616c6c6f776564000000000000000000006044820152606401610de5565b73ffffffffffffffffffffffffffffffffffffffff84165f9081526008602052604081205460ff16908380156122a957505f601154115b156122ef576064601154866122be9190612bcf565b6122c89190612be6565b90506122d48186612c1e565b94506122df81612418565b6122ea873083612479565b61238d565b8180156122fd57505f601454115b15612333576064601454866123129190612bcf565b61231c9190612be6565b90506123288186612c1e565b94506122df816126e6565b8115801561233f575083155b801561234c57505f601754115b1561238d576064601754866123619190612bcf565b61236b9190612be6565b90506123778186612c1e565b945061238281612725565b61238d873083612479565b50505b61239b858585612479565b5050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b601154600f546124289083612bcf565b6124329190612be6565b60185f8282546124429190612bbc565b90915550506011546010546124579083612bcf565b6124619190612be6565b60195f8282546124719190612bbc565b909155505050565b73ffffffffffffffffffffffffffffffffffffffff831661251c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff82166125bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610de5565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611e69565b6014546012546126f69083612bcf565b6127009190612be6565b60185f8282546127109190612bbc565b90915550506014546013546124579083612bcf565b6017546015546127359083612bcf565b61273f9190612be6565b60185f82825461274f9190612bbc565b90915550506017546016546124579083612bcf565b5f6020808352835180828501525f5b8181101561278f57858101830151858201604001528201612773565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff81168114611b63575f80fd5b8035610d20816127cd565b5f806040838503121561280a575f80fd5b8235612815816127cd565b946020939093013593505050565b80358015158114610d20575f80fd5b5f60208284031215612842575f80fd5b61284b82612823565b9392505050565b5f805f60608486031215612864575f80fd5b833561286f816127cd565b9250602084013561287f816127cd565b929592945050506040919091013590565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208083850312156128ce575f80fd5b823567ffffffffffffffff808211156128e5575f80fd5b818501915085601f8301126128f8575f80fd5b81358181111561290a5761290a612890565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f8301168101818110858211171561294d5761294d612890565b60405291825284820192508381018501918883111561296a575f80fd5b938501935b8285101561298f57612980856127ee565b8452938501939285019261296f565b98975050505050505050565b5f602082840312156129ab575f80fd5b813561284b816127cd565b5f80604083850312156129c7575f80fd5b82356129d2816127cd565b91506129e060208401612823565b90509250929050565b5f602082840312156129f9575f80fd5b5035919050565b5f8060408385031215612a11575f80fd5b50508035926020909101359150565b5f8060408385031215612a31575f80fd5b8235612a3c816127cd565b91506020830135612a4c816127cd565b809150509250929050565b600181811c90821680612a6b57607f821691505b602082108103610c96577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b2c57612b2c612acf565b5060010190565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612b8e57845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101612b5c565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b80820180821115610b8c57610b8c612acf565b8082028115828204841417610b8c57610b8c612acf565b5f82612c19577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b81810381811115610b8c57610b8c612acf56fea2646970667358221220ec3cd60e8a6ee99f91947b11fa75224d98f5ee6fab4d7441651e98e51b4dee0664736f6c63430008150033

Deployed Bytecode Sourcemap

29119:11617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8670:201;;;;;;;;;;-1:-1:-1;8670:201:0;;;;;:::i;:::-;;:::i;:::-;;;1409:14:1;;1402:22;1384:41;;1372:2;1357:18;8670:201:0;1244:187:1;38670:131:0;;;;;;;;;;;;;:::i;:::-;;29723:29;;;;;;;;;;;;;;;;;;;1582:25:1;;;1570:2;1555:18;29723:29:0;1436:177:1;39312:98:0;;;;;;;;;;-1:-1:-1;39312:98:0;;;;;:::i;:::-;;:::i;7439:108::-;;;;;;;;;;-1:-1:-1;7527:12:0;;7439:108;;30055:34;;;;;;;;;;;;;;;;9451:261;;;;;;;;;;-1:-1:-1;9451:261:0;;;;;:::i;:::-;;:::i;40299:249::-;;;;;;;;;;-1:-1:-1;40299:249:0;;;;;:::i;:::-;;:::i;40098:193::-;;;;;;;;;;-1:-1:-1;40098:193:0;;;;;:::i;:::-;;:::i;36872:218::-;;;;;;;;;;-1:-1:-1;36872:218:0;;;;;:::i;:::-;;:::i;7281:93::-;;;;;;;;;;-1:-1:-1;7281:93:0;;7364:2;4517:36:1;;4505:2;4490:18;7281:93:0;4375:184:1;30275:30:0;;;;;;;;;;-1:-1:-1;30275:30:0;;;;;;;;;;;30098:56;;;;;;;;;;;;30132:22;30098:56;;34208:1189;;;;;;;;;;;;;:::i;10121:238::-;;;;;;;;;;-1:-1:-1;10121:238:0;;;;;:::i;:::-;;:::i;29223:45::-;;;;;;;;;;-1:-1:-1;29223:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39419:224;;;;;;;;;;-1:-1:-1;39419:224:0;;;;;:::i;:::-;;:::i;30012:36::-;;;;;;;;;;;;;;;;29167:49;;;;;;;;;;-1:-1:-1;29167:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29649:27;;;;;;;;;;;;;;;;29531:31;;;;;;;;;;-1:-1:-1;29531:31:0;;;;;;;;;;;4756:42:1;4744:55;;;4726:74;;4714:2;4699:18;29531:31:0;4564:242:1;38809:304:0;;;;;;;;;;-1:-1:-1;38809:304:0;;;;;:::i;:::-;;:::i;29687:29::-;;;;;;;;;;;;;;;;38545:117;;;;;;;;;;-1:-1:-1;38545:117:0;;;;;:::i;:::-;;:::i;7610:127::-;;;;;;;;;;-1:-1:-1;7610:127:0;;;;;:::i;:::-;7711:18;;7684:7;7711:18;;;;;;;;;;;;7610:127;19095:103;;;;;;;;;;;;;:::i;29486:38::-;;;;;;;;;;-1:-1:-1;29486:38:0;;;;;;;;39651:188;;;;;;;;;;-1:-1:-1;39651:188:0;;;;;:::i;:::-;;:::i;29283:36::-;;;;;;;;;;-1:-1:-1;29283:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29878:33;;;;;;;;;;;;;;;;29380:30;;;;;;;;;;-1:-1:-1;29380:30:0;;;;;;;;18454:87;;;;;;;;;;-1:-1:-1;18527:6:0;;;;18454:87;;29614:28;;;;;;;;;;;;;;;;6529:104;;;;;;;;;;;;;:::i;29759:29::-;;;;;;;;;;;;;;;;37462:393;;;;;;;;;;-1:-1:-1;37462:393:0;;;;;:::i;:::-;;:::i;10862:436::-;;;;;;;;;;-1:-1:-1;10862:436:0;;;;;:::i;:::-;;:::i;29579:28::-;;;;;;;;;;;;;;;;7943:193;;;;;;;;;;-1:-1:-1;7943:193:0;;;;;:::i;:::-;;:::i;29838:33::-;;;;;;;;;;;;;;;;29458:19;;;;;;;;;;-1:-1:-1;29458:19:0;;;;;;;;37098:356;;;;;;;;;;-1:-1:-1;37098:356:0;;;;;:::i;:::-;;:::i;39215:89::-;;;;;;;;;;-1:-1:-1;39215:89:0;;;;;:::i;:::-;;:::i;39121:86::-;;;;;;;;;;-1:-1:-1;39121:86:0;;;;;:::i;:::-;;:::i;38308:228::-;;;;;;;;;;;;;:::i;29927:32::-;;;;;;;;;;;;;;;;40554:169;;;;;;;;;;-1:-1:-1;40554:169:0;;;;;:::i;:::-;;:::i;37867:433::-;;;;;;;;;;-1:-1:-1;37867:433:0;;;;;:::i;:::-;;:::i;8199:151::-;;;;;;;;;;-1:-1:-1;8199:151:0;;;;;:::i;:::-;8315:18;;;;8288:7;8315:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8199:151;39849:239;;;;;;;;;;-1:-1:-1;39849:239:0;;;;;:::i;:::-;;:::i;29798:33::-;;;;;;;;;;;;;;;;29966:32;;;;;;;;;;;;;;;;30244:24;;;;;;;;;;-1:-1:-1;30244:24:0;;;;;;;;;;;36585:272;;;;;;;;;;-1:-1:-1;36585:272:0;;;;;:::i;:::-;;:::i;19353:201::-;;;;;;;;;;-1:-1:-1;19353:201:0;;;;;:::i;:::-;;:::i;29417:32::-;;;;;;;;;;-1:-1:-1;29417:32:0;;;;;;;;29326:45;;;;;;;;;;-1:-1:-1;29326:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6310:100;6364:13;6397:5;6390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6310:100;:::o;8670:201::-;8753:4;4196:10;8809:32;4196:10;8825:7;8834:6;8809:8;:32::i;:::-;8859:4;8852:11;;;8670:201;;;;;:::o;38670:131::-;18340:13;:11;:13::i;:::-;38766:6:::1;::::0;38734:59:::1;::::0;38751:4:::1;::::0;38766:6:::1;;38775:17;38734:8;:59::i;:::-;38670:131::o:0;39312:98::-;18340:13;:11;:13::i;:::-;39382::::1;:20:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;39312:98::o;9451:261::-;9548:4;4196:10;9606:38;9622:4;4196:10;9637:6;9606:15;:38::i;:::-;9655:27;9665:4;9671:2;9675:6;9655:9;:27::i;:::-;-1:-1:-1;9700:4:0;;9451:261;-1:-1:-1;;;;9451:261:0:o;40299:249::-;40386:12;18340:13;:11;:13::i;:::-;40412:9:::1;40407:136;40431:5;:12;40427:1;:16;40407:136;;;40463:36;40490:5;40496:1;40490:8;;;;;;;;:::i;:::-;;;;;;;40463:26;:36::i;:::-;40459:77;;;40522:4;40512:14;;40459:77;40445:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40407:136;;;;40299:249:::0;;;:::o;40098:193::-;40173:12;18340:13;:11;:13::i;:::-;40198:19:::1;::::0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;::::1;;40194:92;;;-1:-1:-1::0;40228:19:0::1;::::0;::::1;40250:5;40228:19:::0;;;:13:::1;:19;::::0;;;;:27;;;::::1;::::0;;;40194:92:::1;40098:193:::0;;;:::o;36872:218::-;18340:13;:11;:13::i;:::-;36951:9:::1;::::0;::::1;;::::0;;;:4:::1;:9;::::0;;;;;:19;::::1;;:9;::::0;;::::1;:19;;::::0;36943:70:::1;;;::::0;::::1;::::0;;8016:2:1;36943:70:0::1;::::0;::::1;7998:21:1::0;8055:2;8035:18;;;8028:30;8094:34;8074:18;;;8067:62;8165:8;8145:18;;;8138:36;8191:19;;36943:70:0::1;;;;;;;;;37024:9;::::0;::::1;;::::0;;;:4:::1;:9;::::0;;;;;;;;:18;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;37058:24;;1384:41:1;;;37058:24:0::1;::::0;1357:18:1;37058:24:0::1;;;;;;;;36872:218:::0;;:::o;34208:1189::-;18340:13;:11;:13::i;:::-;34279:8:::1;:15:::0;;;::::1;34290:4;34279:15;::::0;;34339:4:::1;-1:-1:-1::0;7711:18:0;;;;;;;;;;;;34382:16;;34396:1:::1;34382:16:::0;;;;;::::1;::::0;;7711:18;;-1:-1:-1;34382:16:0;;;;::::1;::::0;7711:18;34382:16:::1;::::0;::::1;;::::0;-1:-1:-1;34382:16:0::1;34358:40;;34427:4;34409;34414:1;34409:7;;;;;;;;:::i;:::-;:23;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:23;34453:4:::1;::::0;34443:7;;34453:4;::::1;::::0;34443;;34453;;34443:7;::::1;;;;;:::i;:::-;:14;::::0;;::::1;:7;::::0;;::::1;::::0;;;;;:14;34470:6:::1;::::0;:182:::1;::::0;;;;:6;::::1;::::0;:57:::1;::::0;:182:::1;::::0;34542:6;;34470::::1;::::0;34579:4;;34606::::1;::::0;34626:15:::1;::::0;34470:182:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34674:21;34665:30;;34706:16;34761:20;;34725;;:56;;;;:::i;:::-;34706:75;;34797:11;34812:1;34797:16:::0;34793:37:::1;;-1:-1:-1::0;34829:1:0::1;34793:37;34843:20;34900:11;34876:20;;34867:6;:29;;;;:::i;:::-;34866:45;;;;:::i;:::-;34843:68;;34922:20;34979:11;34955:20;;34946:6;:29;;;;:::i;:::-;34945:45;;;;:::i;:::-;35035:1;35012:20;:24:::0;;;35047:20:::1;:24:::0;;;35110:15:::1;::::0;:48:::1;::::0;34922:68;;-1:-1:-1;35035:1:0;;35110:15:::1;::::0;;::::1;::::0;35138;;35035:1;35110:48;35035:1;35110:48;35138:15;35110;:48:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35094:64;;;35174:4;35169:62;;35198:15;::::0;35185:46:::1;::::0;1582:25:1;;;35198:15:0::1;::::0;;::::1;::::0;35185:46:::1;::::0;1570:2:1;1555:18;35185:46:0::1;;;;;;;35169:62;35253:8;::::0;:41:::1;::::0;:8:::1;::::0;;::::1;::::0;35274:15;;35253:41:::1;::::0;;;35274:15;35253:8;:41:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35242:52;;;;;35310:4;35305:55;;35334:8;::::0;35321:39:::1;::::0;1582:25:1;;;35334:8:0::1;::::0;;::::1;::::0;35321:39:::1;::::0;1570:2:1;1555:18;35321:39:0::1;;;;;;;35305:55;-1:-1:-1::0;;35373:8:0::1;:16:::0;;;::::1;::::0;;-1:-1:-1;;;;34208:1189:0:o;10121:238::-;4196:10;10209:4;8315:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10209:4;;4196:10;10265:64;;4196:10;;8315:27;;10290:38;;10318:10;;10290:38;:::i;:::-;10265:8;:64::i;39419:224::-;18340:13;:11;:13::i;:::-;39514:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;:30;::::1;;:20;::::0;;::::1;:30;;::::0;39506:81:::1;;;::::0;::::1;::::0;;8016:2:1;39506:81:0::1;::::0;::::1;7998:21:1::0;8055:2;8035:18;;;8028:30;8094:34;8074:18;;;8067:62;8165:8;8145:18;;;8138:36;8191:19;;39506:81:0::1;7814:402:1::0;39506:81:0::1;39598:20;::::0;;;::::1;;::::0;;;:13:::1;:20;::::0;;;;:29;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39419:224::o;38809:304::-;18340:13;:11;:13::i;:::-;38922:15:::1;38935:2;30132:22;38922:15;:::i;:::-;38906:13;:31;38884:109;;;::::0;::::1;::::0;;10246:2:1;38884:109:0::1;::::0;::::1;10228:21:1::0;10285:2;10265:18;;;10258:30;10324;10304:18;;;10297:58;10372:18;;38884:109:0::1;10044:352:1::0;38884:109:0::1;39004:9;:25:::0;;;39045:60:::1;::::0;;10613:21:1;;;10650:18;;;10643:30;;;;10709:28;10704:2;10689:18;;10682:56;10805:4;10790:20;;10783:36;;;39045:60:0;::::1;::::0;;;;10770:3:1;39045:60:0;;::::1;38809:304:::0;:::o;38545:117::-;18340:13;:11;:13::i;:::-;38627:20:::1;::::0;;;::::1;;::::0;;;:13:::1;:20;::::0;;;;:27;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;38545:117::o;19095:103::-;18340:13;:11;:13::i;:::-;19160:30:::1;19187:1;19160:18;:30::i;39651:188::-:0;39721:12;18340:13;:11;:13::i;:::-;39747:19:::1;::::0;::::1;;::::0;;;:13:::1;:19;::::0;;;;;::::1;;39742:92;;-1:-1:-1::0;39777:19:0::1;;;::::0;;;:13:::1;:19;::::0;;;;:26;;;::::1;39799:4;39777:26:::0;;::::1;::::0;;;39799:4;39651:188::o;6529:104::-;6585:13;6618:7;6611:14;;;;;:::i;37462:393::-;18340:13;:11;:13::i;:::-;37569:16:::1;37588:20;37596:12:::0;37588:5;:20:::1;:::i;:::-;37569:39;;37637:2;37623:11;:16;37619:54;;;37648:25;;;;;;;;;;;;;;37619:54;37686:13;:28:::0;;;37725:13:::1;:21:::0;;;37757:12:::1;:26:::0;;;37801:46:::1;::::0;;11032:25:1;;;11088:2;11073:18;;11066:34;;;11116:18;;;11109:34;;;37801:46:0::1;::::0;11020:2:1;11005:18;37801:46:0::1;;;;;;;;37558:297;37462:393:::0;;:::o;10862:436::-;4196:10;10955:4;8315:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10955:4;;4196:10;11102:15;11082:16;:35;;11074:85;;;;;;;11356:2:1;11074:85:0;;;11338:21:1;11395:2;11375:18;;;11368:30;11434:34;11414:18;;;11407:62;11505:7;11485:18;;;11478:35;11530:19;;11074:85:0;11154:401:1;11074:85:0;11195:60;11204:5;11211:7;11239:15;11220:16;:34;11195:8;:60::i;7943:193::-;8022:4;4196:10;8078:28;4196:10;8095:2;8099:6;8078:9;:28::i;37098:356::-;18340:13;:11;:13::i;:::-;37179:15:::1;37197:20;37205:12:::0;37197:5;:20:::1;:::i;:::-;37179:38;;37245:2;37232:10;:15;37228:52;;;37256:24;;;;;;;;;;;;;;37228:52;37293:12;:27:::0;;;37331:12:::1;:20:::0;;;37362:11:::1;:24:::0;;;37402:44:::1;::::0;;11032:25:1;;;11088:2;11073:18;;11066:34;;;11116:18;;;11109:34;;;37402:44:0::1;::::0;11020:2:1;11005:18;37402:44:0::1;10830:319:1::0;39215:89:0;18340:13;:11;:13::i;:::-;39281:8:::1;:15:::0;39215:89::o;39121:86::-;18340:13;:11;:13::i;:::-;39185:7:::1;:14:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;39121:86::o;38308:228::-;18340:13;:11;:13::i;:::-;38429:44:::1;::::0;38381:21:::1;::::0;38366:12:::1;::::0;38437:10:::1;::::0;38381:21;;38366:12;38429:44;38366:12;38429:44;38381:21;38437:10;38429:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38413:60;;;38489:4;38484:44;;38502:26;;;;;;;;;;;;;;38484:44;38355:181;;38308:228::o:0;40554:169::-;18340:13;:11;:13::i;:::-;40660:8:::1;:18:::0;;::::1;::::0;;::::1;::::0;;;::::1;;::::0;;;40685:15:::1;:32:::0;;;;;::::1;::::0;::::1;;::::0;;40554:169::o;37867:433::-;18340:13;:11;:13::i;:::-;37978:20:::1;38001;38009:12:::0;38001:5;:20:::1;:::i;:::-;37978:43;;38054:2;38036:15;:20;38032:62;;;38065:29;;;;;;;;;;;;;;38032:62;38107:17;:32:::0;;;38150:17:::1;:25:::0;;;38186:16:::1;:34:::0;;;38238:54:::1;::::0;;11032:25:1;;;11088:2;11073:18;;11066:34;;;11116:18;;;11109:34;;;38238:54:0::1;::::0;11020:2:1;11005:18;38238:54:0::1;10830:319:1::0;39849:239:0;39931:12;18340:13;:11;:13::i;:::-;39957:9:::1;39952:131;39976:5;:12;39972:1;:16;39952:131;;;40008:31;40030:5;40036:1;40030:8;;;;;;;;:::i;:::-;;;;;;;40008:21;:31::i;:::-;40004:72;;;40062:4;40052:14;;40004:72;39990:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39952:131;;36585:272:::0;18340:13;:11;:13::i;:::-;36679:24:::1;::::0;::::1;;::::0;;;:17:::1;:24;::::0;;;;;:34;::::1;;:24;::::0;;::::1;:34;;::::0;36671:85:::1;;;::::0;::::1;::::0;;8016:2:1;36671:85:0::1;::::0;::::1;7998:21:1::0;8055:2;8035:18;;;8028:30;8094:34;8074:18;;;8067:62;8165:8;8145:18;;;8138:36;8191:19;;36671:85:0::1;7814:402:1::0;36671:85:0::1;36767:24;::::0;::::1;;::::0;;;:17:::1;:24;::::0;;;;;;;;:33;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;36816;;1384:41:1;;;36816:33:0::1;::::0;1357:18:1;36816:33:0::1;1244:187:1::0;19353:201:0;18340:13;:11;:13::i;:::-;19442:22:::1;::::0;::::1;19434:73;;;::::0;::::1;::::0;;11762:2:1;19434:73:0::1;::::0;::::1;11744:21:1::0;11801:2;11781:18;;;11774:30;11840:34;11820:18;;;11813:62;11911:8;11891:18;;;11884:36;11937:19;;19434:73:0::1;11560:402:1::0;19434:73:0::1;19518:28;19537:8;19518:18;:28::i;:::-;19353:201:::0;:::o;14855:346::-;14957:19;;;14949:68;;;;;;;12169:2:1;14949:68:0;;;12151:21:1;12208:2;12188:18;;;12181:30;12247:34;12227:18;;;12220:62;12318:6;12298:18;;;12291:34;12342:19;;14949:68:0;11967:400:1;14949:68:0;15036:21;;;15028:68;;;;;;;12574:2:1;15028:68:0;;;12556:21:1;12613:2;12593:18;;;12586:30;12652:34;12632:18;;;12625:62;12723:4;12703:18;;;12696:32;12745:19;;15028:68:0;12372:398:1;15028:68:0;15109:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15161:32;;1582:25:1;;;15161:32:0;;1555:18:1;15161:32:0;;;;;;;14855:346;;;:::o;18619:132::-;18527:6;;18683:23;18527:6;4196:10;18683:23;18675:68;;;;;;;12977:2:1;18675:68:0;;;12959:21:1;;;12996:18;;;12989:30;13055:34;13035:18;;;13028:62;13107:18;;18675:68:0;12775:356:1;15492:419:0;8315:18;;;;15593:24;8315:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;15680:17;15660:37;;15656:248;;15742:6;15722:16;:26;;15714:68;;;;;;;13338:2:1;15714:68:0;;;13320:21:1;13377:2;13357:18;;;13350:30;13416:31;13396:18;;;13389:59;13465:18;;15714:68:0;13136:353:1;15714:68:0;15826:51;15835:5;15842:7;15870:6;15851:16;:25;15826:8;:51::i;:::-;15582:329;15492:419;;;:::o;31707:1845::-;31836:19;;;;;;;:13;:19;;;;;;;;:26;31828:57;;;;;;;13696:2:1;31828:57:0;;;13678:21:1;13735:2;13715:18;;;13708:30;13774:21;13754:18;;;13747:49;13813:18;;31828:57:0;13494:343:1;31828:57:0;31904:17;;;;;;;:13;:17;;;;;;;;:24;31896:60;;;;;;;14044:2:1;31896:60:0;;;14026:21:1;14083:2;14063:18;;;14056:30;14122:26;14102:18;;;14095:54;14166:18;;31896:60:0;13842:348:1;31896:60:0;31980:10;;;31967;31980;;;:4;:10;;;;;;;;;32043:9;;32034:4;7711:18;;;;;;;;;32096:8;;31980:10;;;;;-1:-1:-1;;;;;32096:8:0;32095:9;:33;;;;;32121:7;32095:33;:56;;;;;32146:5;32145:6;32095:56;:97;;;;-1:-1:-1;32169:23:0;;;;;;;:17;:23;;;;;;;;32168:24;32095:97;:136;;;;-1:-1:-1;32210:21:0;;;;;;;:17;:21;;;;;;;;32209:22;32095:136;32077:215;;;32258:22;:20;:22::i;:::-;32309:23;;;;;;;:17;:23;;;;;;;;32308:24;:50;;;;-1:-1:-1;32337:21:0;;;;;;;:17;:21;;;;;;;;32336:22;32308:50;32304:1185;;;32379:7;;;;;;;;:13;;:7;:13;32371:39;;;;;;;14397:2:1;32371:39:0;;;14379:21:1;14436:2;14416:18;;;14409:30;14475:16;14455:18;;;14448:44;14509:18;;32371:39:0;14195:338:1;32371:39:0;32437:8;;32429:6;:16;;32421:57;;;;;;;14740:2:1;32421:57:0;;;14722:21:1;14779:2;14759:18;;;14752:30;14818:31;14798:18;;;14791:59;14867:18;;32421:57:0;14538:353:1;32421:57:0;32492:13;;;;;;;:19;;32507:4;32492:19;32489:146;;32545:19;;;;;;;:13;:19;;;;;;;;:25;;:19;:25;;:52;;-1:-1:-1;32574:17:0;;;;;;;:13;:17;;;;;;;;:23;;:17;:23;32545:52;32537:86;;;;;;;15098:2:1;32537:86:0;;;15080:21:1;15137:2;15117:18;;;15110:30;15176:24;15156:18;;;15149:52;15218:18;;32537:86:0;14896:346:1;32537:86:0;32671:8;;;32657:11;32671:8;;;:4;:8;;;;;;;;;32721:5;:24;;;;;32744:1;32730:11;;:15;32721:24;32717:761;;;30196:3;32782:11;;32773:6;:20;;;;:::i;:::-;32772:35;;;;:::i;:::-;32766:41;-1:-1:-1;32826:13:0;32766:41;32826:13;;:::i;:::-;;;32858:18;32872:3;32858:13;:18::i;:::-;32895:41;32911:4;32925;32932:3;32895:15;:41::i;:::-;32717:761;;;32962:6;:26;;;;;32987:1;32972:12;;:16;32962:26;32958:520;;;30196:3;33025:12;;33016:6;:21;;;;:::i;:::-;33015:36;;;;:::i;:::-;33009:42;-1:-1:-1;33070:13:0;33009:42;33070:13;;:::i;:::-;;;33102:19;33117:3;33102:14;:19::i;32958:520::-;33221:6;33220:7;:17;;;;;33232:5;33231:6;33220:17;:41;;;;;33260:1;33241:16;;:20;33220:41;33216:262;;;30196:3;33298:16;;33289:6;:25;;;;:::i;:::-;33288:40;;;;:::i;:::-;33282:46;-1:-1:-1;33347:13:0;33282:46;33347:13;;:::i;:::-;;;33379:23;33398:3;33379:18;:23::i;:::-;33421:41;33437:4;33451;33458:3;33421:15;:41::i;:::-;32360:1129;;32304:1185;33511:33;33527:4;33533:2;33537:6;33511:15;:33::i;:::-;31817:1735;;31707:1845;;;:::o;19714:191::-;19807:6;;;;19824:17;;;;;;;;;;;19857:40;;19807:6;;;19824:17;19807:6;;19857:40;;19788:16;;19857:40;19777:128;19714:191;:::o;33560:197::-;33666:11;;33650:12;;33641:21;;:6;:21;:::i;:::-;33640:37;;;;:::i;:::-;33616:20;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33738:11:0;;33722:12;;33713:21;;:6;:21;:::i;:::-;33712:37;;;;:::i;:::-;33688:20;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;;33560:197:0:o;11768:806::-;11865:18;;;11857:68;;;;;;;15582:2:1;11857:68:0;;;15564:21:1;15621:2;15601:18;;;15594:30;15660:34;15640:18;;;15633:62;15731:7;15711:18;;;15704:35;15756:19;;11857:68:0;15380:401:1;11857:68:0;11944:16;;;11936:64;;;;;;;15988:2:1;11936:64:0;;;15970:21:1;16027:2;16007:18;;;16000:30;16066:34;16046:18;;;16039:62;16137:5;16117:18;;;16110:33;16160:19;;11936:64:0;15786:399:1;11936:64:0;12086:15;;;12064:19;12086:15;;;;;;;;;;;12120:21;;;;12112:72;;;;;;;16392:2:1;12112:72:0;;;16374:21:1;16431:2;16411:18;;;16404:30;16470:34;16450:18;;;16443:62;16541:8;16521:18;;;16514:36;16567:19;;12112:72:0;16190:402:1;12112:72:0;12220:15;;;;:9;:15;;;;;;;;;;;12238:20;;;12220:38;;12438:13;;;;;;;;;;:23;;;;;;12490:26;;1582:25:1;;;12438:13:0;;12490:26;;1555:18:1;12490:26:0;;;;;;;12529:37;16511:91;33765:202;33873:12;;33856:13;;33847:22;;:6;:22;:::i;:::-;33846:39;;;;:::i;:::-;33822:20;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;33947:12:0;;33930:13;;33921:22;;:6;:22;:::i;33978:222::-;34094:16;;34073:17;;34064:26;;:6;:26;:::i;:::-;34063:47;;;;:::i;:::-;34039:20;;:71;;;;;;;:::i;:::-;;;;-1:-1:-1;;34176:16:0;;34155:17;;34146:26;;:6;:26;:::i;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;542:66;537:2;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:154::-;712:42;705:5;701:54;694:5;691:65;681:93;;770:1;767;760:12;785:134;853:20;;882:31;853:20;882:31;:::i;924:315::-;992:6;1000;1053:2;1041:9;1032:7;1028:23;1024:32;1021:52;;;1069:1;1066;1059:12;1021:52;1108:9;1095:23;1127:31;1152:5;1127:31;:::i;:::-;1177:5;1229:2;1214:18;;;;1201:32;;-1:-1:-1;;;924:315:1:o;1618:160::-;1683:20;;1739:13;;1732:21;1722:32;;1712:60;;1768:1;1765;1758:12;1783:180;1839:6;1892:2;1880:9;1871:7;1867:23;1863:32;1860:52;;;1908:1;1905;1898:12;1860:52;1931:26;1947:9;1931:26;:::i;:::-;1921:36;1783:180;-1:-1:-1;;;1783:180:1:o;1968:456::-;2045:6;2053;2061;2114:2;2102:9;2093:7;2089:23;2085:32;2082:52;;;2130:1;2127;2120:12;2082:52;2169:9;2156:23;2188:31;2213:5;2188:31;:::i;:::-;2238:5;-1:-1:-1;2295:2:1;2280:18;;2267:32;2308:33;2267:32;2308:33;:::i;:::-;1968:456;;2360:7;;-1:-1:-1;;;2414:2:1;2399:18;;;;2386:32;;1968:456::o;2429:184::-;2481:77;2478:1;2471:88;2578:4;2575:1;2568:15;2602:4;2599:1;2592:15;2618:1180;2702:6;2733:2;2776;2764:9;2755:7;2751:23;2747:32;2744:52;;;2792:1;2789;2782:12;2744:52;2832:9;2819:23;2861:18;2902:2;2894:6;2891:14;2888:34;;;2918:1;2915;2908:12;2888:34;2956:6;2945:9;2941:22;2931:32;;3001:7;2994:4;2990:2;2986:13;2982:27;2972:55;;3023:1;3020;3013:12;2972:55;3059:2;3046:16;3081:2;3077;3074:10;3071:36;;;3087:18;;:::i;:::-;3133:2;3130:1;3126:10;3165:2;3159:9;3224:66;3219:2;3215;3211:11;3207:84;3199:6;3195:97;3342:6;3330:10;3327:22;3322:2;3310:10;3307:18;3304:46;3301:72;;;3353:18;;:::i;:::-;3389:2;3382:22;3439:18;;;3473:15;;;;-1:-1:-1;3515:11:1;;;3511:20;;;3543:19;;;3540:39;;;3575:1;3572;3565:12;3540:39;3599:11;;;;3619:148;3635:6;3630:3;3627:15;3619:148;;;3701:23;3720:3;3701:23;:::i;:::-;3689:36;;3652:12;;;;3745;;;;3619:148;;;3786:6;2618:1180;-1:-1:-1;;;;;;;;2618:1180:1:o;3803:247::-;3862:6;3915:2;3903:9;3894:7;3890:23;3886:32;3883:52;;;3931:1;3928;3921:12;3883:52;3970:9;3957:23;3989:31;4014:5;3989:31;:::i;4055:315::-;4120:6;4128;4181:2;4169:9;4160:7;4156:23;4152:32;4149:52;;;4197:1;4194;4187:12;4149:52;4236:9;4223:23;4255:31;4280:5;4255:31;:::i;:::-;4305:5;-1:-1:-1;4329:35:1;4360:2;4345:18;;4329:35;:::i;:::-;4319:45;;4055:315;;;;;:::o;4811:180::-;4870:6;4923:2;4911:9;4902:7;4898:23;4894:32;4891:52;;;4939:1;4936;4929:12;4891:52;-1:-1:-1;4962:23:1;;4811:180;-1:-1:-1;4811:180:1:o;5481:248::-;5549:6;5557;5610:2;5598:9;5589:7;5585:23;5581:32;5578:52;;;5626:1;5623;5616:12;5578:52;-1:-1:-1;;5649:23:1;;;5719:2;5704:18;;;5691:32;;-1:-1:-1;5481:248:1:o;5734:404::-;5818:6;5826;5879:2;5867:9;5858:7;5854:23;5850:32;5847:52;;;5895:1;5892;5885:12;5847:52;5934:9;5921:23;5953:31;5978:5;5953:31;:::i;:::-;6003:5;-1:-1:-1;6060:2:1;6045:18;;6032:32;6073:33;6032:32;6073:33;:::i;:::-;6125:7;6115:17;;;5734:404;;;;;:::o;6794:437::-;6873:1;6869:12;;;;6916;;;6937:61;;6991:4;6983:6;6979:17;6969:27;;6937:61;7044:2;7036:6;7033:14;7013:18;7010:38;7007:218;;7081:77;7078:1;7071:88;7182:4;7179:1;7172:15;7210:4;7207:1;7200:15;7236:184;7288:77;7285:1;7278:88;7385:4;7382:1;7375:15;7409:4;7406:1;7399:15;7425:184;7477:77;7474:1;7467:88;7574:4;7571:1;7564:15;7598:4;7595:1;7588:15;7614:195;7653:3;7684:66;7677:5;7674:77;7671:103;;7754:18;;:::i;:::-;-1:-1:-1;7801:1:1;7790:13;;7614:195::o;8221:1026::-;8483:4;8531:3;8520:9;8516:19;8562:6;8551:9;8544:25;8588:2;8626:6;8621:2;8610:9;8606:18;8599:34;8669:3;8664:2;8653:9;8649:18;8642:31;8693:6;8728;8722:13;8759:6;8751;8744:22;8797:3;8786:9;8782:19;8775:26;;8836:2;8828:6;8824:15;8810:29;;8857:1;8867:218;8881:6;8878:1;8875:13;8867:218;;;8946:13;;8961:42;8942:62;8930:75;;9060:15;;;;9025:12;;;;8903:1;8896:9;8867:218;;;-1:-1:-1;;9153:42:1;9141:55;;;;9136:2;9121:18;;9114:83;-1:-1:-1;;;9228:3:1;9213:19;9206:35;9102:3;8221:1026;-1:-1:-1;;;8221:1026:1:o;9252:125::-;9317:9;;;9338:10;;;9335:36;;;9351:18;;:::i;9382:168::-;9455:9;;;9486;;9503:15;;;9497:22;;9483:37;9473:71;;9524:18;;:::i;9555:274::-;9595:1;9621;9611:189;;9656:77;9653:1;9646:88;9757:4;9754:1;9747:15;9785:4;9782:1;9775:15;9611:189;-1:-1:-1;9814:9:1;;9555:274::o;15247:128::-;15314:9;;;15335:11;;;15332:37;;;15349:18;;:::i

Swarm Source

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