Token FIBO

 

Overview ERC-20

Price
$0.03 @ 0.028966 MATIC (-4.52%)
Fully Diluted Market Cap
Total Supply:
100,000,000 FIBO

Holders:
1,171 addresses

Transfers:
-

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

FibSwap DEx is a blockchain dex allowing traders to swap any coin between BSC and ETH blockchains on the web and smartphones.

Market

Volume (24H):$2,875.51
Market Capitalization:$9,179,048.00
Circulating Supply:90,000,000.00 FIBO
Market Data Source: Coinmarketcap


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

Contract Source Code Verified (Exact Match)

Contract Name:
FIBO

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-11
*/

// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.13;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/interfaces/IUniswapV2Factory.sol


pragma solidity ^0.8.13;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}


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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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


// File contracts/Fibo.sol


pragma solidity ^0.8.13;




contract FIBO is ERC20, Ownable {
    uint256 public buyTax = 400; // 4%
    uint256 public sellTax = 200; // 2%
    uint256 public immutable MAX_TAX = 1000; // 10%
    uint256 public immutable BASE_DENOMINATOR = 10000;

    address public treasury;
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    enum TransferType {
        TRANSFER, // 0
        BUY, // 1
        SELL // 2
    }

    mapping(address => bool) public excluded;
    mapping(address => bool) public exchanges;
    mapping(address => bool) public operators;

    event TaxUpdated(address indexed owner, TransferType tType, uint256 prevValue, uint256 newValue);
    event Excluded(address indexed account, bool excluded);
    event TreasuryUpdated(address indexed prevAddr, address indexed newAddr);
    event SetExchangeAddress(address indexed exchange, bool isExchange);
    event SetOperator(address indexed operator, bool isOperator);
    event NumTokensToSellUpdated(uint256 prevAmount, uint256 newAmount);

    /**
     * @dev Throws if called by any account other than the operator.
     */
    modifier onlyOperator() {
        require(operators[msg.sender], "!operator");
        _;
    }

    /**
     * @dev Creates a FIBO token contract
     * - MUST mint the total supply (100 mil) of tokens
     */
    constructor(address uniV2Router) ERC20("FIBO", "FIBO") {
        uniswapV2Router = IUniswapV2Router02(uniV2Router);
        // create a uniswap pair
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        treasury = msg.sender;
        excluded[msg.sender] = true;
        excluded[address(this)] = true;
        exchanges[uniswapV2Pair] = true;
        operators[msg.sender] = true;

        _mint(msg.sender, 100000000e18);
    }

    /**
     * @dev Updates tax value for buy
     * - MUST be called by the owner
     * - MUST check the tax value if it's lower than maximum tax which is allowed to set
     * - MUST emit the TaxUpdated event
     */
    function setTaxForBuy(uint256 _tax) external onlyOwner {
        require(_tax <= MAX_TAX, "!valid tax value");
        emit TaxUpdated(msg.sender, TransferType.BUY, buyTax, _tax);
        buyTax = _tax;
    }

    /**
     * @dev Updates tax value for sell
     * - MUST be called by the owner
     * - MUST check the tax value if it's lower than maximum tax which is allowed to set
     * - MUST emit the TaxUpdated event
     */
    function setTaxForSell(uint256 _tax) external onlyOwner {
        require(_tax <= MAX_TAX, "!valid tax value");
        emit TaxUpdated(msg.sender, TransferType.SELL, sellTax, _tax);
        sellTax = _tax;
    }

    /**
     * @dev Excludes/Includes the `account` from fee
     * - MUST be called by the owner
     * - MUST emit the Excluded event
     * - MUST check if new status is same to the previous status
     */
    function excludeFromFee(address account, bool isExcluded) external onlyOwner {
        require(excluded[account] != isExcluded, "Oops!, trying to update with the same value");
        excluded[account] = isExcluded;
        emit Excluded(account, isExcluded);
    }

    /**
     * @dev Sets the treausry address for both buyTax and sellTax
     * - MUST be called by the owner
     * - MUST emit the TreasuryUpdated event
     * - MUST check if new treasury address is same to the previous one
     */
    function setTreasuryAddress(address _treasury) external onlyOwner {
        require(treasury != _treasury, "Oops!, trying to update with the same value");
        emit TreasuryUpdated(treasury, _treasury);
        treasury = _treasury;
        excluded[treasury] = true;
    }

    /**
     * @dev Sets/Unsets the `_exchange` as a exchange address
     * - MUST be called by the owner
     * - MUST check if you're going to update with the same value
     * - MUST emit the SetExchangeAddress event
     */
    function setExchangeAddress(address _exchange, bool _isExchange) external onlyOwner {
        require(exchanges[_exchange] != _isExchange, "Oops!, trying to update with the same value");
        emit SetExchangeAddress(_exchange, _isExchange);
        exchanges[_exchange] = _isExchange;
    }

    /**
     * @dev Sets/Unsets the `_operator` as a operator address
     * - MUST be called by the owner
     * - MUST check if you're going to update with the same value
     * - MUST emit the SetOperator event
     */
    function setOperator(address _operator, bool _isOperator) external onlyOwner {
        require(operators[_operator] != _isOperator, "Oops!, trying to update with the same value");
        emit SetOperator(_operator, _isOperator);
        operators[_operator] = _isOperator;
    }

    /**
     * @dev Swap fee in exchange for ETH and send it to the treasury
     * - MUST be called by the operator
     */
    function collectFee(uint256 amount) external onlyOperator {
        uint256 contract_balance = balanceOf(address(this));
        require(contract_balance > 0, "zero balance");
        uint256 swap_amount = amount >= contract_balance ? contract_balance : amount;
        _takeFee(swap_amount);
    }

    /**
     * @dev Internal function called in transfer external call.
     * In case the transfer is either buy or sell transfer,
     * we need to take the corresponding fee amount and transfer them to the treasury
     */
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        uint256 feeAmount = _hookTransfer(sender, recipient, amount);

        if (feeAmount > 0) {
            super._transfer(sender, address(this), feeAmount);
            if (exchanges[recipient]) {
                // If this is a sell transaction, swap fee in exchange to ETH and send it to the treasury
                _takeFee(feeAmount);
            }
        }

        super._transfer(sender, recipient, amount - feeAmount);
    }

    /**
     * @dev Hooks buy/sell transfer to get the fee amount of FIBO token
     *
     * - MUST skip if either sender or recipient is excluded from fee.
     * - MUST skip if the transfer is neither a buy transfer nor a sell transfer
     */
    function _hookTransfer(address sender, address recipient, uint256 amount) internal view returns (uint256) {
        if (excluded[sender] || excluded[recipient]) return 0;
        TransferType transferType =
            exchanges[sender] ? TransferType.BUY : exchanges[recipient] ? TransferType.SELL : TransferType.TRANSFER;
        if (transferType == TransferType.TRANSFER) return 0;

        uint256 fee_percent = transferType == TransferType.BUY ? buyTax : sellTax;
        return (amount * fee_percent) / BASE_DENOMINATOR;
    }

    /**
     * @dev Swaps the `amount` of token in exchange for the native and transfer them to the treasury
     */
    function _takeFee(uint256 amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), amount);

        uniswapV2Router.swapExactTokensForETH(
            amount,
            0, // accept any amount of ETH
            path,
            treasury,
            block.timestamp + 3600
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"uniV2Router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"Excluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"NumTokensToSellUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"exchange","type":"address"},{"indexed":false,"internalType":"bool","name":"isExchange","type":"bool"}],"name":"SetExchangeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"isOperator","type":"bool"}],"name":"SetOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"enum FIBO.TransferType","name":"tType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"prevValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"TaxUpdated","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":true,"internalType":"address","name":"prevAddr","type":"address"},{"indexed":true,"internalType":"address","name":"newAddr","type":"address"}],"name":"TreasuryUpdated","type":"event"},{"inputs":[],"name":"BASE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"collectFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"exchanges","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"operators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_exchange","type":"address"},{"internalType":"bool","name":"_isExchange","type":"bool"}],"name":"setExchangeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"bool","name":"_isOperator","type":"bool"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setTaxForBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setTaxForSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

61010060405261019060065560c86007556103e860805261271060a0523480156200002957600080fd5b5060405162001dff38038062001dff8339810160408190526200004c91620003e8565b6040805180820182526004808252634649424f60e01b6020808401829052845180860190955291845290830152906003620000888382620004be565b506004620000978282620004be565b505050620000b4620000ae620002a560201b60201c565b620002a9565b6001600160a01b03811660c08190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620000ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001259190620003e8565b6001600160a01b031663c9c653963060c0516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000175573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019b9190620003e8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001e9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020f9190620003e8565b6001600160a01b031660e0819052600880546001600160a01b031916339081179091556000818152600960209081526040808320805460ff1990811660019081179092553085528285208054821683179055958452600a83528184208054871682179055848452600b9092529091208054909316179091556200029e906a52b7d2dcc80cd2e4000000620002fb565b50620005b2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003565760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200036a91906200058a565b90915550506001600160a01b03821660009081526020819052604081208054839290620003999084906200058a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b600060208284031215620003fb57600080fd5b81516001600160a01b03811681146200041357600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044557607f821691505b6020821081036200046657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e357600081815260208120601f850160051c81016020861015620004955750805b601f850160051c820191505b81811015620004b657828155600101620004a1565b505050505050565b81516001600160401b03811115620004da57620004da6200041a565b620004f281620004eb845462000430565b846200046c565b602080601f8311600181146200052a5760008415620005115750858301515b600019600386901b1c1916600185901b178555620004b6565b600085815260208120601f198616915b828110156200055b578886015182559484019460019091019084016200053a565b50858210156200057a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005ac57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c05160e0516117e962000616600039600061032401526000818161026801528181610efd01528181610fb60152610fe801526000818161046d01526111780152600081816103e101528181610587015261068401526117e96000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636605bfda1161010f578063a457c2d7116100a2578063cc1776d311610071578063cc1776d31461048f578063dd62ed3e14610498578063df8408fe146104ab578063f2fde38b146104be57600080fd5b8063a457c2d71461042f578063a9059cbb14610442578063a969ff0a14610455578063bd8595841461046857600080fd5b806386a35f25116100de57806386a35f25146103dc57806386cefcb6146104035780638da5cb5b1461041657806395d89b411461042757600080fd5b80636605bfda1461037557806370a0823114610388578063715018a6146103b15780637412dbb3146103b957600080fd5b8063313ce5671161018757806349bd5a5e1161015657806349bd5a5e1461031f5780634f7041a514610346578063558a72971461034f57806361d027b31461036257600080fd5b8063313ce567146102c757806339509351146102d65780633c0a5e2a146102e9578063429cead1146102fc57600080fd5b806313e7c9d8116101c357806313e7c9d8146102405780631694505e1461026357806318160ddd146102a257806323b872dd146102b457600080fd5b806306fdde03146101ea578063095ea7b31461020857806310330a401461022b575b600080fd5b6101f26104d1565b6040516101ff9190611383565b60405180910390f35b61021b6102163660046113e6565b610563565b60405190151581526020016101ff565b61023e610239366004611412565b61057d565b005b61021b61024e36600461142b565b600b6020526000908152604090205460ff1681565b61028a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101ff565b6002545b6040519081526020016101ff565b61021b6102c2366004611448565b610632565b604051601281526020016101ff565b61021b6102e43660046113e6565b610658565b61023e6102f7366004611412565b61067a565b61021b61030a36600461142b565b60096020526000908152604090205460ff1681565b61028a7f000000000000000000000000000000000000000000000000000000000000000081565b6102a660065481565b61023e61035d366004611489565b61072a565b60085461028a906001600160a01b031681565b61023e61038336600461142b565b6107e2565b6102a661039636600461142b565b6001600160a01b031660009081526020819052604090205490565b61023e61088b565b61021b6103c736600461142b565b600a6020526000908152604090205460ff1681565b6102a67f000000000000000000000000000000000000000000000000000000000000000081565b61023e610411366004611489565b61089f565b6005546001600160a01b031661028a565b6101f2610957565b61021b61043d3660046113e6565b610966565b61021b6104503660046113e6565b6109ec565b61023e610463366004611412565b6109fa565b6102a67f000000000000000000000000000000000000000000000000000000000000000081565b6102a660075481565b6102a66104a63660046114c7565b610ab3565b61023e6104b9366004611489565b610ade565b61023e6104cc36600461142b565b610b85565b6060600380546104e0906114f5565b80601f016020809104026020016040519081016040528092919081815260200182805461050c906114f5565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b600033610571818585610bfe565b60019150505b92915050565b610585610d22565b7f00000000000000000000000000000000000000000000000000000000000000008111156105ed5760405162461bcd60e51b815260206004820152601060248201526f2176616c6964207461782076616c756560801b60448201526064015b60405180910390fd5b60065460405133917f316e9df9e95e4f94bf09c308996cf38554378b036b4d4e76e57b59ec93eca95491610625916001918690611545565b60405180910390a2600655565b600033610640858285610d7c565b61064b858585610df6565b60019150505b9392505050565b60003361057181858561066b8383610ab3565b6106759190611591565b610bfe565b610682610d22565b7f00000000000000000000000000000000000000000000000000000000000000008111156106e55760405162461bcd60e51b815260206004820152601060248201526f2176616c6964207461782076616c756560801b60448201526064016105e4565b60075460405133917f316e9df9e95e4f94bf09c308996cf38554378b036b4d4e76e57b59ec93eca9549161071d916002918690611545565b60405180910390a2600755565b610732610d22565b6001600160a01b0382166000908152600b602052604090205481151560ff9091161515036107725760405162461bcd60e51b81526004016105e4906115a4565b816001600160a01b03167f1618a22a3b00b9ac70fd5a82f1f5cdd8cb272bd0f1b740ddf7c26ab05881dd5b826040516107af911515815260200190565b60405180910390a26001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6107ea610d22565b6008546001600160a01b038083169116036108175760405162461bcd60e51b81526004016105e4906115a4565b6008546040516001600160a01b038084169216907f4ab5be82436d353e61ca18726e984e561f5c1cc7c6d38b29d2553c790434705a90600090a3600880546001600160a01b039092166001600160a01b0319909216821790556000908152600960205260409020805460ff19166001179055565b610893610d22565b61089d6000610e54565b565b6108a7610d22565b6001600160a01b0382166000908152600a602052604090205481151560ff9091161515036108e75760405162461bcd60e51b81526004016105e4906115a4565b816001600160a01b03167ffec2d747b9eb985f6bd3012041f811d39f77a7421bac5706d7858fd2b350680c82604051610924911515815260200190565b60405180910390a26001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6060600480546104e0906114f5565b600033816109748286610ab3565b9050838110156109d45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105e4565b6109e18286868403610bfe565b506001949350505050565b600033610571818585610df6565b336000908152600b602052604090205460ff16610a455760405162461bcd60e51b815260206004820152600960248201526810b7b832b930ba37b960b91b60448201526064016105e4565b3060009081526020819052604090205480610a915760405162461bcd60e51b815260206004820152600c60248201526b7a65726f2062616c616e636560a01b60448201526064016105e4565b600081831015610aa15782610aa3565b815b9050610aae81610ea6565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ae6610d22565b6001600160a01b03821660009081526009602052604090205481151560ff909116151503610b265760405162461bcd60e51b81526004016105e4906115a4565b6001600160a01b038216600081815260096020908152604091829020805460ff191685151590811790915591519182527ff3a7c8242f0708821ed31a47f066fc7fa42f2ae65ed3e4d1d7cb5b3765d2939c910160405180910390a25050565b610b8d610d22565b6001600160a01b038116610bf25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e4565b610bfb81610e54565b50565b6001600160a01b038316610c605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105e4565b6001600160a01b038216610cc15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105e4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461089d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105e4565b6000610d888484610ab3565b90506000198114610df05781811015610de35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105e4565b610df08484848403610bfe565b50505050565b6000610e0384848461108b565b90508015610e4057610e168430836111b5565b6001600160a01b0383166000908152600a602052604090205460ff1615610e4057610e4081610ea6565b610df08484610e4f84866115ef565b6111b5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610edb57610edb611618565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7d919061162e565b81600181518110610f9057610f90611618565b60200260200101906001600160a01b031690816001600160a01b031681525050610fdb307f000000000000000000000000000000000000000000000000000000000000000084610bfe565b6008546001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116916318cbafe591859160009186911661102442610e10611591565b6040518663ffffffff1660e01b815260040161104495949392919061164b565b6000604051808303816000875af1158015611063573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610aae91908101906116bc565b6001600160a01b03831660009081526009602052604081205460ff16806110ca57506001600160a01b03831660009081526009602052604090205460ff165b156110d757506000610651565b6001600160a01b0384166000908152600a602052604081205460ff16611125576001600160a01b0384166000908152600a602052604090205460ff1661111e576000611128565b6002611128565b60015b9050600081600281111561113e5761113e61152f565b0361114d576000915050610651565b600060018260028111156111635761116361152f565b1461117057600754611174565b6006545b90507f00000000000000000000000000000000000000000000000000000000000000006111a1828661177a565b6111ab9190611791565b9695505050505050565b6001600160a01b0383166112195760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105e4565b6001600160a01b03821661127b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105e4565b6001600160a01b038316600090815260208190526040902054818110156112f35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105e4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061132a908490611591565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161137691815260200190565b60405180910390a3610df0565b600060208083528351808285015260005b818110156113b057858101830151858201604001528201611394565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bfb57600080fd5b600080604083850312156113f957600080fd5b8235611404816113d1565b946020939093013593505050565b60006020828403121561142457600080fd5b5035919050565b60006020828403121561143d57600080fd5b8135610651816113d1565b60008060006060848603121561145d57600080fd5b8335611468816113d1565b92506020840135611478816113d1565b929592945050506040919091013590565b6000806040838503121561149c57600080fd5b82356114a7816113d1565b9150602083013580151581146114bc57600080fd5b809150509250929050565b600080604083850312156114da57600080fd5b82356114e5816113d1565b915060208301356114bc816113d1565b600181811c9082168061150957607f821691505b60208210810361152957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052602160045260246000fd5b606081016003851061156757634e487b7160e01b600052602160045260246000fd5b938152602081019290925260409091015290565b634e487b7160e01b600052601160045260246000fd5b808201808211156105775761057761157b565b6020808252602b908201527f4f6f7073212c20747279696e6720746f2075706461746520776974682074686560408201526a2073616d652076616c756560a81b606082015260800190565b818103818111156105775761057761157b565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561164057600080fd5b8151610651816113d1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561169b5784516001600160a01b031683529383019391830191600101611676565b50506001600160a01b03969096166060850152505050608001529392505050565b600060208083850312156116cf57600080fd5b825167ffffffffffffffff808211156116e757600080fd5b818501915085601f8301126116fb57600080fd5b81518181111561170d5761170d611602565b8060051b604051601f19603f8301168101818110858211171561173257611732611602565b60405291825284820192508381018501918883111561175057600080fd5b938501935b8285101561176e57845184529385019392850192611755565b98975050505050505050565b80820281158282048414176105775761057761157b565b6000826117ae57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220240c03f5f3d049cf252b281585167ff92f2446775498db604d41524643b40c8d64736f6c63430008110033000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff

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

000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff

-----Decoded View---------------
Arg [0] : uniV2Router (address): 0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff


Deployed ByteCode Sourcemap

26507:7477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15653:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18004:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;18004:201:0;1023:187:1;28634:212:0;;;;;;:::i;:::-;;:::i;:::-;;27064:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26768:51;;;;;;;;-1:-1:-1;;;;;1842:32:1;;;1824:51;;1812:2;1797:18;26768:51:0;1652:229:1;16773:108:0;16861:12;;16773:108;;;2032:25:1;;;2020:2;2005:18;16773:108:0;1886:177:1;18785:295:0;;;;;;:::i;:::-;;:::i;16615:93::-;;;16698:2;2671:36:1;;2659:2;2644:18;16615:93:0;2529:184:1;19489:238:0;;;;;;:::i;:::-;;:::i;29081:216::-;;;;;;:::i;:::-;;:::i;26969:40::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26826:38;;;;;26546:27;;;;;;31096:283;;;;;;:::i;:::-;;:::i;26738:23::-;;;;;-1:-1:-1;;;;;26738:23:0;;;30039:281;;;;;;:::i;:::-;;:::i;16944:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17045:18:0;17018:7;17045:18;;;;;;;;;;;;16944:127;9056:103;;;:::i;27016:41::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26627:39;;;;;30563:297;;;;;;:::i;:::-;;:::i;8408:87::-;8481:6;;-1:-1:-1;;;;;8481:6:0;8408:87;;15872:104;;;:::i;20230:436::-;;;;;;:::i;:::-;;:::i;17277:193::-;;;;;;:::i;:::-;;:::i;31516:303::-;;;;;;:::i;:::-;;:::i;26680:49::-;;;;;26586:28;;;;;;17533:151;;;;;;:::i;:::-;;:::i;29520:269::-;;;;;;:::i;:::-;;:::i;9314:201::-;;;;;;:::i;:::-;;:::i;15653:100::-;15707:13;15740:5;15733:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15653:100;:::o;18004:201::-;18087:4;7033:10;18143:32;7033:10;18159:7;18168:6;18143:8;:32::i;:::-;18193:4;18186:11;;;18004:201;;;;;:::o;28634:212::-;8294:13;:11;:13::i;:::-;28716:7:::1;28708:4;:15;;28700:44;;;::::0;-1:-1:-1;;;28700:44:0;;4327:2:1;28700:44:0::1;::::0;::::1;4309:21:1::0;4366:2;4346:18;;;4339:30;-1:-1:-1;;;4385:18:1;;;4378:46;4441:18;;28700:44:0::1;;;;;;;;;28801:6;::::0;28760:54:::1;::::0;28771:10:::1;::::0;28760:54:::1;::::0;::::1;::::0;28783:16:::1;::::0;28809:4;;28760:54:::1;:::i;:::-;;;;;;;;28825:6;:13:::0;28634:212::o;18785:295::-;18916:4;7033:10;18974:38;18990:4;7033:10;19005:6;18974:15;:38::i;:::-;19023:27;19033:4;19039:2;19043:6;19023:9;:27::i;:::-;19068:4;19061:11;;;18785:295;;;;;;:::o;19489:238::-;19577:4;7033:10;19633:64;7033:10;19649:7;19686:10;19658:25;7033:10;19649:7;19658:9;:25::i;:::-;:38;;;;:::i;:::-;19633:8;:64::i;29081:216::-;8294:13;:11;:13::i;:::-;29164:7:::1;29156:4;:15;;29148:44;;;::::0;-1:-1:-1;;;29148:44:0;;4327:2:1;29148:44:0::1;::::0;::::1;4309:21:1::0;4366:2;4346:18;;;4339:30;-1:-1:-1;;;4385:18:1;;;4378:46;4441:18;;29148:44:0::1;4125:340:1::0;29148:44:0::1;29250:7;::::0;29208:56:::1;::::0;29219:10:::1;::::0;29208:56:::1;::::0;::::1;::::0;29231:17:::1;::::0;29259:4;;29208:56:::1;:::i;:::-;;;;;;;;29275:7;:14:::0;29081:216::o;31096:283::-;8294:13;:11;:13::i;:::-;-1:-1:-1;;;;;31192:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;:35;::::1;;:20;::::0;;::::1;:35;;::::0;31184:91:::1;;;;-1:-1:-1::0;;;31184:91:0::1;;;;;;;:::i;:::-;31303:9;-1:-1:-1::0;;;;;31291:35:0::1;;31314:11;31291:35;;;;1188:14:1::0;1181:22;1163:41;;1151:2;1136:18;;1023:187;31291:35:0::1;;;;;;;;-1:-1:-1::0;;;;;31337:20:0;;;::::1;;::::0;;;:9:::1;:20;::::0;;;;:34;;-1:-1:-1;;31337:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31096:283::o;30039:281::-;8294:13;:11;:13::i;:::-;30124:8:::1;::::0;-1:-1:-1;;;;;30124:21:0;;::::1;:8:::0;::::1;:21:::0;30116:77:::1;;;;-1:-1:-1::0;;;30116:77:0::1;;;;;;;:::i;:::-;30225:8;::::0;30209:36:::1;::::0;-1:-1:-1;;;;;30209:36:0;;::::1;::::0;30225:8:::1;::::0;30209:36:::1;::::0;30225:8:::1;::::0;30209:36:::1;30256:8;:20:::0;;-1:-1:-1;;;;;30256:20:0;;::::1;-1:-1:-1::0;;;;;;30256:20:0;;::::1;::::0;::::1;::::0;;:8:::1;30287:18:::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;30287:25:0::1;30256:20:::0;30287:25:::1;::::0;;30039:281::o;9056:103::-;8294:13;:11;:13::i;:::-;9121:30:::1;9148:1;9121:18;:30::i;:::-;9056:103::o:0;30563:297::-;8294:13;:11;:13::i;:::-;-1:-1:-1;;;;;30666:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;:35;::::1;;:20;::::0;;::::1;:35;;::::0;30658:91:::1;;;;-1:-1:-1::0;;;30658:91:0::1;;;;;;;:::i;:::-;30784:9;-1:-1:-1::0;;;;;30765:42:0::1;;30795:11;30765:42;;;;1188:14:1::0;1181:22;1163:41;;1151:2;1136:18;;1023:187;30765:42:0::1;;;;;;;;-1:-1:-1::0;;;;;30818:20:0;;;::::1;;::::0;;;:9:::1;:20;::::0;;;;:34;;-1:-1:-1;;30818:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30563:297::o;15872:104::-;15928:13;15961:7;15954:14;;;;;:::i;20230:436::-;20323:4;7033:10;20323:4;20406:25;7033:10;20423:7;20406:9;:25::i;:::-;20379:52;;20470:15;20450:16;:35;;20442:85;;;;-1:-1:-1;;;20442:85:0;;5970:2:1;20442:85:0;;;5952:21:1;6009:2;5989:18;;;5982:30;6048:34;6028:18;;;6021:62;-1:-1:-1;;;6099:18:1;;;6092:35;6144:19;;20442:85:0;5768:401:1;20442:85:0;20563:60;20572:5;20579:7;20607:15;20588:16;:34;20563:8;:60::i;:::-;-1:-1:-1;20654:4:0;;20230:436;-1:-1:-1;;;;20230:436:0:o;17277:193::-;17356:4;7033:10;17412:28;7033:10;17429:2;17433:6;17412:9;:28::i;31516:303::-;27715:10;27705:21;;;;:9;:21;;;;;;;;27697:43;;;;-1:-1:-1;;;27697:43:0;;6376:2:1;27697:43:0;;;6358:21:1;6415:1;6395:18;;;6388:29;-1:-1:-1;;;6433:18:1;;;6426:39;6482:18;;27697:43:0;6174:332:1;27697:43:0;31630:4:::1;31585:24;17045:18:::0;;;;;;;;;;;31655:20;31647:45:::1;;;::::0;-1:-1:-1;;;31647:45:0;;6713:2:1;31647:45:0::1;::::0;::::1;6695:21:1::0;6752:2;6732:18;;;6725:30;-1:-1:-1;;;6771:18:1;;;6764:42;6823:18;;31647:45:0::1;6511:336:1::0;31647:45:0::1;31703:19;31735:16;31725:6;:26;;:54;;31773:6;31725:54;;;31754:16;31725:54;31703:76;;31790:21;31799:11;31790:8;:21::i;:::-;31574:245;;31516:303:::0;:::o;17533:151::-;-1:-1:-1;;;;;17649:18:0;;;17622:7;17649:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17533:151::o;29520:269::-;8294:13;:11;:13::i;:::-;-1:-1:-1;;;;;29616:17:0;::::1;;::::0;;;:8:::1;:17;::::0;;;;;:31;::::1;;:17;::::0;;::::1;:31;;::::0;29608:87:::1;;;;-1:-1:-1::0;;;29608:87:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29706:17:0;::::1;;::::0;;;:8:::1;:17;::::0;;;;;;;;:30;;-1:-1:-1;;29706:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29752:29;;1163:41:1;;;29752:29:0::1;::::0;1136:18:1;29752:29:0::1;;;;;;;29520:269:::0;;:::o;9314:201::-;8294:13;:11;:13::i;:::-;-1:-1:-1;;;;;9403:22:0;::::1;9395:73;;;::::0;-1:-1:-1;;;9395:73:0;;7054:2:1;9395:73:0::1;::::0;::::1;7036:21:1::0;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;-1:-1:-1;;;7183:18:1;;;7176:36;7229:19;;9395:73:0::1;6852:402:1::0;9395:73:0::1;9479:28;9498:8;9479:18;:28::i;:::-;9314:201:::0;:::o;23855:380::-;-1:-1:-1;;;;;23991:19:0;;23983:68;;;;-1:-1:-1;;;23983:68:0;;7461:2:1;23983:68:0;;;7443:21:1;7500:2;7480:18;;;7473:30;7539:34;7519:18;;;7512:62;-1:-1:-1;;;7590:18:1;;;7583:34;7634:19;;23983:68:0;7259:400:1;23983:68:0;-1:-1:-1;;;;;24070:21:0;;24062:68;;;;-1:-1:-1;;;24062:68:0;;7866:2:1;24062:68:0;;;7848:21:1;7905:2;7885:18;;;7878:30;7944:34;7924:18;;;7917:62;-1:-1:-1;;;7995:18:1;;;7988:32;8037:19;;24062:68:0;7664:398:1;24062:68:0;-1:-1:-1;;;;;24143:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24195:32;;2032:25:1;;;24195:32:0;;2005:18:1;24195:32:0;;;;;;;23855:380;;;:::o;8573:132::-;8481:6;;-1:-1:-1;;;;;8481:6:0;7033:10;8637:23;8629:68;;;;-1:-1:-1;;;8629:68:0;;8269:2:1;8629:68:0;;;8251:21:1;;;8288:18;;;8281:30;8347:34;8327:18;;;8320:62;8399:18;;8629:68:0;8067:356:1;24526:453:0;24661:24;24688:25;24698:5;24705:7;24688:9;:25::i;:::-;24661:52;;-1:-1:-1;;24728:16:0;:37;24724:248;;24810:6;24790:16;:26;;24782:68;;;;-1:-1:-1;;;24782:68:0;;8630:2:1;24782:68:0;;;8612:21:1;8669:2;8649:18;;;8642:30;8708:31;8688:18;;;8681:59;8757:18;;24782:68:0;8428:353:1;24782:68:0;24894:51;24903:5;24910:7;24938:6;24919:16;:25;24894:8;:51::i;:::-;24650:329;24526:453;;;:::o;32058:542::-;32157:17;32177:40;32191:6;32199:9;32210:6;32177:13;:40::i;:::-;32157:60;-1:-1:-1;32234:13:0;;32230:296;;32264:49;32280:6;32296:4;32303:9;32264:15;:49::i;:::-;-1:-1:-1;;;;;32332:20:0;;;;;;:9;:20;;;;;;;;32328:187;;;32480:19;32489:9;32480:8;:19::i;:::-;32538:54;32554:6;32562:9;32573:18;32582:9;32573:6;:18;:::i;:::-;32538:15;:54::i;9675:191::-;9768:6;;;-1:-1:-1;;;;;9785:17:0;;;-1:-1:-1;;;;;;9785:17:0;;;;;;;9818:40;;9768:6;;;9785:17;9768:6;;9818:40;;9749:16;;9818:40;9738:128;9675:191;:::o;33529:452::-;33607:16;;;33621:1;33607:16;;;;;;;;33583:21;;33607:16;;;;;;;;;;-1:-1:-1;33607:16:0;33583:40;;33652:4;33634;33639:1;33634:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;33634:23:0;;;-1:-1:-1;;;;;33634:23:0;;;;;33678:15;-1:-1:-1;;;;;33678:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33668:4;33673:1;33668:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;33668:32:0;;;-1:-1:-1;;;;;33668:32:0;;;;;33711:57;33728:4;33743:15;33761:6;33711:8;:57::i;:::-;33917:8;;-1:-1:-1;;;;;33781:15:0;:37;;;;;33833:6;;33854:1;;33898:4;;33917:8;33940:22;:15;33958:4;33940:22;:::i;:::-;33781:192;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33781:192:0;;;;;;;;;;;;:::i;32861:540::-;-1:-1:-1;;;;;32982:16:0;;32958:7;32982:16;;;:8;:16;;;;;;;;;:39;;-1:-1:-1;;;;;;33002:19:0;;;;;;:8;:19;;;;;;;;32982:39;32978:53;;;-1:-1:-1;33030:1:0;33023:8;;32978:53;-1:-1:-1;;;;;33083:17:0;;33042:25;33083:17;;;:9;:17;;;;;;;;:103;;-1:-1:-1;;;;;33122:20:0;;;;;;:9;:20;;;;;;;;:64;;33165:21;33083:103;;33122:64;33145:17;33083:103;;;33103:16;33083:103;33042:144;-1:-1:-1;33217:21:0;33201:12;:37;;;;;;;;:::i;:::-;;33197:51;;33247:1;33240:8;;;;;33197:51;33261:19;33299:16;33283:12;:32;;;;;;;;:::i;:::-;;:51;;33327:7;;33283:51;;;33318:6;;33283:51;33261:73;-1:-1:-1;33377:16:0;33353:20;33261:73;33353:6;:20;:::i;:::-;33352:41;;;;:::i;:::-;33345:48;32861:540;-1:-1:-1;;;;;;32861:540:0:o;21136:671::-;-1:-1:-1;;;;;21267:18:0;;21259:68;;;;-1:-1:-1;;;21259:68:0;;12131:2:1;21259:68:0;;;12113:21:1;12170:2;12150:18;;;12143:30;12209:34;12189:18;;;12182:62;-1:-1:-1;;;12260:18:1;;;12253:35;12305:19;;21259:68:0;11929:401:1;21259:68:0;-1:-1:-1;;;;;21346:16:0;;21338:64;;;;-1:-1:-1;;;21338:64:0;;12537:2:1;21338:64:0;;;12519:21:1;12576:2;12556:18;;;12549:30;12615:34;12595:18;;;12588:62;-1:-1:-1;;;12666:18:1;;;12659:33;12709:19;;21338:64:0;12335:399:1;21338:64:0;-1:-1:-1;;;;;21488:15:0;;21466:19;21488:15;;;;;;;;;;;21522:21;;;;21514:72;;;;-1:-1:-1;;;21514:72:0;;12941:2:1;21514:72:0;;;12923:21:1;12980:2;12960:18;;;12953:30;13019:34;12999:18;;;12992:62;-1:-1:-1;;;13070:18:1;;;13063:36;13116:19;;21514:72:0;12739:402:1;21514:72:0;-1:-1:-1;;;;;21622:15:0;;;:9;:15;;;;;;;;;;;21640:20;;;21622:38;;21682:13;;;;;;;;:23;;21654:6;;21622:9;21682:23;;21654:6;;21682:23;:::i;:::-;;;;;;;;21738:2;-1:-1:-1;;;;;21723:26:0;21732:4;-1:-1:-1;;;;;21723:26:0;;21742:6;21723:26;;;;2032:25:1;;2020:2;2005:18;;1886:177;21723:26:0;;;;;;;;21762:37;31516:303;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215:180:1:o;1400:247::-;1459:6;1512:2;1500:9;1491:7;1487:23;1483:32;1480:52;;;1528:1;1525;1518:12;1480:52;1567:9;1554:23;1586:31;1611:5;1586:31;:::i;2068:456::-;2145:6;2153;2161;2214:2;2202:9;2193:7;2189:23;2185:32;2182:52;;;2230:1;2227;2220:12;2182:52;2269:9;2256:23;2288:31;2313:5;2288:31;:::i;:::-;2338:5;-1:-1:-1;2395:2:1;2380:18;;2367:32;2408:33;2367:32;2408:33;:::i;:::-;2068:456;;2460:7;;-1:-1:-1;;;2514:2:1;2499:18;;;;2486:32;;2068:456::o;2926:416::-;2991:6;2999;3052:2;3040:9;3031:7;3027:23;3023:32;3020:52;;;3068:1;3065;3058:12;3020:52;3107:9;3094:23;3126:31;3151:5;3126:31;:::i;:::-;3176:5;-1:-1:-1;3233:2:1;3218:18;;3205:32;3275:15;;3268:23;3256:36;;3246:64;;3306:1;3303;3296:12;3246:64;3329:7;3319:17;;;2926:416;;;;;:::o;3347:388::-;3415:6;3423;3476:2;3464:9;3455:7;3451:23;3447:32;3444:52;;;3492:1;3489;3482:12;3444:52;3531:9;3518:23;3550:31;3575:5;3550:31;:::i;:::-;3600:5;-1:-1:-1;3657:2:1;3642:18;;3629:32;3670:33;3629:32;3670:33;:::i;3740:380::-;3819:1;3815:12;;;;3862;;;3883:61;;3937:4;3929:6;3925:17;3915:27;;3883:61;3990:2;3982:6;3979:14;3959:18;3956:38;3953:161;;4036:10;4031:3;4027:20;4024:1;4017:31;4071:4;4068:1;4061:15;4099:4;4096:1;4089:15;3953:161;;3740:380;;;:::o;4470:127::-;4531:10;4526:3;4522:20;4519:1;4512:31;4562:4;4559:1;4552:15;4586:4;4583:1;4576:15;4602:487;4807:2;4792:18;;4840:1;4829:13;;4819:144;;4885:10;4880:3;4876:20;4873:1;4866:31;4920:4;4917:1;4910:15;4948:4;4945:1;4938:15;4819:144;4972:25;;;5028:2;5013:18;;5006:34;;;;5071:2;5056:18;;;5049:34;4602:487;:::o;5094:127::-;5155:10;5150:3;5146:20;5143:1;5136:31;5186:4;5183:1;5176:15;5210:4;5207:1;5200:15;5226:125;5291:9;;;5312:10;;;5309:36;;;5325:18;;:::i;5356:407::-;5558:2;5540:21;;;5597:2;5577:18;;;5570:30;5636:34;5631:2;5616:18;;5609:62;-1:-1:-1;;;5702:2:1;5687:18;;5680:41;5753:3;5738:19;;5356:407::o;8786:128::-;8853:9;;;8874:11;;;8871:37;;;8888:18;;:::i;8919:127::-;8980:10;8975:3;8971:20;8968:1;8961:31;9011:4;9008:1;9001:15;9035:4;9032:1;9025:15;9051:127;9112:10;9107:3;9103:20;9100:1;9093:31;9143:4;9140:1;9133:15;9167:4;9164:1;9157:15;9183:251;9253:6;9306:2;9294:9;9285:7;9281:23;9277:32;9274:52;;;9322:1;9319;9312:12;9274:52;9354:9;9348:16;9373:31;9398:5;9373:31;:::i;9439:980::-;9701:4;9749:3;9738:9;9734:19;9780:6;9769:9;9762:25;9806:2;9844:6;9839:2;9828:9;9824:18;9817:34;9887:3;9882:2;9871:9;9867:18;9860:31;9911:6;9946;9940:13;9977:6;9969;9962:22;10015:3;10004:9;10000:19;9993:26;;10054:2;10046:6;10042:15;10028:29;;10075:1;10085:195;10099:6;10096:1;10093:13;10085:195;;;10164:13;;-1:-1:-1;;;;;10160:39:1;10148:52;;10255:15;;;;10220:12;;;;10196:1;10114:9;10085:195;;;-1:-1:-1;;;;;;;10336:32:1;;;;10331:2;10316:18;;10309:60;-1:-1:-1;;;10400:3:1;10385:19;10378:35;10297:3;9439:980;-1:-1:-1;;;9439:980:1:o;10424:1105::-;10519:6;10550:2;10593;10581:9;10572:7;10568:23;10564:32;10561:52;;;10609:1;10606;10599:12;10561:52;10642:9;10636:16;10671:18;10712:2;10704:6;10701:14;10698:34;;;10728:1;10725;10718:12;10698:34;10766:6;10755:9;10751:22;10741:32;;10811:7;10804:4;10800:2;10796:13;10792:27;10782:55;;10833:1;10830;10823:12;10782:55;10862:2;10856:9;10884:2;10880;10877:10;10874:36;;;10890:18;;:::i;:::-;10936:2;10933:1;10929:10;10968:2;10962:9;11031:2;11027:7;11022:2;11018;11014:11;11010:25;11002:6;10998:38;11086:6;11074:10;11071:22;11066:2;11054:10;11051:18;11048:46;11045:72;;;11097:18;;:::i;:::-;11133:2;11126:22;11183:18;;;11217:15;;;;-1:-1:-1;11259:11:1;;;11255:20;;;11287:19;;;11284:39;;;11319:1;11316;11309:12;11284:39;11343:11;;;;11363:135;11379:6;11374:3;11371:15;11363:135;;;11445:10;;11433:23;;11396:12;;;;11476;;;;11363:135;;;11517:6;10424:1105;-1:-1:-1;;;;;;;;10424:1105:1:o;11534:168::-;11607:9;;;11638;;11655:15;;;11649:22;;11635:37;11625:71;;11676:18;;:::i;11707:217::-;11747:1;11773;11763:132;;11817:10;11812:3;11808:20;11805:1;11798:31;11852:4;11849:1;11842:15;11880:4;11877:1;11870:15;11763:132;-1:-1:-1;11909:9:1;;11707:217::o

Swarm Source

ipfs://240c03f5f3d049cf252b281585167ff92f2446775498db604d41524643b40c8d
Loading