ETH Price: $3,473.57 (-0.50%)

Token

Fractal Bridge (FB)
 

Overview

Max Total Supply

21,000,000 FB

Holders

99

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
washedmilady.eth
Balance
74,381.804551996281726026 FB

Value
$0.00
0xf00b24f373c7166423e4ccfc4d1204a01d299462
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:
FractalBridge

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 10 : FractalBridge.sol
// Website  : https://fractalbridge.io
// Twitter  : https://x.com/Fractal_Bridge
// Telegram : https://t.me/Fractal_Bridge
// Docs     : https://fractal-bridge.gitbook.io

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.24;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract FractalBridge is ERC20, Ownable {
    event ExcludedFromFees(address wallet, bool status);
    event EnableTrading();
    event RemoveLimit();
    event Swapback(uint256 amount);
    event UpdateSwapbackThresHold(uint256 newValue);
    event UpdateMaxSwapBack(uint256 newValue);
    event UpdateMaxWallet(uint256 newValue);
    uint256 private constant TOTAL_SUPPLY = 21_000_000 * 10 ** 18;
    uint256 private constant TAX = 5;
    IUniswapV2Router02 private _uniswapV2 =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address private immutable _pair;
    uint256 private _swapbackThresHold = TOTAL_SUPPLY / 300;
    uint256 private _maxSwapback = TOTAL_SUPPLY / 200;
    uint256 private _maxWallet = 420_000 * 10 ** 18;
    uint256 private _buyCount;
    uint256 private _sellCount;
    uint256 private _reduceAt = 20;
    uint256 private _initTax = 20;
    bool public limit = true;
    bool private _tradingEnable;
    uint256 private _latestSwapback;
    address private _taxWallet;
    bool private _onSwap;
    mapping(address => bool) private _excludeFromFees;

    constructor(
        address __taxWallet
    ) ERC20("Fractal Bridge", "FB") Ownable(_msgSender()) {
        _taxWallet = __taxWallet;
        _pair = IUniswapV2Factory(_uniswapV2.factory()).createPair(
            address(this),
            _uniswapV2.WETH()
        );
        _excludeFromFeesAddress(_msgSender(), true);
        _excludeFromFeesAddress(_taxWallet, true);
        _excludeFromFeesAddress(address(this), true);
        _excludeFromFeesAddress(address(_uniswapV2), true);
        _mint(_msgSender(), TOTAL_SUPPLY);
        _approve(address(this), address(_uniswapV2), type(uint256).max);
        _approve(_msgSender(), address(_uniswapV2), type(uint256).max);
    }

    modifier onSwap() {
        _onSwap = true;
        _;
        _onSwap = false;
    }

    function excludeFromFeesAddress(
        address _wallet,
        bool _status
    ) external onlyOwner {
        _excludeFromFeesAddress(_wallet, _status);
    }

    function enableTrading() external onlyOwner {
        _tradingEnable = true;
        emit EnableTrading();
    }

    function removeLimit() external onlyOwner {
        limit = false;
        emit RemoveLimit();
    }

    function updateTaxWallet(address _newAddress) external {
        require(
            _msgSender() == owner() || _msgSender() == _taxWallet,
            "Access denied!"
        );
        _taxWallet = _newAddress;
    }

    function updateSwapbackThresHold(uint256 _newValue) external onlyOwner {
        require(_newValue <= TOTAL_SUPPLY / 100, "Only values lt 1% supply!");
        _swapbackThresHold = _newValue;
        emit UpdateSwapbackThresHold(_newValue);
    }

    function updateMaxSwapBack(uint256 _newValue) external onlyOwner {
        require(
            _newValue <= TOTAL_SUPPLY / 100 && _newValue > _swapbackThresHold,
            "Only values lt 1% supply and gt _swapbackThresHold!"
        );
        _maxSwapback = _newValue;
        emit UpdateMaxSwapBack(_newValue);
    }

    function updateMaxWallet(uint256 _newValue) external onlyOwner {
        require(_newValue <= TOTAL_SUPPLY / 50, "Only values lt 2% supply!");
        _maxWallet = _newValue;
        emit UpdateMaxWallet(_newValue);
    }

    function _excludeFromFeesAddress(address _wallet, bool _status) private {
        _excludeFromFees[_wallet] = _status;
        emit ExcludedFromFees(_wallet, _status);
    }

    function _shouldSwapback() internal view returns (bool) {
        uint256 balance = balanceOf(address(this));
        return _latestSwapback < block.number && balance > _swapbackThresHold;
    }

    function _swapBack(uint256 _amount) internal onSwap {
        uint256 amount = _min(_amount, _maxSwapback);
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2.WETH();
        _uniswapV2.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            _taxWallet,
            block.timestamp
        );
        _latestSwapback = block.number;
        emit Swapback(amount);
    }

    function _min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? b : a;
    }

    function _update(
        address _from,
        address _to,
        uint256 _amount
    ) internal override {
        if (
            _excludeFromFees[_from] ||
            _excludeFromFees[_to] ||
            (_to != _pair && _from != _pair) ||
            _onSwap
        ) {
            super._update(_from, _to, _amount);
            return;
        }
        require(_tradingEnable, "Trading is not open!");
        if (limit && _to != _pair) {
            require(balanceOf(_to) + _amount <= _maxWallet, "Max wallet!");
        }
        if (_to == _pair && _shouldSwapback()) {
            _swapBack(_amount);
        }
        uint256 amount = _handleFees(_from, _to, _amount);
        super._update(_from, _to, amount);
    }

    function _handleFees(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        uint256 taxAmount = (_amount * TAX) / 100;
        if (_from == _pair && _buyCount < _reduceAt) {
            _buyCount++;
            taxAmount = (_amount * _initTax) / 100;
        } else if (_to == _pair && _sellCount < _reduceAt) {
            _sellCount++;
            taxAmount = (_amount * _initTax) / 100;
        }
        super._update(_from, address(this), taxAmount);
        return _amount - taxAmount;
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 10 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 4 of 10 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @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}.
 *
 * 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.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

File 5 of 10 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";

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

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

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

File 6 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 7 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 8 of 10 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

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

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

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

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

File 9 of 10 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

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

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

File 10 of 10 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"__taxWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"ExcludedFromFees","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":[],"name":"RemoveLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Swapback","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":"uint256","name":"newValue","type":"uint256"}],"name":"UpdateMaxSwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"UpdateMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"UpdateSwapbackThresHold","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"excludeFromFeesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"updateMaxSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"updateSwapbackThresHold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"updateTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061012c6a115eec47f6cf7e35000000620000749190620013f9565b60075560c86a115eec47f6cf7e35000000620000919190620013f9565b6008556958f03ee118a13e8000006009556014600c556014600d556001600e60006101000a81548160ff021916908315150217905550348015620000d457600080fd5b50604051620041aa380380620041aa8339818101604052810190620000fa91906200149b565b6200010a620005cb60201b60201c565b6040518060400160405280600e81526020017f4672616374616c204272696467650000000000000000000000000000000000008152506040518060400160405280600281526020017f464200000000000000000000000000000000000000000000000000000000000081525081600390816200018791906200173d565b5080600490816200019991906200173d565b505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620002115760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000208919062001835565b60405180910390fd5b6200022281620005d360201b60201c565b5080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002d2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f891906200149b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000382573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a891906200149b565b6040518363ffffffff1660e01b8152600401620003c792919062001852565b6020604051808303816000875af1158015620003e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040d91906200149b565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200046262000454620005cb60201b60201c565b60016200069960201b60201c565b62000497601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200069960201b60201c565b620004aa3060016200069960201b60201c565b620004df600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200069960201b60201c565b6200050b620004f3620005cb60201b60201c565b6a115eec47f6cf7e350000006200072f60201b60201c565b6200056030600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620007bc60201b60201c565b620005c462000574620005cb60201b60201c565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620007bc60201b60201c565b5062001cdb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb8282604051620007239291906200189c565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007a45760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200079b919062001835565b60405180910390fd5b620007b860008383620007d660201b60201c565b5050565b620007d1838383600162000ac060201b60201c565b505050565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008785750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620008ed575060805173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620008ec575060805173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620009055750601060149054906101000a900460ff165b1562000924576200091e83838362000ca060201b60201c565b62000abb565b600e60019054906101000a900460ff1662000976576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200096d906200192a565b60405180910390fd5b600e60009054906101000a900460ff168015620009c1575060805173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1562000a2d5760095481620009dc8462000ed060201b60201c565b620009e891906200194c565b111562000a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a2390620019d7565b60405180910390fd5b5b60805173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801562000a77575062000a7662000f1860201b60201c565b5b1562000a8f5762000a8e8162000f4760201b60201c565b5b600062000aa48484846200121f60201b60201c565b905062000ab984848362000ca060201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000b355760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000b2c919062001835565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000baa5760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000ba1919062001835565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000c9a578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000c91919062001a0a565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000cf657806002600082825462000ce991906200194c565b9250508190555062000dcc565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000d85578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000d7c9392919062001a27565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000e17578060026000828254039250508190555062000e64565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ec3919062001a0a565b60405180910390a3505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008062000f2c3062000ed060201b60201c565b905043600f5410801562000f41575060075481115b91505090565b6001601060146101000a81548160ff021916908315150217905550600062000f78826008546200137660201b60201c565b90506000600267ffffffffffffffff81111562000f9a5762000f99620014d8565b5b60405190808252806020026020018201604052801562000fc95781602001602082028036833780820191505090505b509050308160008151811062000fe45762000fe362001a64565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200108c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b291906200149b565b81600181518110620010c957620010c862001a64565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200118b95949392919062001ba4565b600060405180830381600087803b158015620011a657600080fd5b505af1158015620011bb573d6000803e3d6000fd5b5050505043600f819055507ffefd9f5dc8f83b5e9465ef30d84cfaae22d27ec9f64d29cb8262a9f6e937e32582604051620011f7919062001a0a565b60405180910390a150506000601060146101000a81548160ff02191690831515021790555050565b600080606460058462001233919062001c08565b6200123f9190620013f9565b905060805173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015620012825750600c54600a54105b15620012c857600a60008154809291906200129d9062001c53565b91905055506064600d5484620012b4919062001c08565b620012c09190620013f9565b90506200134b565b60805173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015620013095750600c54600b54105b156200134a57600b6000815480929190620013249062001c53565b91905055506064600d54846200133b919062001c08565b620013479190620013f9565b90505b5b6200135e85308362000ca060201b60201c565b80836200136c919062001ca0565b9150509392505050565b600081831162001387578262001389565b815b905092915050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620014068262001391565b9150620014138362001391565b9250826200142657620014256200139b565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620014638262001436565b9050919050565b620014758162001456565b81146200148157600080fd5b50565b60008151905062001495816200146a565b92915050565b600060208284031215620014b457620014b362001431565b5b6000620014c48482850162001484565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200154f57607f821691505b60208210810362001565576200156462001507565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001590565b620015db868362001590565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200161e62001618620016128462001391565b620015f3565b62001391565b9050919050565b6000819050919050565b6200163a83620015fd565b62001652620016498262001625565b8484546200159d565b825550505050565b600090565b620016696200165a565b620016768184846200162f565b505050565b5b818110156200169e57620016926000826200165f565b6001810190506200167c565b5050565b601f821115620016ed57620016b7816200156b565b620016c28462001580565b81016020851015620016d2578190505b620016ea620016e18562001580565b8301826200167b565b50505b505050565b600082821c905092915050565b60006200171260001984600802620016f2565b1980831691505092915050565b60006200172d8383620016ff565b9150826002028217905092915050565b6200174882620014cd565b67ffffffffffffffff811115620017645762001763620014d8565b5b62001770825462001536565b6200177d828285620016a2565b600060209050601f831160018114620017b55760008415620017a0578287015190505b620017ac85826200171f565b8655506200181c565b601f198416620017c5866200156b565b60005b82811015620017ef57848901518255600182019150602085019450602081019050620017c8565b868310156200180f57848901516200180b601f891682620016ff565b8355505b6001600288020188555050505b505050505050565b6200182f8162001456565b82525050565b60006020820190506200184c600083018462001824565b92915050565b600060408201905062001869600083018562001824565b62001878602083018462001824565b9392505050565b60008115159050919050565b62001896816200187f565b82525050565b6000604082019050620018b3600083018562001824565b620018c260208301846200188b565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f74206f70656e21000000000000000000000000600082015250565b600062001912601483620018c9565b91506200191f82620018da565b602082019050919050565b60006020820190508181036000830152620019458162001903565b9050919050565b6000620019598262001391565b9150620019668362001391565b9250828201905080821115620019815762001980620013ca565b5b92915050565b7f4d61782077616c6c657421000000000000000000000000000000000000000000600082015250565b6000620019bf600b83620018c9565b9150620019cc8262001987565b602082019050919050565b60006020820190508181036000830152620019f281620019b0565b9050919050565b62001a048162001391565b82525050565b600060208201905062001a216000830184620019f9565b92915050565b600060608201905062001a3e600083018662001824565b62001a4d6020830185620019f9565b62001a5c6040830184620019f9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001abe62001ab862001ab28462001a93565b620015f3565b62001391565b9050919050565b62001ad08162001a9d565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001b0d8162001456565b82525050565b600062001b21838362001b02565b60208301905092915050565b6000602082019050919050565b600062001b478262001ad6565b62001b53818562001ae1565b935062001b608362001af2565b8060005b8381101562001b9757815162001b7b888262001b13565b975062001b888362001b2d565b92505060018101905062001b64565b5085935050505092915050565b600060a08201905062001bbb6000830188620019f9565b62001bca602083018762001ac5565b818103604083015262001bde818662001b3a565b905062001bef606083018562001824565b62001bfe6080830184620019f9565b9695505050505050565b600062001c158262001391565b915062001c228362001391565b925082820262001c328162001391565b9150828204841483151762001c4c5762001c4b620013ca565b5b5092915050565b600062001c608262001391565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001c955762001c94620013ca565b5b600182019050919050565b600062001cad8262001391565b915062001cba8362001391565b925082820390508181111562001cd55762001cd4620013ca565b5b92915050565b60805161249062001d1a600039600081816110bd01528181611114015281816111f8015281816112a70152818161185c01526118f801526124906000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806374c9f603116100ad57806395d89b411161007157806395d89b41146102e3578063a4d66daf14610301578063a9059cbb1461031f578063dd62ed3e1461034f578063f2fde38b1461037f5761012c565b806374c9f603146102675780637b11c9eb146102835780638a8c523c1461029f5780638da5cb5b146102a95780639456a343146102c75761012c565b806323b872dd116100f457806323b872dd146101d5578063313ce56714610205578063622565891461022357806370a082311461022d578063715018a61461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806310cd8fe51461017f57806318160ddd1461019b5780631c499ab0146101b9575b600080fd5b61013961039b565b6040516101469190611a59565b60405180910390f35b61016960048036038101906101649190611b14565b61042d565b6040516101769190611b6f565b60405180910390f35b61019960048036038101906101949190611bb6565b610450565b005b6101a3610466565b6040516101b09190611c05565b60405180910390f35b6101d360048036038101906101ce9190611c20565b610470565b005b6101ef60048036038101906101ea9190611c4d565b610513565b6040516101fc9190611b6f565b60405180910390f35b61020d610542565b60405161021a9190611cbc565b60405180910390f35b61022b61054b565b005b61024760048036038101906102429190611cd7565b61059c565b6040516102549190611c05565b60405180910390f35b6102656105e4565b005b610281600480360381019061027c9190611cd7565b6105f8565b005b61029d60048036038101906102989190611c20565b610717565b005b6102a76107c7565b005b6102b1610818565b6040516102be9190611d13565b60405180910390f35b6102e160048036038101906102dc9190611c20565b610842565b005b6102eb6108e5565b6040516102f89190611a59565b60405180910390f35b610309610977565b6040516103169190611b6f565b60405180910390f35b61033960048036038101906103349190611b14565b61098a565b6040516103469190611b6f565b60405180910390f35b61036960048036038101906103649190611d2e565b6109ad565b6040516103769190611c05565b60405180910390f35b61039960048036038101906103949190611cd7565b610a34565b005b6060600380546103aa90611d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611d9d565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610aba565b9050610445818585610ac2565b600191505092915050565b610458610ad4565b6104628282610b5b565b5050565b6000600254905090565b610478610ad4565b60326a115eec47f6cf7e350000006104909190611e2c565b8111156104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c990611ea9565b60405180910390fd5b806009819055507fdd4ef051c4c49233ec73abfc2ee1514725d2a818fbcde46ee5d34a49034922f9816040516105089190611c05565b60405180910390a150565b60008061051e610aba565b905061052b858285610bef565b610536858585610c83565b60019150509392505050565b60006012905090565b610553610ad4565b6000600e60006101000a81548160ff0219169083151502179055507f2d53e1bd10978dd02f36cd1d3680151195d9f7358e0c867bc753abecafb55e4360405160405180910390a1565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ec610ad4565b6105f66000610d77565b565b610600610818565b73ffffffffffffffffffffffffffffffffffffffff1661061e610aba565b73ffffffffffffffffffffffffffffffffffffffff1614806106945750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661067c610aba565b73ffffffffffffffffffffffffffffffffffffffff16145b6106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca90611f15565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61071f610ad4565b60646a115eec47f6cf7e350000006107379190611e2c565b8111158015610747575060075481115b610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90611fa7565b60405180910390fd5b806008819055507f61b2ef6f1c79ec2267034142e470c0755cab1aad66eecc2a8c40fa7adf4deea6816040516107bc9190611c05565b60405180910390a150565b6107cf610ad4565b6001600e60016101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61084a610ad4565b60646a115eec47f6cf7e350000006108629190611e2c565b8111156108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612013565b60405180910390fd5b806007819055507fe33951e57fc9462e7ff38a756a56a577243dd25974864b3fe2a125a6b7fe74e6816040516108da9190611c05565b60405180910390a150565b6060600480546108f490611d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461092090611d9d565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600080610995610aba565b90506109a2818585610c83565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a3c610ad4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aae5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aa59190611d13565b60405180910390fd5b610ab781610d77565b50565b600033905090565b610acf8383836001610e3d565b505050565b610adc610aba565b73ffffffffffffffffffffffffffffffffffffffff16610afa610818565b73ffffffffffffffffffffffffffffffffffffffff1614610b5957610b1d610aba565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b509190611d13565b60405180910390fd5b565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb8282604051610be3929190612033565b60405180910390a15050565b6000610bfb84846109ad565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7d5781811015610c6d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c649392919061205c565b60405180910390fd5b610c7c84848484036000610e3d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf55760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cec9190611d13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d675760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d5e9190611d13565b60405180910390fd5b610d72838383611014565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eaf5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ea69190611d13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f215760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f189190611d13565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561100e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110059190611c05565b60405180910390a35b50505050565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110b55750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061116457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561116357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061117b5750601060149054906101000a900460ff165b156111905761118b838383611334565b61132f565b600e60019054906101000a900460ff166111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d6906120df565b60405180910390fd5b600e60009054906101000a900460ff16801561124757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156112a557600954816112598461059c565b61126391906120ff565b11156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061217f565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156113045750611303611559565b5b15611313576113128161157f565b5b600061132084848461183c565b905061132d848483611334565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361138657806002600082825461137a91906120ff565b92505081905550611459565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611412578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114099392919061205c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114a257806002600082825403925050819055506114ef565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154c9190611c05565b60405180910390a3505050565b6000806115653061059c565b905043600f54108015611579575060075481115b91505090565b6001601060146101000a81548160ff02191690831515021790555060006115a8826008546119b0565b90506000600267ffffffffffffffff8111156115c7576115c661219f565b5b6040519080825280602002602001820160405280156115f55781602001602082028036833780820191505090505b509050308160008151811061160d5761160c6121ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d89190612212565b816001815181106116ec576116eb6121ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016117ac959493929190612342565b600060405180830381600087803b1580156117c657600080fd5b505af11580156117da573d6000803e3d6000fd5b5050505043600f819055507ffefd9f5dc8f83b5e9465ef30d84cfaae22d27ec9f64d29cb8262a9f6e937e325826040516118149190611c05565b60405180910390a150506000601060146101000a81548160ff02191690831515021790555050565b600080606460058461184e919061239c565b6118589190611e2c565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156118b85750600c54600a54105b156118f657600a60008154809291906118d0906123de565b91905055506064600d54846118e5919061239c565b6118ef9190611e2c565b905061198f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119545750600c54600b54105b1561198e57600b600081548092919061196c906123de565b91905055506064600d5484611981919061239c565b61198b9190611e2c565b90505b5b61199a853083611334565b80836119a69190612426565b9150509392505050565b60008183116119bf57826119c1565b815b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a035780820151818401526020810190506119e8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a2b826119c9565b611a3581856119d4565b9350611a458185602086016119e5565b611a4e81611a0f565b840191505092915050565b60006020820190508181036000830152611a738184611a20565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aab82611a80565b9050919050565b611abb81611aa0565b8114611ac657600080fd5b50565b600081359050611ad881611ab2565b92915050565b6000819050919050565b611af181611ade565b8114611afc57600080fd5b50565b600081359050611b0e81611ae8565b92915050565b60008060408385031215611b2b57611b2a611a7b565b5b6000611b3985828601611ac9565b9250506020611b4a85828601611aff565b9150509250929050565b60008115159050919050565b611b6981611b54565b82525050565b6000602082019050611b846000830184611b60565b92915050565b611b9381611b54565b8114611b9e57600080fd5b50565b600081359050611bb081611b8a565b92915050565b60008060408385031215611bcd57611bcc611a7b565b5b6000611bdb85828601611ac9565b9250506020611bec85828601611ba1565b9150509250929050565b611bff81611ade565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b600060208284031215611c3657611c35611a7b565b5b6000611c4484828501611aff565b91505092915050565b600080600060608486031215611c6657611c65611a7b565b5b6000611c7486828701611ac9565b9350506020611c8586828701611ac9565b9250506040611c9686828701611aff565b9150509250925092565b600060ff82169050919050565b611cb681611ca0565b82525050565b6000602082019050611cd16000830184611cad565b92915050565b600060208284031215611ced57611cec611a7b565b5b6000611cfb84828501611ac9565b91505092915050565b611d0d81611aa0565b82525050565b6000602082019050611d286000830184611d04565b92915050565b60008060408385031215611d4557611d44611a7b565b5b6000611d5385828601611ac9565b9250506020611d6485828601611ac9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611db557607f821691505b602082108103611dc857611dc7611d6e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e3782611ade565b9150611e4283611ade565b925082611e5257611e51611dce565b5b828204905092915050565b7f4f6e6c792076616c756573206c7420322520737570706c792100000000000000600082015250565b6000611e936019836119d4565b9150611e9e82611e5d565b602082019050919050565b60006020820190508181036000830152611ec281611e86565b9050919050565b7f4163636573732064656e69656421000000000000000000000000000000000000600082015250565b6000611eff600e836119d4565b9150611f0a82611ec9565b602082019050919050565b60006020820190508181036000830152611f2e81611ef2565b9050919050565b7f4f6e6c792076616c756573206c7420312520737570706c7920616e642067742060008201527f5f737761706261636b5468726573486f6c642100000000000000000000000000602082015250565b6000611f916033836119d4565b9150611f9c82611f35565b604082019050919050565b60006020820190508181036000830152611fc081611f84565b9050919050565b7f4f6e6c792076616c756573206c7420312520737570706c792100000000000000600082015250565b6000611ffd6019836119d4565b915061200882611fc7565b602082019050919050565b6000602082019050818103600083015261202c81611ff0565b9050919050565b60006040820190506120486000830185611d04565b6120556020830184611b60565b9392505050565b60006060820190506120716000830186611d04565b61207e6020830185611bf6565b61208b6040830184611bf6565b949350505050565b7f54726164696e67206973206e6f74206f70656e21000000000000000000000000600082015250565b60006120c96014836119d4565b91506120d482612093565b602082019050919050565b600060208201905081810360008301526120f8816120bc565b9050919050565b600061210a82611ade565b915061211583611ade565b925082820190508082111561212d5761212c611dfd565b5b92915050565b7f4d61782077616c6c657421000000000000000000000000000000000000000000600082015250565b6000612169600b836119d4565b915061217482612133565b602082019050919050565b600060208201905081810360008301526121988161215c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061220c81611ab2565b92915050565b60006020828403121561222857612227611a7b565b5b6000612236848285016121fd565b91505092915050565b6000819050919050565b6000819050919050565b600061226e6122696122648461223f565b612249565b611ade565b9050919050565b61227e81612253565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122b981611aa0565b82525050565b60006122cb83836122b0565b60208301905092915050565b6000602082019050919050565b60006122ef82612284565b6122f9818561228f565b9350612304836122a0565b8060005b8381101561233557815161231c88826122bf565b9750612327836122d7565b925050600181019050612308565b5085935050505092915050565b600060a0820190506123576000830188611bf6565b6123646020830187612275565b818103604083015261237681866122e4565b90506123856060830185611d04565b6123926080830184611bf6565b9695505050505050565b60006123a782611ade565b91506123b283611ade565b92508282026123c081611ade565b915082820484148315176123d7576123d6611dfd565b5b5092915050565b60006123e982611ade565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361241b5761241a611dfd565b5b600182019050919050565b600061243182611ade565b915061243c83611ade565b925082820390508181111561245457612453611dfd565b5b9291505056fea2646970667358221220e452d57566f098ea983ffdd28a8aa558ddc9ebc8b1b8fcd4fc5bf14cad112f6d64736f6c6343000818003300000000000000000000000089e311889c6435f357a4e5eed59265b6d453ff9e

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806374c9f603116100ad57806395d89b411161007157806395d89b41146102e3578063a4d66daf14610301578063a9059cbb1461031f578063dd62ed3e1461034f578063f2fde38b1461037f5761012c565b806374c9f603146102675780637b11c9eb146102835780638a8c523c1461029f5780638da5cb5b146102a95780639456a343146102c75761012c565b806323b872dd116100f457806323b872dd146101d5578063313ce56714610205578063622565891461022357806370a082311461022d578063715018a61461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806310cd8fe51461017f57806318160ddd1461019b5780631c499ab0146101b9575b600080fd5b61013961039b565b6040516101469190611a59565b60405180910390f35b61016960048036038101906101649190611b14565b61042d565b6040516101769190611b6f565b60405180910390f35b61019960048036038101906101949190611bb6565b610450565b005b6101a3610466565b6040516101b09190611c05565b60405180910390f35b6101d360048036038101906101ce9190611c20565b610470565b005b6101ef60048036038101906101ea9190611c4d565b610513565b6040516101fc9190611b6f565b60405180910390f35b61020d610542565b60405161021a9190611cbc565b60405180910390f35b61022b61054b565b005b61024760048036038101906102429190611cd7565b61059c565b6040516102549190611c05565b60405180910390f35b6102656105e4565b005b610281600480360381019061027c9190611cd7565b6105f8565b005b61029d60048036038101906102989190611c20565b610717565b005b6102a76107c7565b005b6102b1610818565b6040516102be9190611d13565b60405180910390f35b6102e160048036038101906102dc9190611c20565b610842565b005b6102eb6108e5565b6040516102f89190611a59565b60405180910390f35b610309610977565b6040516103169190611b6f565b60405180910390f35b61033960048036038101906103349190611b14565b61098a565b6040516103469190611b6f565b60405180910390f35b61036960048036038101906103649190611d2e565b6109ad565b6040516103769190611c05565b60405180910390f35b61039960048036038101906103949190611cd7565b610a34565b005b6060600380546103aa90611d9d565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611d9d565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b600080610438610aba565b9050610445818585610ac2565b600191505092915050565b610458610ad4565b6104628282610b5b565b5050565b6000600254905090565b610478610ad4565b60326a115eec47f6cf7e350000006104909190611e2c565b8111156104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c990611ea9565b60405180910390fd5b806009819055507fdd4ef051c4c49233ec73abfc2ee1514725d2a818fbcde46ee5d34a49034922f9816040516105089190611c05565b60405180910390a150565b60008061051e610aba565b905061052b858285610bef565b610536858585610c83565b60019150509392505050565b60006012905090565b610553610ad4565b6000600e60006101000a81548160ff0219169083151502179055507f2d53e1bd10978dd02f36cd1d3680151195d9f7358e0c867bc753abecafb55e4360405160405180910390a1565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ec610ad4565b6105f66000610d77565b565b610600610818565b73ffffffffffffffffffffffffffffffffffffffff1661061e610aba565b73ffffffffffffffffffffffffffffffffffffffff1614806106945750601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661067c610aba565b73ffffffffffffffffffffffffffffffffffffffff16145b6106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca90611f15565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61071f610ad4565b60646a115eec47f6cf7e350000006107379190611e2c565b8111158015610747575060075481115b610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90611fa7565b60405180910390fd5b806008819055507f61b2ef6f1c79ec2267034142e470c0755cab1aad66eecc2a8c40fa7adf4deea6816040516107bc9190611c05565b60405180910390a150565b6107cf610ad4565b6001600e60016101000a81548160ff0219169083151502179055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61084a610ad4565b60646a115eec47f6cf7e350000006108629190611e2c565b8111156108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90612013565b60405180910390fd5b806007819055507fe33951e57fc9462e7ff38a756a56a577243dd25974864b3fe2a125a6b7fe74e6816040516108da9190611c05565b60405180910390a150565b6060600480546108f490611d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461092090611d9d565b801561096d5780601f106109425761010080835404028352916020019161096d565b820191906000526020600020905b81548152906001019060200180831161095057829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1681565b600080610995610aba565b90506109a2818585610c83565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a3c610ad4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aae5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610aa59190611d13565b60405180910390fd5b610ab781610d77565b50565b600033905090565b610acf8383836001610e3d565b505050565b610adc610aba565b73ffffffffffffffffffffffffffffffffffffffff16610afa610818565b73ffffffffffffffffffffffffffffffffffffffff1614610b5957610b1d610aba565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b509190611d13565b60405180910390fd5b565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb8282604051610be3929190612033565b60405180910390a15050565b6000610bfb84846109ad565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7d5781811015610c6d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610c649392919061205c565b60405180910390fd5b610c7c84848484036000610e3d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cf55760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610cec9190611d13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d675760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d5e9190611d13565b60405180910390fd5b610d72838383611014565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610eaf5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610ea69190611d13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f215760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610f189190611d13565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801561100e578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516110059190611c05565b60405180910390a35b50505050565b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110b55750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061116457507f000000000000000000000000102dbeeb65d037cc00dcccfd7fb98413ab3deadf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561116357507f000000000000000000000000102dbeeb65d037cc00dcccfd7fb98413ab3deadf73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b8061117b5750601060149054906101000a900460ff165b156111905761118b838383611334565b61132f565b600e60019054906101000a900460ff166111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d6906120df565b60405180910390fd5b600e60009054906101000a900460ff16801561124757507f000000000000000000000000102dbeeb65d037cc00dcccfd7fb98413ab3deadf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156112a557600954816112598461059c565b61126391906120ff565b11156112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061217f565b60405180910390fd5b5b7f000000000000000000000000102dbeeb65d037cc00dcccfd7fb98413ab3deadf73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156113045750611303611559565b5b15611313576113128161157f565b5b600061132084848461183c565b905061132d848483611334565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361138657806002600082825461137a91906120ff565b92505081905550611459565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611412578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016114099392919061205c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114a257806002600082825403925050819055506114ef565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161154c9190611c05565b60405180910390a3505050565b6000806115653061059c565b905043600f54108015611579575060075481115b91505090565b6001601060146101000a81548160ff02191690831515021790555060006115a8826008546119b0565b90506000600267ffffffffffffffff8111156115c7576115c661219f565b5b6040519080825280602002602001820160405280156115f55781602001602082028036833780820191505090505b509050308160008151811061160d5761160c6121ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d89190612212565b816001815181106116ec576116eb6121ce565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016117ac959493929190612342565b600060405180830381600087803b1580156117c657600080fd5b505af11580156117da573d6000803e3d6000fd5b5050505043600f819055507ffefd9f5dc8f83b5e9465ef30d84cfaae22d27ec9f64d29cb8262a9f6e937e325826040516118149190611c05565b60405180910390a150506000601060146101000a81548160ff02191690831515021790555050565b600080606460058461184e919061239c565b6118589190611e2c565b90507f000000000000000000000000102dbeeb65d037cc00dcccfd7fb98413ab3deadf73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156118b85750600c54600a54105b156118f657600a60008154809291906118d0906123de565b91905055506064600d54846118e5919061239c565b6118ef9190611e2c565b905061198f565b7f000000000000000000000000102dbeeb65d037cc00dcccfd7fb98413ab3deadf73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119545750600c54600b54105b1561198e57600b600081548092919061196c906123de565b91905055506064600d5484611981919061239c565b61198b9190611e2c565b90505b5b61199a853083611334565b80836119a69190612426565b9150509392505050565b60008183116119bf57826119c1565b815b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611a035780820151818401526020810190506119e8565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a2b826119c9565b611a3581856119d4565b9350611a458185602086016119e5565b611a4e81611a0f565b840191505092915050565b60006020820190508181036000830152611a738184611a20565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aab82611a80565b9050919050565b611abb81611aa0565b8114611ac657600080fd5b50565b600081359050611ad881611ab2565b92915050565b6000819050919050565b611af181611ade565b8114611afc57600080fd5b50565b600081359050611b0e81611ae8565b92915050565b60008060408385031215611b2b57611b2a611a7b565b5b6000611b3985828601611ac9565b9250506020611b4a85828601611aff565b9150509250929050565b60008115159050919050565b611b6981611b54565b82525050565b6000602082019050611b846000830184611b60565b92915050565b611b9381611b54565b8114611b9e57600080fd5b50565b600081359050611bb081611b8a565b92915050565b60008060408385031215611bcd57611bcc611a7b565b5b6000611bdb85828601611ac9565b9250506020611bec85828601611ba1565b9150509250929050565b611bff81611ade565b82525050565b6000602082019050611c1a6000830184611bf6565b92915050565b600060208284031215611c3657611c35611a7b565b5b6000611c4484828501611aff565b91505092915050565b600080600060608486031215611c6657611c65611a7b565b5b6000611c7486828701611ac9565b9350506020611c8586828701611ac9565b9250506040611c9686828701611aff565b9150509250925092565b600060ff82169050919050565b611cb681611ca0565b82525050565b6000602082019050611cd16000830184611cad565b92915050565b600060208284031215611ced57611cec611a7b565b5b6000611cfb84828501611ac9565b91505092915050565b611d0d81611aa0565b82525050565b6000602082019050611d286000830184611d04565b92915050565b60008060408385031215611d4557611d44611a7b565b5b6000611d5385828601611ac9565b9250506020611d6485828601611ac9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611db557607f821691505b602082108103611dc857611dc7611d6e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e3782611ade565b9150611e4283611ade565b925082611e5257611e51611dce565b5b828204905092915050565b7f4f6e6c792076616c756573206c7420322520737570706c792100000000000000600082015250565b6000611e936019836119d4565b9150611e9e82611e5d565b602082019050919050565b60006020820190508181036000830152611ec281611e86565b9050919050565b7f4163636573732064656e69656421000000000000000000000000000000000000600082015250565b6000611eff600e836119d4565b9150611f0a82611ec9565b602082019050919050565b60006020820190508181036000830152611f2e81611ef2565b9050919050565b7f4f6e6c792076616c756573206c7420312520737570706c7920616e642067742060008201527f5f737761706261636b5468726573486f6c642100000000000000000000000000602082015250565b6000611f916033836119d4565b9150611f9c82611f35565b604082019050919050565b60006020820190508181036000830152611fc081611f84565b9050919050565b7f4f6e6c792076616c756573206c7420312520737570706c792100000000000000600082015250565b6000611ffd6019836119d4565b915061200882611fc7565b602082019050919050565b6000602082019050818103600083015261202c81611ff0565b9050919050565b60006040820190506120486000830185611d04565b6120556020830184611b60565b9392505050565b60006060820190506120716000830186611d04565b61207e6020830185611bf6565b61208b6040830184611bf6565b949350505050565b7f54726164696e67206973206e6f74206f70656e21000000000000000000000000600082015250565b60006120c96014836119d4565b91506120d482612093565b602082019050919050565b600060208201905081810360008301526120f8816120bc565b9050919050565b600061210a82611ade565b915061211583611ade565b925082820190508082111561212d5761212c611dfd565b5b92915050565b7f4d61782077616c6c657421000000000000000000000000000000000000000000600082015250565b6000612169600b836119d4565b915061217482612133565b602082019050919050565b600060208201905081810360008301526121988161215c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061220c81611ab2565b92915050565b60006020828403121561222857612227611a7b565b5b6000612236848285016121fd565b91505092915050565b6000819050919050565b6000819050919050565b600061226e6122696122648461223f565b612249565b611ade565b9050919050565b61227e81612253565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122b981611aa0565b82525050565b60006122cb83836122b0565b60208301905092915050565b6000602082019050919050565b60006122ef82612284565b6122f9818561228f565b9350612304836122a0565b8060005b8381101561233557815161231c88826122bf565b9750612327836122d7565b925050600181019050612308565b5085935050505092915050565b600060a0820190506123576000830188611bf6565b6123646020830187612275565b818103604083015261237681866122e4565b90506123856060830185611d04565b6123926080830184611bf6565b9695505050505050565b60006123a782611ade565b91506123b283611ade565b92508282026123c081611ade565b915082820484148315176123d7576123d6611dfd565b5b5092915050565b60006123e982611ade565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361241b5761241a611dfd565b5b600182019050919050565b600061243182611ade565b915061243c83611ade565b925082820390508181111561245457612453611dfd565b5b9291505056fea2646970667358221220e452d57566f098ea983ffdd28a8aa558ddc9ebc8b1b8fcd4fc5bf14cad112f6d64736f6c63430008180033

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

00000000000000000000000089e311889c6435f357a4e5eed59265b6d453ff9e

-----Decoded View---------------
Arg [0] : __taxWallet (address): 0x89E311889C6435f357a4e5EeD59265B6d453FF9E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000089e311889c6435f357a4e5eed59265b6d453ff9e


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.