ETH Price: $1,876.17 (-12.49%)
 

Overview

Max Total Supply

25,000 CANADA

Holders

4

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ANAL

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma experimental ABIEncoderV2;

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

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

/**
 * @dev 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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(
        address recipient,
        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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

/**
 * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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 {}
}

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

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

interface IWETH {
    function deposit() external payable;

    function withdraw(uint) external;
}

/// @title   BWE
contract ANAL is ERC20, Ownable {
    /// STATE VARIABLES ///

    /// @notice Address of UniswapV2Router
    IUniswapV2Router02 public immutable uniswapV2Router;
    /// @notice Address of QWN/ETH LP
    address public immutable uniswapV2Pair;
    /// @notice Burn address
    address public constant deadAddress = address(0xdead);
    /// @notice WETH address
    address public immutable WETH;
    /// @notice QWN treasury
    address public treasury;
    /// @notice Team wallet address
    address public teamWallet;

    bool private swapping;

    /// @notice Bool if trading is active
    bool public tradingActive = false;
    /// @notice Bool if swap is enabled
    bool public swapEnabled = false;
    /// @notice Bool if limits are in effect
    bool public limitsInEffect = true;

    /// @notice Current max wallet amount (If limits in effect)
    uint256 public maxWallet;
    /// @notice Current max transaction amount (If limits in effect)
    uint256 public maxTransactionAmount;
    /// @notice Current percent of supply to swap tokens at (i.e. 5 = 0.05%)
    uint256 public swapPercent;

    /// @notice Current buy side total fees
    uint256 public buyTotalFees;
    /// @notice Current buy side backing fee
    uint256 public buyBackingFee;
    /// @notice Current buy side liquidity fee
    uint256 public buyLiquidityFee;
    /// @notice Current buy side team fee
    uint256 public buyTeamFee;

    /// @notice Current sell side total fees
    uint256 public sellTotalFees;
    /// @notice Current sell side backing fee
    uint256 public sellBackingFee;
    /// @notice Current sell side liquidity fee
    uint256 public sellLiquidityFee;
    /// @notice Current sell side team fee
    uint256 public sellTeamFee;

    /// @notice Current tokens going for backing
    uint256 public tokensForBacking;
    /// @notice Current tokens going for liquidity
    uint256 public tokensForLiquidity;
    /// @notice Current tokens going for tean
    uint256 public tokensForTeam;

    /// MAPPINGS ///

    /// @dev Bool if address is excluded from fees
    mapping(address => bool) private _isExcludedFromFees;

    /// @notice Bool if address is excluded from max transaction amount
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    /// @notice Bool if address is AMM pair
    mapping(address => bool) public automatedMarketMakerPairs;

    /// EVENTS ///

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event teamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    /// CONSTRUCTOR ///

    constructor() ERC20("We Love Anal", "CANADA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        WETH = _uniswapV2Router.WETH();

        uint256 startingSupply_ = 25000000000000;

        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyBackingFee = 2;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyTeamFee = 2;

        uint256 _sellBackingFee = 2;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellTeamFee = 2;

        maxWallet = 3 * 250 * 1e9; // 3%
        maxTransactionAmount = 3 * 250 * 1e9; // 3%
        swapPercent = 25; // 0.25%

        buyBackingFee = _buyBackingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTeamFee = _buyTeamFee;
        buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee;

        sellBackingFee = _sellBackingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTeamFee = _sellTeamFee;
        sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee;

        teamWallet = owner(); // set as team wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        _mint(msg.sender, startingSupply_);
    }

    receive() external payable {}

    /// AMM PAIR ///

    /// @notice       Sets if address is AMM pair
    /// @param pair   Address of pair
    /// @param value  Bool if AMM pair
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    /// @dev Internal function to set `vlaue` of `pair`
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /// INTERNAL TRANSFER ///

    /// @dev Internal function to burn `amount` from `account`
    function _burnFrom(address account, uint256 amount) internal {
        uint256 decreasedAllowance_ = allowance(account, msg.sender) - amount;

        _approve(account, msg.sender, decreasedAllowance_);
        _burn(account, amount);
    }

    /// @dev Internal function to transfer - handles fee logic
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount();

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForBacking += (fees * sellBackingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForTeam += (fees * buyTeamFee) / buyTotalFees;
                tokensForBacking += (fees * buyBackingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    /// INTERNAL FUNCTION ///

    /// @dev INTERNAL function to swap `tokenAmount` for ETH
    /// @dev Invoked in `swapBack()`
    function swapTokensForEth(uint256 tokenAmount) internal {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    /// @dev INTERNAL function to add `tokenAmount` and `ethAmount` to LP
    /// @dev Invoked in `swapBack()`
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            treasury,
            block.timestamp
        );
    }

    /// @dev INTERNAL function to transfer fees properly
    /// @dev Invoked in `_transfer()`
    function swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForBacking +
            tokensForTeam;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount() * 20) {
            contractBalance = swapTokensAtAmount() * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance - liquidityTokens;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;

        uint256 ethForBacking = (ethBalance * tokensForBacking) /
            totalTokensToSwap -
            (tokensForLiquidity / 2);

        uint256 ethForTeam = (ethBalance * tokensForTeam) /
            totalTokensToSwap -
            (tokensForLiquidity / 2);

        uint256 ethForLiquidity = ethBalance - ethForBacking - ethForTeam;

        tokensForLiquidity = 0;
        tokensForBacking = 0;
        tokensForTeam = 0;

        (success, ) = address(teamWallet).call{value: ethForTeam}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        uint256 _balance = address(this).balance;
        IWETH(WETH).deposit{value: _balance}();
        IERC20(WETH).transfer(treasury, _balance);
    }

    /// VIEW FUNCTION ///

    /// @notice Returns decimals for QWN (9)
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /// @notice Returns if address is excluded from fees
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    /// @notice Returns at what percent of supply to swap tokens at
    function swapTokensAtAmount() public view returns (uint256 amount_) {
        amount_ = (totalSupply() * swapPercent) / 10000;
    }

    /// TREASURY FUNCTION ///

    /// @notice         Mint QWN (Only by treasury)
    /// @param account  Address to mint QWN to
    /// @param amount   Amount to mint
    function mint(address account, uint256 amount) external {
        require(msg.sender == treasury, "msg.sender not treasury");
        _mint(account, amount);
    }

    /// USER FUNCTIONS ///

    /// @notice         Burn QWN
    /// @param account  Address to burn QWN from
    /// @param amount   Amount to QWN to burn
    function burnFrom(address account, uint256 amount) external {
        _burnFrom(account, amount);
    }

    /// @notice         Burn QWN
    /// @param amount   Amount to QWN to burn
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

    /// OWNER FUNCTIONS ///

    /// @notice Set address of treasury
    function setTreasury(address _treasury) external onlyOwner {
        treasury = _treasury;
        excludeFromFees(_treasury, true);
        excludeFromMaxTransaction(_treasury, true);
    }

    /// @notice Enable trading - once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    /// @notice Update percent of supply to swap tokens at
    function updateSwapTokensAtPercent(
        uint256 newPercent
    ) external onlyOwner returns (bool) {
        require(
            newPercent >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(
            newPercent <= 50,
            "Swap amount cannot be higher than 0.50% total supply."
        );
        swapPercent = newPercent;
        return true;
    }

    /// @notice Update swap enabled
    /// @dev    Only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    /// @notice Update buy side fees
    function updateBuyFees(
        uint256 _backingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        buyBackingFee = _backingFee;
        buyLiquidityFee = _liquidityFee;
        buyTeamFee = _teamFee;
        buyTotalFees = buyBackingFee + buyLiquidityFee + buyTeamFee;
        require(buyTotalFees <= 5, "Buy fees must be <= 5.");
    }

    /// @notice Update sell side fees
    function updateSellFees(
        uint256 _backingFee,
        uint256 _liquidityFee,
        uint256 _teamFee
    ) external onlyOwner {
        sellBackingFee = _backingFee;
        sellLiquidityFee = _liquidityFee;
        sellTeamFee = _teamFee;
        sellTotalFees = sellBackingFee + sellLiquidityFee + sellTeamFee;
        require(sellTotalFees <= 5, "Sell fees must be <= 5.");
    }

    /// @notice Set if an address is excluded from fees
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /// @notice Set if an address is excluded from max transaction
    function excludeFromMaxTransaction(
        address updAds,
        bool isEx
    ) public onlyOwner {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    /// @notice Update team wallet
    function updateTeamWallet(address newWallet) external onlyOwner {
        emit teamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
        excludeFromFees(newWallet, true);
        excludeFromMaxTransaction(newWallet, true);
    }

    /// @notice Remove limits in palce
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    /// @notice Withdraw stuck QWN from contract
    function withdrawStuckQWN() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    /// @notice Withdraw stuck token from contract
    function withdrawStuckToken(
        address _token,
        address _to
    ) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    /// @notice Withdraw stuck ETH from contract
    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"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":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBackingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBacking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_backingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercent","type":"uint256"}],"name":"updateSwapTokensAtPercent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckQWN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040526007805462ffffff60a81b1916600160b81b1790553480156200002657600080fd5b506040518060400160405280600c81526020016b15d948131bdd9948105b985b60a21b8152506040518060400160405280600681526020016543414e41444160d01b81525081600390816200007c919062000714565b5060046200008b828262000714565b505050620000a8620000a2620003b860201b60201c565b620003bc565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000100573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001269190620007e0565b6001600160a01b0390811660c052811660808190526040805163c45a015560e01b815290516516bcc41e9000929163c45a01559160048083019260209291908290030181865afa1580156200017f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a59190620007e0565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002199190620007e0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000267573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028d9190620007e0565b6001600160a01b031660a0819052620002a89060016200040e565b64ae9f7bcc0060088190556009556019600a556002600c8190556001600d819055600e8290558180828180620002df838262000812565b620002eb919062000812565b600b55601083905560118290556012819055806200030a838562000812565b62000316919062000812565b600f55600554600780546001600160a01b0319166001600160a01b0390921691821790556200034790600162000462565b6200035430600162000462565b6200036361dead600162000462565b620003826200037a6005546001600160a01b031690565b600162000510565b6200038f30600162000510565b6200039e61dead600162000510565b620003aa338862000586565b50505050505050506200083a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004b15760405162461bcd60e51b815260206004820181905260248201526000805160206200370983398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146200055b5760405162461bcd60e51b81526020600482018190526024820152600080516020620037098339815191526044820152606401620004a8565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216620005de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004a8565b8060026000828254620005f2919062000812565b90915550506001600160a01b038216600090815260208190526040812080548392906200062190849062000812565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200069b57607f821691505b602082108103620006bc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200066b57600081815260208120601f850160051c81016020861015620006eb5750805b601f850160051c820191505b818110156200070c57828155600101620006f7565b505050505050565b81516001600160401b0381111562000730576200073062000670565b620007488162000741845462000686565b84620006c2565b602080601f831160018114620007805760008415620007675750858301515b600019600386901b1c1916600185901b1785556200070c565b600085815260208120601f198616915b82811015620007b15788860151825594840194600190910190840162000790565b5085821015620007d05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007f357600080fd5b81516001600160a01b03811681146200080b57600080fd5b9392505050565b808201808211156200083457634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c051612e67620008a26000396000818161089d0152818161263301526126cb015260008181610563015261116201526000818161042e015281816127a30152818161285c0152818161289801528181612912015261297a0152612e676000f3fe6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a79578063f637434214610a99578063f8b45b0514610aaf578063fde83a3414610ac557600080fd5b8063dd62ed3e146109e8578063e2f4560514610a2e578063f0f4426014610a43578063f11a24d314610a6357600080fd5b8063c17b5b8c116100dc578063c17b5b8c14610986578063c8c8ebe4146109a6578063d729715f146109bc578063d85ba063146109d257600080fd5b8063bc205ad314610930578063be1512f314610950578063c02466681461096657600080fd5b80639c2e4ac61161016f578063ad5c464811610149578063ad5c46481461088b578063b62496f5146108bf578063ba22abc3146108ef578063bbc0c7421461090f57600080fd5b80639c2e4ac614610835578063a457c2d71461084b578063a9059cbb1461086b57600080fd5b80638da5cb5b116101ab5780638da5cb5b146107c2578063924de9b7146107e057806395d89b41146108005780639a7a23d61461081557600080fd5b80637f6bf20a146107775780638095d5641461078d5780638a8c523c146107ad57600080fd5b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a146106f757806379cc6790146107175780637ca8448a146107375780637cb332bb1461075757600080fd5b80636f33037f1461068157806370a0823114610697578063715018a6146106cd578063751039fc146106e257600080fd5b80635992704411610290578063599270441461060a57806361d027b31461062a5780636a486a8e1461064a5780636ddd17131461066057600080fd5b80634ac1126a146105a65780634d1ea104146105bc5780634fbee193146105d157600080fd5b806327c8f8351161032357806340c10f19116102fd57806340c10f191461050f57806342966c681461053157806349bd5a5e146105515780634a62bb651461058557600080fd5b806327c8f835146104bd578063313ce567146104d357806339509351146104ef57600080fd5b80631694505e1161035f5780631694505e1461041c57806318160ddd146104685780631a8145bb1461048757806323b872dd1461049d57600080fd5b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610adb565b6040516103b391906129f2565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612a55565b610b6d565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc610407366004612a81565b60176020526000908152604090205460ff1681565b34801561042857600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103b3565b34801561047457600080fd5b506002545b6040519081526020016103b3565b34801561049357600080fd5b5061047960145481565b3480156104a957600080fd5b506103dc6104b8366004612aa5565b610b84565b3480156104c957600080fd5b5061045061dead81565b3480156104df57600080fd5b50604051600981526020016103b3565b3480156104fb57600080fd5b506103dc61050a366004612a55565b610c33565b34801561051b57600080fd5b5061052f61052a366004612a55565b610c6f565b005b34801561053d57600080fd5b5061052f61054c366004612ae6565b610cd7565b34801561055d57600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b34801561059157600080fd5b506007546103dc90600160b81b900460ff1681565b3480156105b257600080fd5b50610479600a5481565b3480156105c857600080fd5b5061052f610ce4565b3480156105dd57600080fd5b506103dc6105ec366004612a81565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561061657600080fd5b50600754610450906001600160a01b031681565b34801561063657600080fd5b50600654610450906001600160a01b031681565b34801561065657600080fd5b50610479600f5481565b34801561066c57600080fd5b506007546103dc90600160b01b900460ff1681565b34801561068d57600080fd5b5061047960105481565b3480156106a357600080fd5b506104796106b2366004612a81565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061052f610e08565b3480156106ee57600080fd5b506103dc610e3e565b34801561070357600080fd5b5061052f610712366004612b0d565b610e7e565b34801561072357600080fd5b5061052f610732366004612a55565b610ed3565b34801561074357600080fd5b5061052f610752366004612a81565b610edd565b34801561076357600080fd5b5061052f610772366004612a81565b610f67565b34801561078357600080fd5b5061047960135481565b34801561079957600080fd5b5061052f6107a8366004612b46565b610ffd565b3480156107b957600080fd5b5061052f61109e565b3480156107ce57600080fd5b506005546001600160a01b0316610450565b3480156107ec57600080fd5b5061052f6107fb366004612b72565b6110df565b34801561080c57600080fd5b506103a6611127565b34801561082157600080fd5b5061052f610830366004612b0d565b611136565b34801561084157600080fd5b50610479600e5481565b34801561085757600080fd5b506103dc610866366004612a55565b611211565b34801561087757600080fd5b506103dc610886366004612a55565b6112aa565b34801561089757600080fd5b506104507f000000000000000000000000000000000000000000000000000000000000000081565b3480156108cb57600080fd5b506103dc6108da366004612a81565b60186020526000908152604090205460ff1681565b3480156108fb57600080fd5b506103dc61090a366004612ae6565b6112b7565b34801561091b57600080fd5b506007546103dc90600160a81b900460ff1681565b34801561093c57600080fd5b5061052f61094b366004612b8f565b6113ca565b34801561095c57600080fd5b50610479600c5481565b34801561097257600080fd5b5061052f610981366004612b0d565b611532565b34801561099257600080fd5b5061052f6109a1366004612b46565b6115bb565b3480156109b257600080fd5b5061047960095481565b3480156109c857600080fd5b5061047960125481565b3480156109de57600080fd5b50610479600b5481565b3480156109f457600080fd5b50610479610a03366004612b8f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3a57600080fd5b5061047961165e565b348015610a4f57600080fd5b5061052f610a5e366004612a81565b611688565b348015610a6f57600080fd5b50610479600d5481565b348015610a8557600080fd5b5061052f610a94366004612a81565b6116d8565b348015610aa557600080fd5b5061047960115481565b348015610abb57600080fd5b5061047960085481565b348015610ad157600080fd5b5061047960155481565b606060038054610aea90612bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690612bbd565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a338484611770565b5060015b92915050565b6000610b91848484611894565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c1b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c288533858403611770565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610c6a908690612c0d565b611770565b6006546001600160a01b03163314610cc95760405162461bcd60e51b815260206004820152601760248201527f6d73672e73656e646572206e6f742074726561737572790000000000000000006044820152606401610c12565b610cd38282611faa565b5050565b610ce13382612089565b50565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610c1290612c20565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d709190612c55565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612c6e565b5060405133904780156108fc02916000818181858888f19350505050158015610cd3573d6000803e3d6000fd5b6005546001600160a01b03163314610e325760405162461bcd60e51b8152600401610c1290612c20565b610e3c60006121d7565b565b6005546000906001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610c1290612c20565b506007805460ff60b81b19169055600190565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b610cd38282612229565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610c1290612c20565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f54576040519150601f19603f3d011682016040523d82523d6000602084013e610f59565b606091505b5050905080610cd357600080fd5b6005546001600160a01b03163314610f915760405162461bcd60e51b8152600401610c1290612c20565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b610ce1816001610e7e565b6005546001600160a01b031633146110275760405162461bcd60e51b8152600401610c1290612c20565b600c839055600d829055600e819055806110418385612c0d565b61104b9190612c0d565b600b819055600510156110995760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c12565b505050565b6005546001600160a01b031633146110c85760405162461bcd60e51b8152600401610c1290612c20565b6007805461ffff60a81b191661010160a81b179055565b6005546001600160a01b031633146111095760405162461bcd60e51b8152600401610c1290612c20565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610aea90612bbd565b6005546001600160a01b031633146111605760405162461bcd60e51b8152600401610c1290612c20565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112075760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c12565b610cd3828261226f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c12565b6112a03385858403611770565b5060019392505050565b6000610b7a338484611894565b6005546000906001600160a01b031633146112e45760405162461bcd60e51b8152600401610c1290612c20565b60018210156113525760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610c12565b60328211156113c15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610c12565b50600a55600190565b6005546001600160a01b031633146113f45760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03821661144a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c12565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b59190612c55565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c9190612c6e565b50505050565b6005546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115e55760405162461bcd60e51b8152600401610c1290612c20565b601083905560118290556012819055806115ff8385612c0d565b6116099190612c0d565b600f819055600510156110995760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c12565b6000612710600a5461166f60025490565b6116799190612c8b565b6116839190612ca2565b905090565b6005546001600160a01b031633146116b25760405162461bcd60e51b8152600401610c1290612c20565b600680546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b6005546001600160a01b031633146117025760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b0381166117675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610ce1816121d7565b6001600160a01b0383166117d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c12565b6001600160a01b0382166118335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c12565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118ba5760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b0382166118e05760405162461bcd60e51b8152600401610c1290612d09565b806000036118f457611099838360006122c3565b600754600160b81b900460ff1615611c73576005546001600160a01b0384811691161480159061193257506005546001600160a01b03838116911614155b801561194657506001600160a01b03821615155b801561195d57506001600160a01b03821661dead14155b80156119735750600754600160a01b900460ff16155b15611c7357600754600160a81b900460ff16611a0d576001600160a01b03831660009081526016602052604090205460ff16806119c857506001600160a01b03821660009081526016602052604090205460ff165b611a0d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c12565b6001600160a01b03831660009081526018602052604090205460ff168015611a4e57506001600160a01b03821660009081526017602052604090205460ff16155b15611b3257600954811115611ac35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c12565b6008546001600160a01b038316600090815260208190526040902054611ae99083612c0d565b1115611b2d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b611c73565b6001600160a01b03821660009081526018602052604090205460ff168015611b7357506001600160a01b03831660009081526017602052604090205460ff16155b15611be957600954811115611b2d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c12565b6001600160a01b03821660009081526017602052604090205460ff16611c73576008546001600160a01b038316600090815260208190526040902054611c2f9083612c0d565b1115611c735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b3060009081526020819052604081205490611c8c61165e565b8210159050808015611ca75750600754600160b01b900460ff165b8015611cbd5750600754600160a01b900460ff16155b8015611ce257506001600160a01b03851660009081526018602052604090205460ff16155b8015611d0757506001600160a01b03851660009081526016602052604090205460ff16155b8015611d2c57506001600160a01b03841660009081526016602052604090205460ff16155b15611d5a576007805460ff60a01b1916600160a01b179055611d4c612417565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611da857506001600160a01b03851660009081526016602052604090205460ff165b15611db1575060005b60008115611f96576001600160a01b03861660009081526018602052604090205460ff168015611de357506000600f54115b15611e9b576064600f5486611df89190612c8b565b611e029190612ca2565b9050600f5460115482611e159190612c8b565b611e1f9190612ca2565b60146000828254611e309190612c0d565b9091555050600f54601254611e459083612c8b565b611e4f9190612ca2565b60156000828254611e609190612c0d565b9091555050600f54601054611e759083612c8b565b611e7f9190612ca2565b60136000828254611e909190612c0d565b90915550611f789050565b6001600160a01b03871660009081526018602052604090205460ff168015611ec557506000600b54115b15611f78576064600b5486611eda9190612c8b565b611ee49190612ca2565b9050600b54600d5482611ef79190612c8b565b611f019190612ca2565b60146000828254611f129190612c0d565b9091555050600b54600e54611f279083612c8b565b611f319190612ca2565b60156000828254611f429190612c0d565b9091555050600b54600c54611f579083612c8b565b611f619190612ca2565b60136000828254611f729190612c0d565b90915550505b8015611f8957611f898730836122c3565b611f938186612d4c565b94505b611fa18787876122c3565b50505050505050565b6001600160a01b0382166120005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c12565b80600260008282546120129190612c0d565b90915550506001600160a01b0382166000908152602081905260408120805483929061203f908490612c0d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166120e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c12565b6001600160a01b0382166000908152602081905260409020548181101561215d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c12565b6001600160a01b038316600090815260208190526040812083830390556002805484929061218c908490612d4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600160209081526040808320338452909152812054612258908390612d4c565b9050612265833383611770565b6110998383612089565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122e95760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b03821661230f5760405162461bcd60e51b8152600401610c1290612d09565b6001600160a01b038316600090815260208190526040902054818110156123875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c12565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123be908490612c0d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161240a91815260200190565b60405180910390a361152c565b306000908152602081905260408120549050600060155460135460145461243e9190612c0d565b6124489190612c0d565b90506000821580612457575081155b1561246157505050565b61246961165e565b612474906014612c8b565b8311156124915761248361165e565b61248e906014612c8b565b92505b6000600283601454866124a49190612c8b565b6124ae9190612ca2565b6124b89190612ca2565b905060006124c68286612d4c565b9050476124d28261274c565b60006124de8247612d4c565b9050600060026014546124f19190612ca2565b87601354846125009190612c8b565b61250a9190612ca2565b6125149190612d4c565b9050600060026014546125279190612ca2565b88601554856125369190612c8b565b6125409190612ca2565b61254a9190612d4c565b90506000816125598486612d4c565b6125639190612d4c565b60006014819055601381905560158190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b509098505086158015906125d95750600081115b1561262c576125e8878261290c565b601454604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561268c57600080fd5b505af11580156126a0573d6000803e3d6000fd5b505060065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690527f0000000000000000000000000000000000000000000000000000000000000000909116935063a9059cbb925060440190506020604051808303816000875af115801561271a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273e9190612c6e565b505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061278157612781612d5f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128239190612d75565b8160018151811061283657612836612d5f565b60200260200101906001600160a01b031690816001600160a01b031681525050612881307f000000000000000000000000000000000000000000000000000000000000000084611770565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906128d6908590600090869030904290600401612d92565b600060405180830381600087803b1580156128f057600080fd5b505af1158015612904573d6000803e3d6000fd5b505050505050565b612937307f000000000000000000000000000000000000000000000000000000000000000084611770565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156129c6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129eb9190612e03565b5050505050565b600060208083528351808285015260005b81811015612a1f57858101830151858201604001528201612a03565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce157600080fd5b60008060408385031215612a6857600080fd5b8235612a7381612a40565b946020939093013593505050565b600060208284031215612a9357600080fd5b8135612a9e81612a40565b9392505050565b600080600060608486031215612aba57600080fd5b8335612ac581612a40565b92506020840135612ad581612a40565b929592945050506040919091013590565b600060208284031215612af857600080fd5b5035919050565b8015158114610ce157600080fd5b60008060408385031215612b2057600080fd5b8235612b2b81612a40565b91506020830135612b3b81612aff565b809150509250929050565b600080600060608486031215612b5b57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b8457600080fd5b8135612a9e81612aff565b60008060408385031215612ba257600080fd5b8235612bad81612a40565b91506020830135612b3b81612a40565b600181811c90821680612bd157607f821691505b602082108103612bf157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7e57610b7e612bf7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612c6757600080fd5b5051919050565b600060208284031215612c8057600080fd5b8151612a9e81612aff565b8082028115828204841417610b7e57610b7e612bf7565b600082612cbf57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7e57610b7e612bf7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d8757600080fd5b8151612a9e81612a40565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612de25784516001600160a01b031683529383019391830191600101612dbd565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e1857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205f153b03e8c7019b4eeb45ead38a3a5d8a65f24a8efcae92fec1400e4da3f41b64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103855760003560e01c80637f6bf20a116101d1578063bc205ad311610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610a79578063f637434214610a99578063f8b45b0514610aaf578063fde83a3414610ac557600080fd5b8063dd62ed3e146109e8578063e2f4560514610a2e578063f0f4426014610a43578063f11a24d314610a6357600080fd5b8063c17b5b8c116100dc578063c17b5b8c14610986578063c8c8ebe4146109a6578063d729715f146109bc578063d85ba063146109d257600080fd5b8063bc205ad314610930578063be1512f314610950578063c02466681461096657600080fd5b80639c2e4ac61161016f578063ad5c464811610149578063ad5c46481461088b578063b62496f5146108bf578063ba22abc3146108ef578063bbc0c7421461090f57600080fd5b80639c2e4ac614610835578063a457c2d71461084b578063a9059cbb1461086b57600080fd5b80638da5cb5b116101ab5780638da5cb5b146107c2578063924de9b7146107e057806395d89b41146108005780639a7a23d61461081557600080fd5b80637f6bf20a146107775780638095d5641461078d5780638a8c523c146107ad57600080fd5b80634ac1126a116102b65780636f33037f116102545780637571336a116102235780637571336a146106f757806379cc6790146107175780637ca8448a146107375780637cb332bb1461075757600080fd5b80636f33037f1461068157806370a0823114610697578063715018a6146106cd578063751039fc146106e257600080fd5b80635992704411610290578063599270441461060a57806361d027b31461062a5780636a486a8e1461064a5780636ddd17131461066057600080fd5b80634ac1126a146105a65780634d1ea104146105bc5780634fbee193146105d157600080fd5b806327c8f8351161032357806340c10f19116102fd57806340c10f191461050f57806342966c681461053157806349bd5a5e146105515780634a62bb651461058557600080fd5b806327c8f835146104bd578063313ce567146104d357806339509351146104ef57600080fd5b80631694505e1161035f5780631694505e1461041c57806318160ddd146104685780631a8145bb1461048757806323b872dd1461049d57600080fd5b806306fdde0314610391578063095ea7b3146103bc57806310d5de53146103ec57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103a6610adb565b6040516103b391906129f2565b60405180910390f35b3480156103c857600080fd5b506103dc6103d7366004612a55565b610b6d565b60405190151581526020016103b3565b3480156103f857600080fd5b506103dc610407366004612a81565b60176020526000908152604090205460ff1681565b34801561042857600080fd5b506104507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103b3565b34801561047457600080fd5b506002545b6040519081526020016103b3565b34801561049357600080fd5b5061047960145481565b3480156104a957600080fd5b506103dc6104b8366004612aa5565b610b84565b3480156104c957600080fd5b5061045061dead81565b3480156104df57600080fd5b50604051600981526020016103b3565b3480156104fb57600080fd5b506103dc61050a366004612a55565b610c33565b34801561051b57600080fd5b5061052f61052a366004612a55565b610c6f565b005b34801561053d57600080fd5b5061052f61054c366004612ae6565b610cd7565b34801561055d57600080fd5b506104507f0000000000000000000000001a1a05a3c532a675997dfb7e2483b746776be06081565b34801561059157600080fd5b506007546103dc90600160b81b900460ff1681565b3480156105b257600080fd5b50610479600a5481565b3480156105c857600080fd5b5061052f610ce4565b3480156105dd57600080fd5b506103dc6105ec366004612a81565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561061657600080fd5b50600754610450906001600160a01b031681565b34801561063657600080fd5b50600654610450906001600160a01b031681565b34801561065657600080fd5b50610479600f5481565b34801561066c57600080fd5b506007546103dc90600160b01b900460ff1681565b34801561068d57600080fd5b5061047960105481565b3480156106a357600080fd5b506104796106b2366004612a81565b6001600160a01b031660009081526020819052604090205490565b3480156106d957600080fd5b5061052f610e08565b3480156106ee57600080fd5b506103dc610e3e565b34801561070357600080fd5b5061052f610712366004612b0d565b610e7e565b34801561072357600080fd5b5061052f610732366004612a55565b610ed3565b34801561074357600080fd5b5061052f610752366004612a81565b610edd565b34801561076357600080fd5b5061052f610772366004612a81565b610f67565b34801561078357600080fd5b5061047960135481565b34801561079957600080fd5b5061052f6107a8366004612b46565b610ffd565b3480156107b957600080fd5b5061052f61109e565b3480156107ce57600080fd5b506005546001600160a01b0316610450565b3480156107ec57600080fd5b5061052f6107fb366004612b72565b6110df565b34801561080c57600080fd5b506103a6611127565b34801561082157600080fd5b5061052f610830366004612b0d565b611136565b34801561084157600080fd5b50610479600e5481565b34801561085757600080fd5b506103dc610866366004612a55565b611211565b34801561087757600080fd5b506103dc610886366004612a55565b6112aa565b34801561089757600080fd5b506104507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156108cb57600080fd5b506103dc6108da366004612a81565b60186020526000908152604090205460ff1681565b3480156108fb57600080fd5b506103dc61090a366004612ae6565b6112b7565b34801561091b57600080fd5b506007546103dc90600160a81b900460ff1681565b34801561093c57600080fd5b5061052f61094b366004612b8f565b6113ca565b34801561095c57600080fd5b50610479600c5481565b34801561097257600080fd5b5061052f610981366004612b0d565b611532565b34801561099257600080fd5b5061052f6109a1366004612b46565b6115bb565b3480156109b257600080fd5b5061047960095481565b3480156109c857600080fd5b5061047960125481565b3480156109de57600080fd5b50610479600b5481565b3480156109f457600080fd5b50610479610a03366004612b8f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a3a57600080fd5b5061047961165e565b348015610a4f57600080fd5b5061052f610a5e366004612a81565b611688565b348015610a6f57600080fd5b50610479600d5481565b348015610a8557600080fd5b5061052f610a94366004612a81565b6116d8565b348015610aa557600080fd5b5061047960115481565b348015610abb57600080fd5b5061047960085481565b348015610ad157600080fd5b5061047960155481565b606060038054610aea90612bbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1690612bbd565b8015610b635780601f10610b3857610100808354040283529160200191610b63565b820191906000526020600020905b815481529060010190602001808311610b4657829003601f168201915b5050505050905090565b6000610b7a338484611770565b5060015b92915050565b6000610b91848484611894565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c1b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610c288533858403611770565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b7a918590610c6a908690612c0d565b611770565b6006546001600160a01b03163314610cc95760405162461bcd60e51b815260206004820152601760248201527f6d73672e73656e646572206e6f742074726561737572790000000000000000006044820152606401610c12565b610cd38282611faa565b5050565b610ce13382612089565b50565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b8152600401610c1290612c20565b6040516370a0823160e01b815230600482018190526000916370a0823190602401602060405180830381865afa158015610d4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d709190612c55565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af1158015610db7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddb9190612c6e565b5060405133904780156108fc02916000818181858888f19350505050158015610cd3573d6000803e3d6000fd5b6005546001600160a01b03163314610e325760405162461bcd60e51b8152600401610c1290612c20565b610e3c60006121d7565b565b6005546000906001600160a01b03163314610e6b5760405162461bcd60e51b8152600401610c1290612c20565b506007805460ff60b81b19169055600190565b6005546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b610cd38282612229565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610c1290612c20565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610f54576040519150601f19603f3d011682016040523d82523d6000602084013e610f59565b606091505b5050905080610cd357600080fd5b6005546001600160a01b03163314610f915760405162461bcd60e51b8152600401610c1290612c20565b6007546040516001600160a01b03918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b610ce1816001610e7e565b6005546001600160a01b031633146110275760405162461bcd60e51b8152600401610c1290612c20565b600c839055600d829055600e819055806110418385612c0d565b61104b9190612c0d565b600b819055600510156110995760405162461bcd60e51b8152602060048201526016602482015275213abc903332b2b99036bab9ba103132901e1e901a9760511b6044820152606401610c12565b505050565b6005546001600160a01b031633146110c85760405162461bcd60e51b8152600401610c1290612c20565b6007805461ffff60a81b191661010160a81b179055565b6005546001600160a01b031633146111095760405162461bcd60e51b8152600401610c1290612c20565b60078054911515600160b01b0260ff60b01b19909216919091179055565b606060048054610aea90612bbd565b6005546001600160a01b031633146111605760405162461bcd60e51b8152600401610c1290612c20565b7f0000000000000000000000001a1a05a3c532a675997dfb7e2483b746776be0606001600160a01b0316826001600160a01b0316036112075760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c12565b610cd3828261226f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c12565b6112a03385858403611770565b5060019392505050565b6000610b7a338484611894565b6005546000906001600160a01b031633146112e45760405162461bcd60e51b8152600401610c1290612c20565b60018210156113525760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610c12565b60328211156113c15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610c12565b50600a55600190565b6005546001600160a01b031633146113f45760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b03821661144a5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610c12565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa158015611491573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b59190612c55565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af1158015611508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061152c9190612c6e565b50505050565b6005546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115e55760405162461bcd60e51b8152600401610c1290612c20565b601083905560118290556012819055806115ff8385612c0d565b6116099190612c0d565b600f819055600510156110995760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610c12565b6000612710600a5461166f60025490565b6116799190612c8b565b6116839190612ca2565b905090565b6005546001600160a01b031633146116b25760405162461bcd60e51b8152600401610c1290612c20565b600680546001600160a01b0319166001600160a01b038316179055610ff2816001611532565b6005546001600160a01b031633146117025760405162461bcd60e51b8152600401610c1290612c20565b6001600160a01b0381166117675760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610ce1816121d7565b6001600160a01b0383166117d25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c12565b6001600160a01b0382166118335760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c12565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118ba5760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b0382166118e05760405162461bcd60e51b8152600401610c1290612d09565b806000036118f457611099838360006122c3565b600754600160b81b900460ff1615611c73576005546001600160a01b0384811691161480159061193257506005546001600160a01b03838116911614155b801561194657506001600160a01b03821615155b801561195d57506001600160a01b03821661dead14155b80156119735750600754600160a01b900460ff16155b15611c7357600754600160a81b900460ff16611a0d576001600160a01b03831660009081526016602052604090205460ff16806119c857506001600160a01b03821660009081526016602052604090205460ff165b611a0d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c12565b6001600160a01b03831660009081526018602052604090205460ff168015611a4e57506001600160a01b03821660009081526017602052604090205460ff16155b15611b3257600954811115611ac35760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610c12565b6008546001600160a01b038316600090815260208190526040902054611ae99083612c0d565b1115611b2d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b611c73565b6001600160a01b03821660009081526018602052604090205460ff168015611b7357506001600160a01b03831660009081526017602052604090205460ff16155b15611be957600954811115611b2d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610c12565b6001600160a01b03821660009081526017602052604090205460ff16611c73576008546001600160a01b038316600090815260208190526040902054611c2f9083612c0d565b1115611c735760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c12565b3060009081526020819052604081205490611c8c61165e565b8210159050808015611ca75750600754600160b01b900460ff165b8015611cbd5750600754600160a01b900460ff16155b8015611ce257506001600160a01b03851660009081526018602052604090205460ff16155b8015611d0757506001600160a01b03851660009081526016602052604090205460ff16155b8015611d2c57506001600160a01b03841660009081526016602052604090205460ff16155b15611d5a576007805460ff60a01b1916600160a01b179055611d4c612417565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611da857506001600160a01b03851660009081526016602052604090205460ff165b15611db1575060005b60008115611f96576001600160a01b03861660009081526018602052604090205460ff168015611de357506000600f54115b15611e9b576064600f5486611df89190612c8b565b611e029190612ca2565b9050600f5460115482611e159190612c8b565b611e1f9190612ca2565b60146000828254611e309190612c0d565b9091555050600f54601254611e459083612c8b565b611e4f9190612ca2565b60156000828254611e609190612c0d565b9091555050600f54601054611e759083612c8b565b611e7f9190612ca2565b60136000828254611e909190612c0d565b90915550611f789050565b6001600160a01b03871660009081526018602052604090205460ff168015611ec557506000600b54115b15611f78576064600b5486611eda9190612c8b565b611ee49190612ca2565b9050600b54600d5482611ef79190612c8b565b611f019190612ca2565b60146000828254611f129190612c0d565b9091555050600b54600e54611f279083612c8b565b611f319190612ca2565b60156000828254611f429190612c0d565b9091555050600b54600c54611f579083612c8b565b611f619190612ca2565b60136000828254611f729190612c0d565b90915550505b8015611f8957611f898730836122c3565b611f938186612d4c565b94505b611fa18787876122c3565b50505050505050565b6001600160a01b0382166120005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610c12565b80600260008282546120129190612c0d565b90915550506001600160a01b0382166000908152602081905260408120805483929061203f908490612c0d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0382166120e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610c12565b6001600160a01b0382166000908152602081905260409020548181101561215d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610c12565b6001600160a01b038316600090815260208190526040812083830390556002805484929061218c908490612d4c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000908152600160209081526040808320338452909152812054612258908390612d4c565b9050612265833383611770565b6110998383612089565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166122e95760405162461bcd60e51b8152600401610c1290612cc4565b6001600160a01b03821661230f5760405162461bcd60e51b8152600401610c1290612d09565b6001600160a01b038316600090815260208190526040902054818110156123875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c12565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906123be908490612c0d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161240a91815260200190565b60405180910390a361152c565b306000908152602081905260408120549050600060155460135460145461243e9190612c0d565b6124489190612c0d565b90506000821580612457575081155b1561246157505050565b61246961165e565b612474906014612c8b565b8311156124915761248361165e565b61248e906014612c8b565b92505b6000600283601454866124a49190612c8b565b6124ae9190612ca2565b6124b89190612ca2565b905060006124c68286612d4c565b9050476124d28261274c565b60006124de8247612d4c565b9050600060026014546124f19190612ca2565b87601354846125009190612c8b565b61250a9190612ca2565b6125149190612d4c565b9050600060026014546125279190612ca2565b88601554856125369190612c8b565b6125409190612ca2565b61254a9190612d4c565b90506000816125598486612d4c565b6125639190612d4c565b60006014819055601381905560158190556007546040519293506001600160a01b031691849181818185875af1925050503d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b509098505086158015906125d95750600081115b1561262c576125e8878261290c565b601454604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60004790507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561268c57600080fd5b505af11580156126a0573d6000803e3d6000fd5b505060065460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018690527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2909116935063a9059cbb925060440190506020604051808303816000875af115801561271a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061273e9190612c6e565b505050505050505050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061278157612781612d5f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128239190612d75565b8160018151811061283657612836612d5f565b60200260200101906001600160a01b031690816001600160a01b031681525050612881307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611770565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906128d6908590600090869030904290600401612d92565b600060405180830381600087803b1580156128f057600080fd5b505af1158015612904573d6000803e3d6000fd5b505050505050565b612937307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611770565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156129c6573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129eb9190612e03565b5050505050565b600060208083528351808285015260005b81811015612a1f57858101830151858201604001528201612a03565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ce157600080fd5b60008060408385031215612a6857600080fd5b8235612a7381612a40565b946020939093013593505050565b600060208284031215612a9357600080fd5b8135612a9e81612a40565b9392505050565b600080600060608486031215612aba57600080fd5b8335612ac581612a40565b92506020840135612ad581612a40565b929592945050506040919091013590565b600060208284031215612af857600080fd5b5035919050565b8015158114610ce157600080fd5b60008060408385031215612b2057600080fd5b8235612b2b81612a40565b91506020830135612b3b81612aff565b809150509250929050565b600080600060608486031215612b5b57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b8457600080fd5b8135612a9e81612aff565b60008060408385031215612ba257600080fd5b8235612bad81612a40565b91506020830135612b3b81612a40565b600181811c90821680612bd157607f821691505b602082108103612bf157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610b7e57610b7e612bf7565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215612c6757600080fd5b5051919050565b600060208284031215612c8057600080fd5b8151612a9e81612aff565b8082028115828204841417610b7e57610b7e612bf7565b600082612cbf57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b7e57610b7e612bf7565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612d8757600080fd5b8151612a9e81612a40565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612de25784516001600160a01b031683529383019391830191600101612dbd565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e1857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205f153b03e8c7019b4eeb45ead38a3a5d8a65f24a8efcae92fec1400e4da3f41b64736f6c63430008130033

Deployed Bytecode Sourcemap

24630:18453:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9048:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11281:194;;;;;;;;;;-1:-1:-1;11281:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11281:194:0;1023:187:1;26900:63:0;;;;;;;;;;-1:-1:-1;26900:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24744:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;24744:51:0;1467:230:1;10168:108:0;;;;;;;;;;-1:-1:-1;10256:12:0;;10168:108;;;1848:25:1;;;1836:2;1821:18;10168:108:0;1702:177:1;26566:33:0;;;;;;;;;;;;;;;;11957:529;;;;;;;;;;-1:-1:-1;11957:529:0;;;;;:::i;:::-;;:::i;24916:53::-;;;;;;;;;;;;24962:6;24916:53;;37826:92;;;;;;;;;;-1:-1:-1;37826:92:0;;37909:1;2695:36:1;;2683:2;2668:18;37826:92:0;2553:184:1;12895:290:0;;;;;;;;;;-1:-1:-1;12895:290:0;;;;;:::i;:::-;;:::i;38503:166::-;;;;;;;;;;-1:-1:-1;38503:166:0;;;;;:::i;:::-;;:::i;:::-;;39032:83;;;;;;;;;;-1:-1:-1;39032:83:0;;;;;:::i;:::-;;:::i;24841:38::-;;;;;;;;;;;;;;;25411:33;;;;;;;;;;-1:-1:-1;25411:33:0;;;;-1:-1:-1;;;25411:33:0;;;;;;25739:26;;;;;;;;;;;;;;;;42224:254;;;;;;;;;;;;;:::i;37984:126::-;;;;;;;;;;-1:-1:-1;37984:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38074:28:0;38050:4;38074:28;;;:19;:28;;;;;;;;;37984:126;25139:25;;;;;;;;;;-1:-1:-1;25139:25:0;;;;-1:-1:-1;;;;;25139:25:0;;;25072:23;;;;;;;;;;-1:-1:-1;25072:23:0;;;;-1:-1:-1;;;;;25072:23:0;;;26142:28;;;;;;;;;;;;;;;;25327:31;;;;;;;;;;-1:-1:-1;25327:31:0;;;;-1:-1:-1;;;25327:31:0;;;;;;26224:29;;;;;;;;;;;;;;;;10339:143;;;;;;;;;;-1:-1:-1;10339:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;10456:18:0;10429:7;10456:18;;;;;;;;;;;;10339:143;2444:103;;;;;;;;;;;;;:::i;42045:121::-;;;;;;;;;;;;;:::i;41527:169::-;;;;;;;;;;-1:-1:-1;41527:169:0;;;;;:::i;:::-;;:::i;38838:105::-;;;;;;;;;;-1:-1:-1;38838:105:0;;;;;:::i;:::-;;:::i;42909:171::-;;;;;;;;;;-1:-1:-1;42909:171:0;;;;;:::i;:::-;;:::i;41740:257::-;;;;;;;;;;-1:-1:-1;41740:257:0;;;;;:::i;:::-;;:::i;26476:31::-;;;;;;;;;;;;;;;;40365:391;;;;;;;;;;-1:-1:-1;40365:391:0;;;;;:::i;:::-;;:::i;39469:112::-;;;;;;;;;;;;;:::i;1793:87::-;;;;;;;;;;-1:-1:-1;1866:6:0;;-1:-1:-1;;;;;1866:6:0;1793:87;;40219:100;;;;;;;;;;-1:-1:-1;40219:100:0;;;;;:::i;:::-;;:::i;9267:104::-;;;;;;;;;;;;;:::i;29508:306::-;;;;;;;;;;-1:-1:-1;29508:306:0;;;;;:::i;:::-;;:::i;26062:25::-;;;;;;;;;;;;;;;;13688:475;;;;;;;;;;-1:-1:-1;13688:475:0;;;;;:::i;:::-;;:::i;10695:200::-;;;;;;;;;;-1:-1:-1;10695:200:0;;;;;:::i;:::-;;:::i;25006:29::-;;;;;;;;;;;;;;;27017:57;;;;;;;;;;-1:-1:-1;27017:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;39649:428;;;;;;;;;;-1:-1:-1;39649:428:0;;;;;:::i;:::-;;:::i;25246:33::-;;;;;;;;;;-1:-1:-1;25246:33:0;;;;-1:-1:-1;;;25246:33:0;;;;;;42538:313;;;;;;;;;;-1:-1:-1;42538:313:0;;;;;:::i;:::-;;:::i;25899:28::-;;;;;;;;;;;;;;;;41269:182;;;;;;;;;;-1:-1:-1;41269:182:0;;;;;:::i;:::-;;:::i;40803:401::-;;;;;;;;;;-1:-1:-1;40803:401:0;;;;;:::i;:::-;;:::i;25619:35::-;;;;;;;;;;;;;;;;26391:26;;;;;;;;;;;;;;;;25819:27;;;;;;;;;;;;;;;;10958:176;;;;;;;;;;-1:-1:-1;10958:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;11099:18:0;;;11072:7;11099:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10958:176;38187:134;;;;;;;;;;;;;:::i;39195:194::-;;;;;;;;;;-1:-1:-1;39195:194:0;;;;;:::i;:::-;;:::i;25982:30::-;;;;;;;;;;;;;;;;2702:238;;;;;;;;;;-1:-1:-1;2702:238:0;;;;;:::i;:::-;;:::i;26309:31::-;;;;;;;;;;;;;;;;25518:24;;;;;;;;;;;;;;;;26653:28;;;;;;;;;;;;;;;;9048:100;9102:13;9135:5;9128:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9048:100;:::o;11281:194::-;11389:4;11406:39;715:10;11429:7;11438:6;11406:8;:39::i;:::-;-1:-1:-1;11463:4:0;11281:194;;;;;:::o;11957:529::-;12097:4;12114:36;12124:6;12132:9;12143:6;12114:9;:36::i;:::-;-1:-1:-1;;;;;12190:19:0;;12163:24;12190:19;;;:11;:19;;;;;;;;715:10;12190:33;;;;;;;;12256:26;;;;12234:116;;;;-1:-1:-1;;;12234:116:0;;4984:2:1;12234:116:0;;;4966:21:1;5023:2;5003:18;;;4996:30;5062:34;5042:18;;;5035:62;-1:-1:-1;;;5113:18:1;;;5106:38;5161:19;;12234:116:0;;;;;;;;;12386:57;12395:6;715:10;12436:6;12417:16;:25;12386:8;:57::i;:::-;-1:-1:-1;12474:4:0;;11957:529;-1:-1:-1;;;;11957:529:0:o;12895:290::-;715:10;13008:4;13097:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13097:34:0;;;;;;;;;;13008:4;;13025:130;;13075:7;;13097:47;;13134:10;;13097:47;:::i;:::-;13025:8;:130::i;38503:166::-;38592:8;;-1:-1:-1;;;;;38592:8:0;38578:10;:22;38570:58;;;;-1:-1:-1;;;38570:58:0;;5655:2:1;38570:58:0;;;5637:21:1;5694:2;5674:18;;;5667:30;5733:25;5713:18;;;5706:53;5776:18;;38570:58:0;5453:347:1;38570:58:0;38639:22;38645:7;38654:6;38639:5;:22::i;:::-;38503:166;;:::o;39032:83::-;39082:25;39088:10;39100:6;39082:5;:25::i;:::-;39032:83;:::o;42224:254::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;42300:46:::1;::::0;-1:-1:-1;;;42300:46:0;;42315:4:::1;42300:46;::::0;::::1;1640:51:1::0;;;42282:15:0::1;::::0;42300:31:::1;::::0;1613:18:1;;42300:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42357:51;::::0;-1:-1:-1;;;42357:51:0;;42388:10:::1;42357:51;::::0;::::1;6529::1::0;6596:18;;;6589:34;;;42282:64:0;;-1:-1:-1;42372:4:0::1;::::0;42357:30:::1;::::0;6502:18:1;;42357:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;42419:51:0::1;::::0;42427:10:::1;::::0;42448:21:::1;42419:51:::0;::::1;;;::::0;::::1;::::0;;;42448:21;42427:10;42419:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;2444:103:::0;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;2509:30:::1;2536:1;2509:18;:30::i;:::-;2444:103::o:0;42045:121::-;1866:6;;42097:4;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;42114:14:0::1;:22:::0;;-1:-1:-1;;;;42114:22:0::1;::::0;;;42045:121;:::o;41527:169::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41642:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;41642:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41527:169::o;38838:105::-;38909:26;38919:7;38928:6;38909:9;:26::i;42909:171::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;42982:12:::1;43000:6;-1:-1:-1::0;;;;;43000:11:0::1;43019:21;43000:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42981:64;;;43064:7;43056:16;;;::::0;::::1;41740:257:::0;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;41849:10:::1;::::0;41820:40:::1;::::0;-1:-1:-1;;;;;41849:10:0;;::::1;::::0;41820:40;::::1;::::0;::::1;::::0;41849:10:::1;::::0;41820:40:::1;41871:10;:22:::0;;-1:-1:-1;;;;;;41871:22:0::1;-1:-1:-1::0;;;;;41871:22:0;::::1;;::::0;;41904:32:::1;41871:22:::0;-1:-1:-1;41904:15:0::1;:32::i;:::-;41947:42;41973:9;41984:4;41947:25;:42::i;40365:391::-:0;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;40514:13:::1;:27:::0;;;40552:15:::1;:31:::0;;;40594:10:::1;:21:::0;;;40607:8;40641:31:::1;40570:13:::0;40530:11;40641:31:::1;:::i;:::-;:44;;;;:::i;:::-;40626:12;:59:::0;;;40720:1:::1;-1:-1:-1::0;40704:17:0::1;40696:52;;;::::0;-1:-1:-1;;;40696:52:0;;7296:2:1;40696:52:0::1;::::0;::::1;7278:21:1::0;7335:2;7315:18;;;7308:30;-1:-1:-1;;;7354:18:1;;;7347:52;7416:18;;40696:52:0::1;7094:346:1::0;40696:52:0::1;40365:391:::0;;;:::o;39469:112::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;39524:13:::1;:20:::0;;-1:-1:-1;;;;39555:18:0;-1:-1:-1;;;39555:18:0;;;39469:112::o;40219:100::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;40290:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;40290:21:0::1;-1:-1:-1::0;;;;40290:21:0;;::::1;::::0;;;::::1;::::0;;40219:100::o;9267:104::-;9323:13;9356:7;9349:14;;;;;:::i;29508:306::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;29654:13:::1;-1:-1:-1::0;;;;;29646:21:0::1;:4;-1:-1:-1::0;;;;;29646:21:0::1;::::0;29624:128:::1;;;::::0;-1:-1:-1;;;29624:128:0;;7647:2:1;29624:128:0::1;::::0;::::1;7629:21:1::0;7686:2;7666:18;;;7659:30;7725:34;7705:18;;;7698:62;7796:27;7776:18;;;7769:55;7841:19;;29624:128:0::1;7445:421:1::0;29624:128:0::1;29765:41;29794:4;29800:5;29765:28;:41::i;13688:475::-:0;715:10;13806:4;13850:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13850:34:0;;;;;;;;;;13917:35;;;;13895:122;;;;-1:-1:-1;;;13895:122:0;;8073:2:1;13895:122:0;;;8055:21:1;8112:2;8092:18;;;8085:30;8151:34;8131:18;;;8124:62;-1:-1:-1;;;8202:18:1;;;8195:35;8247:19;;13895:122:0;7871:401:1;13895:122:0;14053:67;715:10;14076:7;14104:15;14085:16;:34;14053:8;:67::i;:::-;-1:-1:-1;14151:4:0;;13688:475;-1:-1:-1;;;13688:475:0:o;10695:200::-;10806:4;10823:42;715:10;10847:9;10858:6;10823:9;:42::i;39649:428::-;1866:6;;39748:4;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;39801:1:::1;39787:10;:15;;39765:117;;;::::0;-1:-1:-1;;;39765:117:0;;8479:2:1;39765:117:0::1;::::0;::::1;8461:21:1::0;8518:2;8498:18;;;8491:30;8557:34;8537:18;;;8530:62;-1:-1:-1;;;8608:18:1;;;8601:50;8668:19;;39765:117:0::1;8277:416:1::0;39765:117:0::1;39929:2;39915:10;:16;;39893:119;;;::::0;-1:-1:-1;;;39893:119:0;;8900:2:1;39893:119:0::1;::::0;::::1;8882:21:1::0;8939:2;8919:18;;;8912:30;8978:34;8958:18;;;8951:62;-1:-1:-1;;;9029:18:1;;;9022:51;9090:19;;39893:119:0::1;8698:417:1::0;39893:119:0::1;-1:-1:-1::0;40023:11:0::1;:24:::0;40065:4:::1;::::0;39649:428::o;42538:313::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42658:20:0;::::1;42650:59;;;::::0;-1:-1:-1;;;42650:59:0;;9322:2:1;42650:59:0::1;::::0;::::1;9304:21:1::0;9361:2;9341:18;;;9334:30;9400:28;9380:18;;;9373:56;9446:18;;42650:59:0::1;9120:350:1::0;42650:59:0::1;42747:39;::::0;-1:-1:-1;;;42747:39:0;;42780:4:::1;42747:39;::::0;::::1;1640:51:1::0;42720:24:0::1;::::0;-1:-1:-1;;;;;42747:24:0;::::1;::::0;::::1;::::0;1613:18:1;;42747:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42797:46;::::0;-1:-1:-1;;;42797:46:0;;-1:-1:-1;;;;;6547:32:1;;;42797:46:0::1;::::0;::::1;6529:51:1::0;6596:18;;;6589:34;;;42720:66:0;;-1:-1:-1;42797:23:0;;::::1;::::0;::::1;::::0;6502:18:1;;42797:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42639:212;42538:313:::0;;:::o;41269:182::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41354:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41354:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41409:34;;1163:41:1;;;41409:34:0::1;::::0;1136:18:1;41409:34:0::1;;;;;;;41269:182:::0;;:::o;40803:401::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;40953:14:::1;:28:::0;;;40992:16:::1;:32:::0;;;41035:11:::1;:22:::0;;;41049:8;41084:33:::1;41011:13:::0;40970:11;41084:33:::1;:::i;:::-;:47;;;;:::i;:::-;41068:13;:63:::0;;;41167:1:::1;-1:-1:-1::0;41150:18:0::1;41142:54;;;::::0;-1:-1:-1;;;41142:54:0;;9677:2:1;41142:54:0::1;::::0;::::1;9659:21:1::0;9716:2;9696:18;;;9689:30;9755:25;9735:18;;;9728:53;9798:18;;41142:54:0::1;9475:347:1::0;38187:134:0;38238:15;38308:5;38293:11;;38277:13;10256:12;;;10168:108;38277:13;:27;;;;:::i;:::-;38276:37;;;;:::i;:::-;38266:47;;38187:134;:::o;39195:194::-;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;39265:8:::1;:20:::0;;-1:-1:-1;;;;;;39265:20:0::1;-1:-1:-1::0;;;;;39265:20:0;::::1;;::::0;;39296:32:::1;39265:20:::0;-1:-1:-1;39296:15:0::1;:32::i;2702:238::-:0;1866:6;;-1:-1:-1;;;;;1866:6:0;715:10;2013:23;2005:68;;;;-1:-1:-1;;;2005:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2805:22:0;::::1;2783:110;;;::::0;-1:-1:-1;;;2783:110:0;;10424:2:1;2783:110:0::1;::::0;::::1;10406:21:1::0;10463:2;10443:18;;;10436:30;10502:34;10482:18;;;10475:62;-1:-1:-1;;;10553:18:1;;;10546:36;10599:19;;2783:110:0::1;10222:402:1::0;2783:110:0::1;2904:28;2923:8;2904:18;:28::i;17471:380::-:0;-1:-1:-1;;;;;17607:19:0;;17599:68;;;;-1:-1:-1;;;17599:68:0;;10831:2:1;17599:68:0;;;10813:21:1;10870:2;10850:18;;;10843:30;10909:34;10889:18;;;10882:62;-1:-1:-1;;;10960:18:1;;;10953:34;11004:19;;17599:68:0;10629:400:1;17599:68:0;-1:-1:-1;;;;;17686:21:0;;17678:68;;;;-1:-1:-1;;;17678:68:0;;11236:2:1;17678:68:0;;;11218:21:1;11275:2;11255:18;;;11248:30;11314:34;11294:18;;;11287:62;-1:-1:-1;;;11365:18:1;;;11358:32;11407:19;;17678:68:0;11034:398:1;17678:68:0;-1:-1:-1;;;;;17759:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17811:32;;1848:25:1;;;17811:32:0;;1821:18:1;17811:32:0;;;;;;;17471:380;;;:::o;30489:3914::-;-1:-1:-1;;;;;30621:18:0;;30613:68;;;;-1:-1:-1;;;30613:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30700:16:0;;30692:64;;;;-1:-1:-1;;;30692:64:0;;;;;;;:::i;:::-;30773:6;30783:1;30773:11;30769:93;;30801:28;30817:4;30823:2;30827:1;30801:15;:28::i;30769:93::-;30878:14;;-1:-1:-1;;;30878:14:0;;;;30874:1694;;;1866:6;;-1:-1:-1;;;;;30931:15:0;;;1866:6;;30931:15;;;;:49;;-1:-1:-1;1866:6:0;;-1:-1:-1;;;;;30967:13:0;;;1866:6;;30967:13;;30931:49;:86;;;;-1:-1:-1;;;;;;31001:16:0;;;;30931:86;:128;;;;-1:-1:-1;;;;;;31038:21:0;;31052:6;31038:21;;30931:128;:158;;;;-1:-1:-1;31081:8:0;;-1:-1:-1;;;31081:8:0;;;;31080:9;30931:158;30909:1648;;;31129:13;;-1:-1:-1;;;31129:13:0;;;;31124:223;;-1:-1:-1;;;;;31201:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31230:23:0;;;;;;:19;:23;;;;;;;;31201:52;31167:160;;;;-1:-1:-1;;;31167:160:0;;12449:2:1;31167:160:0;;;12431:21:1;12488:2;12468:18;;;12461:30;-1:-1:-1;;;12507:18:1;;;12500:52;12569:18;;31167:160:0;12247:346:1;31167:160:0;-1:-1:-1;;;;;31421:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;31478:35:0;;;;;;:31;:35;;;;;;;;31477:36;31421:92;31395:1147;;;31600:20;;31590:6;:30;;31556:169;;;;-1:-1:-1;;;31556:169:0;;12800:2:1;31556:169:0;;;12782:21:1;12839:2;12819:18;;;12812:30;12878:34;12858:18;;;12851:62;-1:-1:-1;;;12929:18:1;;;12922:51;12990:19;;31556:169:0;12598:417:1;31556:169:0;31808:9;;-1:-1:-1;;;;;10456:18:0;;10429:7;10456:18;;;;;;;;;;;31782:22;;:6;:22;:::i;:::-;:35;;31748:140;;;;-1:-1:-1;;;31748:140:0;;13222:2:1;31748:140:0;;;13204:21:1;13261:2;13241:18;;;13234:30;-1:-1:-1;;;13280:18:1;;;13273:49;13339:18;;31748:140:0;13020:343:1;31748:140:0;31395:1147;;;-1:-1:-1;;;;;31986:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;32041:37:0;;;;;;:31;:37;;;;;;;;32040:38;31986:92;31960:582;;;32165:20;;32155:6;:30;;32121:170;;;;-1:-1:-1;;;32121:170:0;;13570:2:1;32121:170:0;;;13552:21:1;13609:2;13589:18;;;13582:30;13648:34;13628:18;;;13621:62;-1:-1:-1;;;13699:18:1;;;13692:52;13761:19;;32121:170:0;13368:418:1;31960:582:0;-1:-1:-1;;;;;32322:35:0;;;;;;:31;:35;;;;;;;;32317:225;;32442:9;;-1:-1:-1;;;;;10456:18:0;;10429:7;10456:18;;;;;;;;;;;32416:22;;:6;:22;:::i;:::-;:35;;32382:140;;;;-1:-1:-1;;;32382:140:0;;13222:2:1;32382:140:0;;;13204:21:1;13261:2;13241:18;;;13234:30;-1:-1:-1;;;13280:18:1;;;13273:49;13339:18;;32382:140:0;13020:343:1;32382:140:0;32629:4;32580:28;10456:18;;;;;;;;;;;;32687:20;:18;:20::i;:::-;32663;:44;;32648:59;;32738:7;:35;;;;-1:-1:-1;32762:11:0;;-1:-1:-1;;;32762:11:0;;;;32738:35;:61;;;;-1:-1:-1;32791:8:0;;-1:-1:-1;;;32791:8:0;;;;32790:9;32738:61;:110;;;;-1:-1:-1;;;;;;32817:31:0;;;;;;:25;:31;;;;;;;;32816:32;32738:110;:153;;;;-1:-1:-1;;;;;;32866:25:0;;;;;;:19;:25;;;;;;;;32865:26;32738:153;:194;;;;-1:-1:-1;;;;;;32909:23:0;;;;;;:19;:23;;;;;;;;32908:24;32738:194;32720:326;;;32959:8;:15;;-1:-1:-1;;;;32959:15:0;-1:-1:-1;;;32959:15:0;;;32991:10;:8;:10::i;:::-;33018:8;:16;;-1:-1:-1;;;;33018:16:0;;;32720:326;33074:8;;-1:-1:-1;;;;;33184:25:0;;33058:12;33184:25;;;:19;:25;;;;;;33074:8;-1:-1:-1;;;33074:8:0;;;;;33073:9;;33184:25;;:52;;-1:-1:-1;;;;;;33213:23:0;;;;;;:19;:23;;;;;;;;33184:52;33180:100;;;-1:-1:-1;33263:5:0;33180:100;33292:12;33397:7;33393:957;;;-1:-1:-1;;;;;33449:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33498:1;33482:13;;:17;33449:50;33445:756;;;33554:3;33537:13;;33528:6;:22;;;;:::i;:::-;33527:30;;;;:::i;:::-;33520:37;;33626:13;;33606:16;;33599:4;:23;;;;:::i;:::-;33598:41;;;;:::i;:::-;33576:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;33698:13:0;;33683:11;;33676:18;;:4;:18;:::i;:::-;33675:36;;;;:::i;:::-;33658:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;33776:13:0;;33758:14;;33751:21;;:4;:21;:::i;:::-;33750:39;;;;:::i;:::-;33730:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;33445:756:0;;-1:-1:-1;33445:756:0;;-1:-1:-1;;;;;33851:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;33901:1;33886:12;;:16;33851:51;33847:354;;;33956:3;33940:12;;33931:6;:21;;;;:::i;:::-;33930:29;;;;:::i;:::-;33923:36;;34027:12;;34008:15;;34001:4;:22;;;;:::i;:::-;34000:39;;;;:::i;:::-;33978:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;34097:12:0;;34083:10;;34076:17;;:4;:17;:::i;:::-;34075:34;;;;:::i;:::-;34058:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;34173:12:0;;34156:13;;34149:20;;:4;:20;:::i;:::-;34148:37;;;;:::i;:::-;34128:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;33847:354:0;34221:8;;34217:91;;34250:42;34266:4;34280;34287;34250:15;:42::i;:::-;34324:14;34334:4;34324:14;;:::i;:::-;;;33393:957;34362:33;34378:4;34384:2;34388:6;34362:15;:33::i;:::-;30602:3801;;;;30489:3914;;;:::o;15710:399::-;-1:-1:-1;;;;;15794:21:0;;15786:65;;;;-1:-1:-1;;;15786:65:0;;14126:2:1;15786:65:0;;;14108:21:1;14165:2;14145:18;;;14138:30;14204:33;14184:18;;;14177:61;14255:18;;15786:65:0;13924:355:1;15786:65:0;15942:6;15926:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15959:18:0;;:9;:18;;;;;;;;;;:28;;15981:6;;15959:9;:28;;15981:6;;15959:28;:::i;:::-;;;;-1:-1:-1;;16003:37:0;;1848:25:1;;;-1:-1:-1;;;;;16003:37:0;;;16020:1;;16003:37;;1836:2:1;1821:18;16003:37:0;;;;;;;38503:166;;:::o;16442:591::-;-1:-1:-1;;;;;16526:21:0;;16518:67;;;;-1:-1:-1;;;16518:67:0;;14486:2:1;16518:67:0;;;14468:21:1;14525:2;14505:18;;;14498:30;14564:34;14544:18;;;14537:62;-1:-1:-1;;;14615:18:1;;;14608:31;14656:19;;16518:67:0;14284:397:1;16518:67:0;-1:-1:-1;;;;;16685:18:0;;16660:22;16685:18;;;;;;;;;;;16722:24;;;;16714:71;;;;-1:-1:-1;;;16714:71:0;;14888:2:1;16714:71:0;;;14870:21:1;14927:2;14907:18;;;14900:30;14966:34;14946:18;;;14939:62;-1:-1:-1;;;15017:18:1;;;15010:32;15059:19;;16714:71:0;14686:398:1;16714:71:0;-1:-1:-1;;;;;16821:18:0;;:9;:18;;;;;;;;;;16842:23;;;16821:44;;16887:12;:22;;16859:6;;16821:9;16887:22;;16859:6;;16887:22;:::i;:::-;;;;-1:-1:-1;;16927:37:0;;1848:25:1;;;16953:1:0;;-1:-1:-1;;;;;16927:37:0;;;;;1836:2:1;1821:18;16927:37:0;;;;;;;40365:391;;;:::o;3100:191::-;3193:6;;;-1:-1:-1;;;;;3210:17:0;;;-1:-1:-1;;;;;;3210:17:0;;;;;;;3243:40;;3193:6;;;3210:17;3193:6;;3243:40;;3174:16;;3243:40;3163:128;3100:191;:::o;30172:245::-;-1:-1:-1;;;;;11099:18:0;;30244:27;11099:18;;;:11;:18;;;;;;;;30293:10;11099:27;;;;;;;;30274:39;;30307:6;;30274:39;:::i;:::-;30244:69;;30326:50;30335:7;30344:10;30356:19;30326:8;:50::i;:::-;30387:22;30393:7;30402:6;30387:5;:22::i;29879:188::-;-1:-1:-1;;;;;29962:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;29962:39:0;;;;;;;;;;30019:40;;29962:39;;:31;30019:40;;;29879:188;;:::o;14653:770::-;-1:-1:-1;;;;;14793:20:0;;14785:70;;;;-1:-1:-1;;;14785:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14874:23:0;;14866:71;;;;-1:-1:-1;;;14866:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15034:17:0;;15010:21;15034:17;;;;;;;;;;;15084:23;;;;15062:111;;;;-1:-1:-1;;;15062:111:0;;15291:2:1;15062:111:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:36;15466:19;;15062:111:0;15089:402:1;15062:111:0;-1:-1:-1;;;;;15209:17:0;;;:9;:17;;;;;;;;;;;15229:22;;;15209:42;;15273:20;;;;;;;;:30;;15245:6;;15209:9;15273:30;;15245:6;;15273:30;:::i;:::-;;;;;;;;15338:9;-1:-1:-1;;;;;15321:35:0;15330:6;-1:-1:-1;;;;;15321:35:0;;15349:6;15321:35;;;;1848:25:1;;1836:2;1821:18;;1702:177;15321:35:0;;;;;;;;15369:46;40365:391;35875:1868;35959:4;35915:23;10456:18;;;;;;;;;;;35915:50;;35976:25;36070:13;;36038:16;;36004:18;;:50;;;;:::i;:::-;:79;;;;:::i;:::-;35976:107;-1:-1:-1;36094:12:0;36123:20;;;:46;;-1:-1:-1;36147:22:0;;36123:46;36119:85;;;36186:7;;;35875:1868::o;36119:85::-;36238:20;:18;:20::i;:::-;:25;;36261:2;36238:25;:::i;:::-;36220:15;:43;36216:119;;;36298:20;:18;:20::i;:::-;:25;;36321:2;36298:25;:::i;:::-;36280:43;;36216:119;36396:23;36509:1;36476:17;36441:18;;36423:15;:36;;;;:::i;:::-;36422:71;;;;:::i;:::-;:88;;;;:::i;:::-;36396:114;-1:-1:-1;36521:26:0;36550:33;36396:114;36550:15;:33;:::i;:::-;36521:62;-1:-1:-1;36624:21:0;36658:36;36521:62;36658:16;:36::i;:::-;36707:18;36728:41;36752:17;36728:21;:41;:::i;:::-;36707:62;;36782:21;36908:1;36887:18;;:22;;;;:::i;:::-;36853:17;36820:16;;36807:10;:29;;;;:::i;:::-;36806:64;;;;:::i;:::-;:104;;;;:::i;:::-;36782:128;;36923:18;37043:1;37022:18;;:22;;;;:::i;:::-;36988:17;36958:13;;36945:10;:26;;;;:::i;:::-;36944:61;;;;:::i;:::-;:101;;;;:::i;:::-;36923:122;-1:-1:-1;37058:23:0;36923:122;37084:26;37097:13;37084:10;:26;:::i;:::-;:39;;;;:::i;:::-;37157:1;37136:18;:22;;;37169:16;:20;;;37200:13;:17;;;37252:10;;37244:47;;37058:65;;-1:-1:-1;;;;;;37252:10:0;;37276;;37244:47;37157:1;37244:47;37276:10;37252;37244:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37230:61:0;;-1:-1:-1;;37308:19:0;;;;;:42;;;37349:1;37331:15;:19;37308:42;37304:278;;;37367:46;37380:15;37397;37367:12;:46::i;:::-;37537:18;;37433:137;;;15698:25:1;;;15754:2;15739:18;;15732:34;;;15782:18;;;15775:34;;;;37433:137:0;;;;;;15686:2:1;37433:137:0;;;37304:278;37594:16;37613:21;37594:40;;37651:4;-1:-1:-1;;;;;37645:19:0;;37672:8;37645:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;37716:8:0;;37694:41;;-1:-1:-1;;;37694:41:0;;-1:-1:-1;;;;;37716:8:0;;;37694:41;;;6529:51:1;6596:18;;;6589:34;;;37701:4:0;37694:21;;;;-1:-1:-1;37694:21:0;;-1:-1:-1;6502:18:1;;;-1:-1:-1;37694:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35904:1839;;;;;;;;;;;35875:1868::o;34544:590::-;34695:16;;;34709:1;34695:16;;;;;;;;34671:21;;34695:16;;;;;;;;;;-1:-1:-1;34695:16:0;34671:40;;34740:4;34722;34727:1;34722:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34722:23:0;;;-1:-1:-1;;;;;34722:23:0;;;;;34766:15;-1:-1:-1;;;;;34766:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34756:4;34761:1;34756:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;34756:32:0;;;-1:-1:-1;;;;;34756:32:0;;;;;34801:62;34818:4;34833:15;34851:11;34801:8;:62::i;:::-;34902:224;;-1:-1:-1;;;34902:224:0;;-1:-1:-1;;;;;34902:15:0;:66;;;;:224;;34983:11;;35009:1;;35053:4;;35080;;35100:15;;34902:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34600:534;34544:590;:::o;35255:515::-;35404:62;35421:4;35436:15;35454:11;35404:8;:62::i;:::-;35713:8;;35509:253;;-1:-1:-1;;;35509:253:0;;35581:4;35509:253;;;17666:34:1;17716:18;;;17709:34;;;35627:1:0;17759:18:1;;;17752:34;;;17802:18;;;17795:34;-1:-1:-1;;;;;35713:8:0;;;17845:19:1;;;17838:44;35736:15:0;17898:19:1;;;17891:35;35509:15:0;:31;;;;;;35548:9;;17600:19:1;;35509:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35255:515;;:::o;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:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;:::-;1451:5;1215:247;-1:-1:-1;;;1215:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2742:180::-;2801:6;2854:2;2842:9;2833:7;2829:23;2825:32;2822:52;;;2870:1;2867;2860:12;2822:52;-1:-1:-1;2893:23:1;;2742:180;-1:-1:-1;2742:180:1:o;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:241::-;3814:6;3867:2;3855:9;3846:7;3842:23;3838:32;3835:52;;;3883:1;3880;3873:12;3835:52;3922:9;3909:23;3941:28;3963:5;3941:28;:::i;4004:388::-;4072:6;4080;4133:2;4121:9;4112:7;4108:23;4104:32;4101:52;;;4149:1;4146;4139:12;4101:52;4188:9;4175:23;4207:31;4232:5;4207:31;:::i;:::-;4257:5;-1:-1:-1;4314:2:1;4299:18;;4286:32;4327:33;4286:32;4327:33;:::i;4397:380::-;4476:1;4472:12;;;;4519;;;4540:61;;4594:4;4586:6;4582:17;4572:27;;4540:61;4647:2;4639:6;4636:14;4616:18;4613:38;4610:161;;4693:10;4688:3;4684:20;4681:1;4674:31;4728:4;4725:1;4718:15;4756:4;4753:1;4746:15;4610:161;;4397:380;;;:::o;5191:127::-;5252:10;5247:3;5243:20;5240:1;5233:31;5283:4;5280:1;5273:15;5307:4;5304:1;5297:15;5323:125;5388:9;;;5409:10;;;5406:36;;;5422:18;;:::i;5805:356::-;6007:2;5989:21;;;6026:18;;;6019:30;6085:34;6080:2;6065:18;;6058:62;6152:2;6137:18;;5805:356::o;6166:184::-;6236:6;6289:2;6277:9;6268:7;6264:23;6260:32;6257:52;;;6305:1;6302;6295:12;6257:52;-1:-1:-1;6328:16:1;;6166:184;-1:-1:-1;6166:184:1:o;6634:245::-;6701:6;6754:2;6742:9;6733:7;6729:23;6725:32;6722:52;;;6770:1;6767;6760:12;6722:52;6802:9;6796:16;6821:28;6843:5;6821:28;:::i;9827:168::-;9900:9;;;9931;;9948:15;;;9942:22;;9928:37;9918:71;;9969:18;;:::i;10000:217::-;10040:1;10066;10056:132;;10110:10;10105:3;10101:20;10098:1;10091:31;10145:4;10142:1;10135:15;10173:4;10170:1;10163:15;10056:132;-1:-1:-1;10202:9:1;;10000:217::o;11437:401::-;11639:2;11621:21;;;11678:2;11658:18;;;11651:30;11717:34;11712:2;11697:18;;11690:62;-1:-1:-1;;;11783:2:1;11768:18;;11761:35;11828:3;11813:19;;11437:401::o;11843:399::-;12045:2;12027:21;;;12084:2;12064:18;;;12057:30;12123:34;12118:2;12103:18;;12096:62;-1:-1:-1;;;12189:2:1;12174:18;;12167:33;12232:3;12217:19;;11843:399::o;13791:128::-;13858:9;;;13879:11;;;13876:37;;;13893:18;;:::i;15952:127::-;16013:10;16008:3;16004:20;16001:1;15994:31;16044:4;16041:1;16034:15;16068:4;16065:1;16058:15;16084:251;16154:6;16207:2;16195:9;16186:7;16182:23;16178:32;16175:52;;;16223:1;16220;16213:12;16175:52;16255:9;16249:16;16274:31;16299:5;16274:31;:::i;16340:980::-;16602:4;16650:3;16639:9;16635:19;16681:6;16670:9;16663:25;16707:2;16745:6;16740:2;16729:9;16725:18;16718:34;16788:3;16783:2;16772:9;16768:18;16761:31;16812:6;16847;16841:13;16878:6;16870;16863:22;16916:3;16905:9;16901:19;16894:26;;16955:2;16947:6;16943:15;16929:29;;16976:1;16986:195;17000:6;16997:1;16994:13;16986:195;;;17065:13;;-1:-1:-1;;;;;17061:39:1;17049:52;;17156:15;;;;17121:12;;;;17097:1;17015:9;16986:195;;;-1:-1:-1;;;;;;;17237:32:1;;;;17232:2;17217:18;;17210:60;-1:-1:-1;;;17301:3:1;17286:19;17279:35;17198:3;16340:980;-1:-1:-1;;;16340:980:1:o;17937:306::-;18025:6;18033;18041;18094:2;18082:9;18073:7;18069:23;18065:32;18062:52;;;18110:1;18107;18100:12;18062:52;18139:9;18133:16;18123:26;;18189:2;18178:9;18174:18;18168:25;18158:35;;18233:2;18222:9;18218:18;18212:25;18202:35;;17937:306;;;;;:::o

Swarm Source

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