ETH Price: $3,417.80 (-0.65%)
Gas: 10 Gwei

Token

Yieldrone (YDR)
 

Overview

Max Total Supply

1,000,000 YDR

Holders

122

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
wen69420.eth
Balance
0.812076754457475551 YDR

Value
$0.00
0xd5c68609fa5b0b835a79739105ae041deff36999
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:
Yieldrone

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

interface IvETH {
    function deposit(
        address _restakedLST,
        address _to,
        uint256 _amount
    ) external;
}

contract Yieldrone is ERC20, Ownable {
    /// STATE VARIABLES ///

    /// @notice Address of UniswapV2Router
    IUniswapV2Router02 public immutable uniswapV2Router;
    /// @notice Address of YDR/ETH LP
    address public immutable uniswapV2Pair;
    /// @notice WETH address
    address public immutable WETH;
    /// @notice treasury
    address public treasury;
    /// @notice Team wallet address
    address public teamWallet;

    bool private swapping;

    /// @notice Bool if swap is enabled
    bool public swapEnabled = true;

    /// @notice Current percent of supply to swap tokens at (i.e. 50 = 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 team
    uint256 public tokensForTeam;

    /// MAPPINGS ///

    /// @dev Bool if address is excluded from fees
    mapping(address => bool) public _isExcludedFromFees;
    /// @dev Bool if address is excluded from max transaction
    mapping(address => bool) public _isExcludedMaxTransaction;

    /// @notice max transaction
    uint256 public maxTransaction;
    /// @notice max wallet
    uint256 public maxWallet;

    /// @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 EeamWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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

    event DistributorUpdated(address oldDistributor, address newDistributor);

    event WithdrawnStuckToken(
        address token,
        address to,
        uint256 contractBalance
    );

    event WithdrawnStuckETH(address toAddr, uint256 balance);
    
    event UpdatedBuyFees(
        uint256 backingFee,
        uint256 liquidityFee,
        uint256 teamFee
    );

    event UpdatedSellFees(
        uint256 backingFee,
        uint256 liquidityFee,
        uint256 teamFee
    );
    
    event UpdatedSwapEnabled(bool enabled);

    event UpdateSwapTokensAtPercent(uint256 percent);


    /// CONSTRUCTOR ///
    constructor() ERC20("Yieldrone", "YDR") {
        WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;
        excludeFromMaxTransaction(address(uniswapV2Router), true);

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

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 totalSupply__ = 1_000_000 * 1e18;

        _approve(address(this), address(_uniswapV2Router), type(uint256).max);

        swapPercent = 10; // 0.01%

        buyBackingFee = 0;
        buyLiquidityFee = 50;
        buyTeamFee = 250;
        buyTotalFees = 300;

        sellBackingFee = 0;
        sellLiquidityFee = 50;
        sellTeamFee = 250;
        sellTotalFees = 300;

        maxTransaction = totalSupply__ * 2 / 100; // 2% max transaction at launch
        maxWallet = totalSupply__ * 2 / 100; // 2% max wallet at launch

        teamWallet = address(0xa25c43148918651b4e4B27B89BC76417F36f286F); // set as team wallet
        treasury = address(0x024f28bAfb6e7E28C32045A6b52EBDaD45586Bda);

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

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


        uint256 ownerSupply = totalSupply__ * 45 / 100;
        uint256 treasurySupply = totalSupply__ - ownerSupply;
        
        _mint(msg.sender, ownerSupply);
        _mint(treasury, treasurySupply);
    }

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

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

        //when buy
        if (
            automatedMarketMakerPairs[from] &&
            !_isExcludedMaxTransaction[to]
        ) {
            require(
                amount <= maxTransaction,
                "Buy transfer amount exceeds the maxTransaction."
            );
            require(
                amount + balanceOf(to) <= maxWallet,
                "Max wallet exceeded"
            );
        }
        //when sell
        else if (
            automatedMarketMakerPairs[to] &&
            !_isExcludedMaxTransaction[from]
        ) {
            require(
                amount <= maxTransaction,
                "Sell transfer amount exceeds the maxTransaction."
            );
        } else if (!_isExcludedMaxTransaction[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;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 10000;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForTeam += (fees * sellTeamFee) / sellTotalFees;
                tokensForBacking += (fees * sellBackingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 10000;
                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();

        // 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 {
        // 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;

        if (amountToSwapForETH > 0) swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;

        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,
                liquidityTokens
            );
        }

        uint256 _balance = address(this).balance;
        if (_balance > 0) {
            IWETH(WETH).deposit{value: _balance}();
        }
    }

    /// VIEW FUNCTION ///

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

    /// @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.001% total supply."
        );
        require(
            newPercent <= 500,
            "Swap amount cannot be higher than 0.50% total supply."
        );
        swapPercent = newPercent;
        emit UpdateSwapTokensAtPercent(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;
        emit UpdatedSwapEnabled(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 <= 500, "Buy fees must be <= 5%");
        emit UpdatedBuyFees(_backingFee, _liquidityFee, _teamFee);
    }

    /// @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 <= 500, "Sell fees must be <= 5%");
        emit UpdatedSellFees(_backingFee, _liquidityFee, _teamFee);
    }

    /// @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 {
        _isExcludedMaxTransaction[updAds] = isEx;
    }


    /// @notice Update team wallet
    function updateTeamWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0), "YDR: can't be set zero address as team wallet");
        teamWallet = newWallet;
        excludeFromFees(newWallet, true);
        emit EeamWalletUpdated(newWallet, teamWallet);
    }

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

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

Contract Security Audit

Contract ABI

[{"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":false,"internalType":"address","name":"oldDistributor","type":"address"},{"indexed":false,"internalType":"address","name":"newDistributor","type":"address"}],"name":"DistributorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"EeamWalletUpdated","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":false,"internalType":"uint256","name":"percent","type":"uint256"}],"name":"UpdateSwapTokensAtPercent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"backingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"UpdatedBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"backingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"teamFee","type":"uint256"}],"name":"UpdatedSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"UpdatedSwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"toAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"WithdrawnStuckETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"contractBalance","type":"uint256"}],"name":"WithdrawnStuckToken","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransaction","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":[],"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e06040526007805460ff60a81b1916600160a81b17905534801562000023575f80fd5b50604051806040016040528060098152602001685969656c64726f6e6560b81b815250604051806040016040528060038152602001622ca22960e91b815250816003908162000073919062000876565b50600462000082828262000876565b5050506200009f620000996200044660201b60201c565b6200044a565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc260c052737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000de8160016200049b565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200011b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000141919062000942565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001b3919062000942565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001fe573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000224919062000942565b6001600160a01b031660a08190526200023f906001620004cf565b60a0516200024f9060016200049b565b69d3c21bcecceda10000006200026830835f1962000522565b600a60088190555f908190556032600b81905560fa600c81905561012c6009819055600e93909355600f91909155601055600d556064620002ab82600262000985565b620002b79190620009a5565b6016556064620002c982600262000985565b620002d59190620009a5565b601755600780546001600160a01b031990811673a25c43148918651b4e4b27b89bc76417f36f286f179091556006805490911673024f28bafb6e7e28c32045a6b52ebdad45586bda1790556200033f620003376005546001600160a01b031690565b60016200064d565b60065462000358906001600160a01b031660016200064d565b60075462000371906001600160a01b031660016200064d565b6200037e3060016200064d565b6200039d620003956005546001600160a01b031690565b60016200049b565b600654620003b6906001600160a01b031660016200049b565b600754620003cf906001600160a01b031660016200049b565b620003dc3060016200049b565b620003eb61dead60016200049b565b5f6064620003fb83602d62000985565b620004079190620009a5565b90505f620004168284620009c5565b9050620004243383620006b5565b6006546200043c906001600160a01b031682620006b5565b50505050620009f1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620004a562000776565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166200058a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005ed5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000581565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6200065762000776565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200070d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000581565b8060025f828254620007209190620009db565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620007d25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000581565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200080257607f821691505b6020821081036200082157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620007d457805f5260205f20601f840160051c810160208510156200084e5750805b601f840160051c820191505b818110156200086f575f81556001016200085a565b5050505050565b81516001600160401b03811115620008925762000892620007d9565b620008aa81620008a38454620007ed565b8462000827565b602080601f831160018114620008e0575f8415620008c85750858301515b5f19600386901b1c1916600185901b1785556200093a565b5f85815260208120601f198616915b828110156200091057888601518255948401946001909101908401620008ef565b50858210156200092e57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000953575f80fd5b81516001600160a01b03811681146200096a575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200099f576200099f62000971565b92915050565b5f82620009c057634e487b7160e01b5f52601260045260245ffd5b500490565b818103818111156200099f576200099f62000971565b808201808211156200099f576200099f62000971565b60805160a05160c0516124e862000a3f5f395f81816106980152611e2201525f81816103f40152610ca601525f818161031d01528181611ef201528181611fa8015261205a01526124e85ff3fe6080604052600436106102a8575f3560e01c8063924de9b71161016f578063c17b5b8c116100d8578063e0bf7fd111610092578063f2fde38b1161006d578063f2fde38b1461085c578063f63743421461087b578063f8b45b0514610890578063fde83a34146108a5575f80fd5b8063e0bf7fd114610805578063e2f4560514610833578063f11a24d314610847575f80fd5b8063c17b5b8c1461075a578063c3f70b5214610779578063c424134c1461078e578063d729715f146107bc578063d85ba063146107d1578063dd62ed3e146107e6575f80fd5b8063ad5c464811610129578063ad5c464814610687578063b62496f5146106ba578063ba22abc3146106e8578063bc205ad314610707578063be1512f314610726578063c02466681461073b575f80fd5b8063924de9b7146105e257806395d89b41146106015780639a7a23d6146106155780639c2e4ac614610634578063a457c2d714610649578063a9059cbb14610668575f80fd5b806361d027b3116102115780637571336a116101cb5780637571336a146105345780637ca8448a146105535780637cb332bb146105725780637f6bf20a146105915780638095d564146105a65780638da5cb5b146105c5575f80fd5b806361d027b3146104815780636a486a8e146104a05780636ddd1713146104b55780636f33037f146104d557806370a08231146104ea578063715018a61461051e575f80fd5b8063313ce56711610262578063313ce567146103a957806339509351146103c457806349bd5a5e146103e35780634ac1126a146104165780634fbee1931461042b5780635992704414610462575f80fd5b806306fdde03146102b3578063095ea7b3146102dd5780631694505e1461030c57806318160ddd146103575780631a8145bb1461037557806323b872dd1461038a575f80fd5b366102af57005b5f80fd5b3480156102be575f80fd5b506102c76108ba565b6040516102d491906120d0565b60405180910390f35b3480156102e8575f80fd5b506102fc6102f7366004612130565b61094a565b60405190151581526020016102d4565b348015610317575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d4565b348015610362575f80fd5b506002545b6040519081526020016102d4565b348015610380575f80fd5b5061036760125481565b348015610395575f80fd5b506102fc6103a436600461215a565b610963565b3480156103b4575f80fd5b50604051601281526020016102d4565b3480156103cf575f80fd5b506102fc6103de366004612130565b610986565b3480156103ee575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b348015610421575f80fd5b5061036760085481565b348015610436575f80fd5b506102fc610445366004612198565b6001600160a01b03165f9081526014602052604090205460ff1690565b34801561046d575f80fd5b5060075461033f906001600160a01b031681565b34801561048c575f80fd5b5060065461033f906001600160a01b031681565b3480156104ab575f80fd5b50610367600d5481565b3480156104c0575f80fd5b506007546102fc90600160a81b900460ff1681565b3480156104e0575f80fd5b50610367600e5481565b3480156104f5575f80fd5b50610367610504366004612198565b6001600160a01b03165f9081526020819052604090205490565b348015610529575f80fd5b506105326109a7565b005b34801561053f575f80fd5b5061053261054e3660046121c7565b6109ba565b34801561055e575f80fd5b5061053261056d366004612198565b6109ec565b34801561057d575f80fd5b5061053261058c366004612198565b610a98565b34801561059c575f80fd5b5061036760115481565b3480156105b1575f80fd5b506105326105c03660046121fe565b610b74565b3480156105d0575f80fd5b506005546001600160a01b031661033f565b3480156105ed575f80fd5b506105326105fc366004612227565b610c2d565b34801561060c575f80fd5b506102c7610c8d565b348015610620575f80fd5b5061053261062f3660046121c7565b610c9c565b34801561063f575f80fd5b50610367600c5481565b348015610654575f80fd5b506102fc610663366004612130565b610d59565b348015610673575f80fd5b506102fc610682366004612130565b610dd3565b348015610692575f80fd5b5061033f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c5575f80fd5b506102fc6106d4366004612198565b60186020525f908152604090205460ff1681565b3480156106f3575f80fd5b506102fc610702366004612242565b610de0565b348015610712575f80fd5b50610532610721366004612259565b610f08565b348015610731575f80fd5b50610367600a5481565b348015610746575f80fd5b506105326107553660046121c7565b61108b565b348015610765575f80fd5b506105326107743660046121fe565b6110f1565b348015610784575f80fd5b5061036760165481565b348015610799575f80fd5b506102fc6107a8366004612198565b60156020525f908152604090205460ff1681565b3480156107c7575f80fd5b5061036760105481565b3480156107dc575f80fd5b5061036760095481565b3480156107f1575f80fd5b50610367610800366004612259565b6111b1565b348015610810575f80fd5b506102fc61081f366004612198565b60146020525f908152604090205460ff1681565b34801561083e575f80fd5b506103676111db565b348015610852575f80fd5b50610367600b5481565b348015610867575f80fd5b50610532610876366004612198565b611205565b348015610886575f80fd5b50610367600f5481565b34801561089b575f80fd5b5061036760175481565b3480156108b0575f80fd5b5061036760135481565b6060600380546108c990612285565b80601f01602080910402602001604051908101604052809291908181526020018280546108f590612285565b80156109405780601f1061091757610100808354040283529160200191610940565b820191905f5260205f20905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b5f3361095781858561127e565b60019150505b92915050565b5f336109708582856113a1565b61097b858585611419565b506001949350505050565b5f3361095781858561099883836111b1565b6109a291906122d1565b61127e565b6109af6119f6565b6109b85f611a50565b565b6109c26119f6565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6109f46119f6565b60405147905f906001600160a01b0384169083908381818185875af1925050503d805f8114610a3e576040519150601f19603f3d011682016040523d82523d5f602084013e610a43565b606091505b5050905080610a50575f80fd5b604080516001600160a01b0385168152602081018490527f880c62f60b87bcecdbd0339c9e496ad52a7fd9a7e1830d9f99e7d55576d4302091015b60405180910390a1505050565b610aa06119f6565b6001600160a01b038116610b115760405162461bcd60e51b815260206004820152602d60248201527f5944523a2063616e277420626520736574207a65726f2061646472657373206160448201526c1cc81d19585b481dd85b1b195d609a1b60648201526084015b60405180910390fd5b600780546001600160a01b0319166001600160a01b038316179055610b3781600161108b565b6007546040516001600160a01b03918216918316907f588f332eb7ad06f37f67508e351c1d5ad37ce4c68f049a3379769a5adcabcde2905f90a350565b610b7c6119f6565b600a839055600b829055600c81905580610b9683856122d1565b610ba091906122d1565b60098190556101f41015610bef5760405162461bcd60e51b81526020600482015260166024820152754275792066656573206d757374206265203c3d20352560501b6044820152606401610b08565b60408051848152602081018490529081018290527faed0d156736b21d0b83dda2aac34286fe50c83a86597a0d72a344c95b467339190606001610a8b565b610c356119f6565b60078054821515600160a81b0260ff60a81b199091161790556040517f24d91f88b982da5ae65ce0a89cd3fbd6d253c5a12a5e908d9c9a3488c52bf25e90610c8290831515815260200190565b60405180910390a150565b6060600480546108c990612285565b610ca46119f6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610d4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b08565b610d558282611aa1565b5050565b5f3381610d6682866111b1565b905083811015610dc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b08565b61097b828686840361127e565b5f33610957818585611419565b5f610de96119f6565b6001821015610e585760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b08565b6101f4821115610ec85760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610b08565b60088290556040518281527ffb17af9463bea31b2a5588c437934535fe854df4abed1db9d2a6dca2f9257ec89060200160405180910390a1506001919050565b610f106119f6565b6001600160a01b038216610f665760405162461bcd60e51b815260206004820152601f60248201527f5944523a205f746f6b656e20616464726573732063616e6e6f742062652030006044820152606401610b08565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610faa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fce91906122e4565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561101e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104291906122fb565b50604080516001600160a01b038086168252841660208201529081018290527fb19db1a0b0d787de4e1cfefb1be3882ee71a32c3c01ffe30f2d8eb95d997a2f090606001610a8b565b6110936119f6565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110f96119f6565b600e839055600f82905560108190558061111383856122d1565b61111d91906122d1565b600d8190556101f410156111735760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d2035250000000000000000006044820152606401610b08565b60408051848152602081018490529081018290527fc08afb56c6a46d3f5ea01e29278d7bf4db0099d590cf2a12b891b5d6b2b8953a90606001610a8b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f620186a06008546111ec60025490565b6111f69190612316565b611200919061232d565b905090565b61120d6119f6565b6001600160a01b0381166112725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b08565b61127b81611a50565b50565b6001600160a01b0383166112e05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b08565b6001600160a01b0382166113415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b08565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6113ac84846111b1565b90505f19811461141357818110156114065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b08565b611413848484840361127e565b50505050565b6001600160a01b03831661143f5760405162461bcd60e51b8152600401610b089061234c565b6001600160a01b0382166114655760405162461bcd60e51b8152600401610b0890612391565b805f0361147c5761147783835f611af4565b505050565b6001600160a01b0383165f9081526018602052604090205460ff1680156114bb57506001600160a01b0382165f9081526015602052604090205460ff16155b156115985760165481111561152a5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b6064820152608401610b08565b6017546001600160a01b0383165f9081526020819052604090205461154f90836122d1565b11156115935760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b08565b6116cf565b6001600160a01b0382165f9081526018602052604090205460ff1680156115d757506001600160a01b0383165f9081526015602052604090205460ff16155b15611647576016548111156115935760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b6064820152608401610b08565b6001600160a01b0382165f9081526015602052604090205460ff166116cf576017546001600160a01b0383165f9081526020819052604090205461168b90836122d1565b11156116cf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b08565b305f90815260208190526040812054906116e76111db565b82101590508080156117025750600754600160a81b900460ff165b80156117185750600754600160a01b900460ff16155b801561173c57506001600160a01b0385165f9081526018602052604090205460ff16155b801561176057506001600160a01b0385165f9081526014602052604090205460ff16155b801561178457506001600160a01b0384165f9081526014602052604090205460ff16155b156117b2576007805460ff60a01b1916600160a01b1790556117a4611c1c565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526014602052604090205460ff600160a01b9092048216159116806117fe57506001600160a01b0385165f9081526014602052604090205460ff165b1561180657505f5b5f81156119e2576001600160a01b0386165f9081526018602052604090205460ff16801561183557505f600d54115b156118eb57612710600d548661184b9190612316565b611855919061232d565b9050600d54600f54826118689190612316565b611872919061232d565b60125f82825461188291906122d1565b9091555050600d546010546118979083612316565b6118a1919061232d565b60135f8282546118b191906122d1565b9091555050600d54600e546118c69083612316565b6118d0919061232d565b60115f8282546118e091906122d1565b909155506119c49050565b6001600160a01b0387165f9081526018602052604090205460ff16801561191357505f600954115b156119c457612710600954866119299190612316565b611933919061232d565b9050600954600b54826119469190612316565b611950919061232d565b60125f82825461196091906122d1565b9091555050600954600c546119759083612316565b61197f919061232d565b60135f82825461198f91906122d1565b9091555050600954600a546119a49083612316565b6119ae919061232d565b60115f8282546119be91906122d1565b90915550505b80156119d5576119d5873083611af4565b6119df81866123d4565b94505b6119ed878787611af4565b50505050505050565b6005546001600160a01b031633146109b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b08565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b1a5760405162461bcd60e51b8152600401610b089061234c565b6001600160a01b038216611b405760405162461bcd60e51b8152600401610b0890612391565b6001600160a01b0383165f9081526020819052604090205481811015611bb75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b08565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611413565b305f9081526020819052604081205490505f601354601154601254611c4191906122d1565b611c4b91906122d1565b90505f821580611c59575081155b15611c6357505050565b611c6b6111db565b611c76906014612316565b831115611c9357611c856111db565b611c90906014612316565b92505b5f60028360125486611ca59190612316565b611caf919061232d565b611cb9919061232d565b90505f611cc682866123d4565b90508015611cd757611cd781611e9d565b60125447905f90611cea9060029061232d565b611cf490876123d4565b601154611d019084612316565b611d0b919061232d565b90505f6002601254611d1d919061232d565b611d2790886123d4565b601354611d349085612316565b611d3e919061232d565b90505f81611d4c84866123d4565b611d5691906123d4565b5f6012819055601181905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114611db0576040519150601f19603f3d011682016040523d82523d5f602084013e611db5565b606091505b50909750508515801590611dc857505f81115b15611e1957611dd78682612018565b60408051868152602081018390529081018790527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b478015611e91577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004015f604051808303818588803b158015611e79575f80fd5b505af1158015611e8b573d5f803e3d5ffd5b50505050505b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ed057611ed06123e7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7091906123fb565b81600181518110611f8357611f836123e7565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063791ac94790611fe79085905f90869030904290600401612416565b5f604051808303815f87803b158015611ffe575f80fd5b505af1158015612010573d5f803e3d5ffd5b505050505050565b60065460405163f305d71960e01b8152306004820152602481018490525f6044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156120a4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120c99190612487565b5050505050565b5f602080835283518060208501525f5b818110156120fc578581018301518582016040015282016120e0565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461127b575f80fd5b5f8060408385031215612141575f80fd5b823561214c8161211c565b946020939093013593505050565b5f805f6060848603121561216c575f80fd5b83356121778161211c565b925060208401356121878161211c565b929592945050506040919091013590565b5f602082840312156121a8575f80fd5b81356121b38161211c565b9392505050565b801515811461127b575f80fd5b5f80604083850312156121d8575f80fd5b82356121e38161211c565b915060208301356121f3816121ba565b809150509250929050565b5f805f60608486031215612210575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612237575f80fd5b81356121b3816121ba565b5f60208284031215612252575f80fd5b5035919050565b5f806040838503121561226a575f80fd5b82356122758161211c565b915060208301356121f38161211c565b600181811c9082168061229957607f821691505b6020821081036122b757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561095d5761095d6122bd565b5f602082840312156122f4575f80fd5b5051919050565b5f6020828403121561230b575f80fd5b81516121b3816121ba565b808202811582820484141761095d5761095d6122bd565b5f8261234757634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561095d5761095d6122bd565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561240b575f80fd5b81516121b38161211c565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156124665784516001600160a01b031683529383019391830191600101612441565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612499575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d21b49690cddab92a5851835f23d72737b3038e770ec081d32a39450cdac469564736f6c63430008160033

Deployed Bytecode

0x6080604052600436106102a8575f3560e01c8063924de9b71161016f578063c17b5b8c116100d8578063e0bf7fd111610092578063f2fde38b1161006d578063f2fde38b1461085c578063f63743421461087b578063f8b45b0514610890578063fde83a34146108a5575f80fd5b8063e0bf7fd114610805578063e2f4560514610833578063f11a24d314610847575f80fd5b8063c17b5b8c1461075a578063c3f70b5214610779578063c424134c1461078e578063d729715f146107bc578063d85ba063146107d1578063dd62ed3e146107e6575f80fd5b8063ad5c464811610129578063ad5c464814610687578063b62496f5146106ba578063ba22abc3146106e8578063bc205ad314610707578063be1512f314610726578063c02466681461073b575f80fd5b8063924de9b7146105e257806395d89b41146106015780639a7a23d6146106155780639c2e4ac614610634578063a457c2d714610649578063a9059cbb14610668575f80fd5b806361d027b3116102115780637571336a116101cb5780637571336a146105345780637ca8448a146105535780637cb332bb146105725780637f6bf20a146105915780638095d564146105a65780638da5cb5b146105c5575f80fd5b806361d027b3146104815780636a486a8e146104a05780636ddd1713146104b55780636f33037f146104d557806370a08231146104ea578063715018a61461051e575f80fd5b8063313ce56711610262578063313ce567146103a957806339509351146103c457806349bd5a5e146103e35780634ac1126a146104165780634fbee1931461042b5780635992704414610462575f80fd5b806306fdde03146102b3578063095ea7b3146102dd5780631694505e1461030c57806318160ddd146103575780631a8145bb1461037557806323b872dd1461038a575f80fd5b366102af57005b5f80fd5b3480156102be575f80fd5b506102c76108ba565b6040516102d491906120d0565b60405180910390f35b3480156102e8575f80fd5b506102fc6102f7366004612130565b61094a565b60405190151581526020016102d4565b348015610317575f80fd5b5061033f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102d4565b348015610362575f80fd5b506002545b6040519081526020016102d4565b348015610380575f80fd5b5061036760125481565b348015610395575f80fd5b506102fc6103a436600461215a565b610963565b3480156103b4575f80fd5b50604051601281526020016102d4565b3480156103cf575f80fd5b506102fc6103de366004612130565b610986565b3480156103ee575f80fd5b5061033f7f000000000000000000000000305d3b44678899b40ae64a36794ab927953ea2c581565b348015610421575f80fd5b5061036760085481565b348015610436575f80fd5b506102fc610445366004612198565b6001600160a01b03165f9081526014602052604090205460ff1690565b34801561046d575f80fd5b5060075461033f906001600160a01b031681565b34801561048c575f80fd5b5060065461033f906001600160a01b031681565b3480156104ab575f80fd5b50610367600d5481565b3480156104c0575f80fd5b506007546102fc90600160a81b900460ff1681565b3480156104e0575f80fd5b50610367600e5481565b3480156104f5575f80fd5b50610367610504366004612198565b6001600160a01b03165f9081526020819052604090205490565b348015610529575f80fd5b506105326109a7565b005b34801561053f575f80fd5b5061053261054e3660046121c7565b6109ba565b34801561055e575f80fd5b5061053261056d366004612198565b6109ec565b34801561057d575f80fd5b5061053261058c366004612198565b610a98565b34801561059c575f80fd5b5061036760115481565b3480156105b1575f80fd5b506105326105c03660046121fe565b610b74565b3480156105d0575f80fd5b506005546001600160a01b031661033f565b3480156105ed575f80fd5b506105326105fc366004612227565b610c2d565b34801561060c575f80fd5b506102c7610c8d565b348015610620575f80fd5b5061053261062f3660046121c7565b610c9c565b34801561063f575f80fd5b50610367600c5481565b348015610654575f80fd5b506102fc610663366004612130565b610d59565b348015610673575f80fd5b506102fc610682366004612130565b610dd3565b348015610692575f80fd5b5061033f7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156106c5575f80fd5b506102fc6106d4366004612198565b60186020525f908152604090205460ff1681565b3480156106f3575f80fd5b506102fc610702366004612242565b610de0565b348015610712575f80fd5b50610532610721366004612259565b610f08565b348015610731575f80fd5b50610367600a5481565b348015610746575f80fd5b506105326107553660046121c7565b61108b565b348015610765575f80fd5b506105326107743660046121fe565b6110f1565b348015610784575f80fd5b5061036760165481565b348015610799575f80fd5b506102fc6107a8366004612198565b60156020525f908152604090205460ff1681565b3480156107c7575f80fd5b5061036760105481565b3480156107dc575f80fd5b5061036760095481565b3480156107f1575f80fd5b50610367610800366004612259565b6111b1565b348015610810575f80fd5b506102fc61081f366004612198565b60146020525f908152604090205460ff1681565b34801561083e575f80fd5b506103676111db565b348015610852575f80fd5b50610367600b5481565b348015610867575f80fd5b50610532610876366004612198565b611205565b348015610886575f80fd5b50610367600f5481565b34801561089b575f80fd5b5061036760175481565b3480156108b0575f80fd5b5061036760135481565b6060600380546108c990612285565b80601f01602080910402602001604051908101604052809291908181526020018280546108f590612285565b80156109405780601f1061091757610100808354040283529160200191610940565b820191905f5260205f20905b81548152906001019060200180831161092357829003601f168201915b5050505050905090565b5f3361095781858561127e565b60019150505b92915050565b5f336109708582856113a1565b61097b858585611419565b506001949350505050565b5f3361095781858561099883836111b1565b6109a291906122d1565b61127e565b6109af6119f6565b6109b85f611a50565b565b6109c26119f6565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b6109f46119f6565b60405147905f906001600160a01b0384169083908381818185875af1925050503d805f8114610a3e576040519150601f19603f3d011682016040523d82523d5f602084013e610a43565b606091505b5050905080610a50575f80fd5b604080516001600160a01b0385168152602081018490527f880c62f60b87bcecdbd0339c9e496ad52a7fd9a7e1830d9f99e7d55576d4302091015b60405180910390a1505050565b610aa06119f6565b6001600160a01b038116610b115760405162461bcd60e51b815260206004820152602d60248201527f5944523a2063616e277420626520736574207a65726f2061646472657373206160448201526c1cc81d19585b481dd85b1b195d609a1b60648201526084015b60405180910390fd5b600780546001600160a01b0319166001600160a01b038316179055610b3781600161108b565b6007546040516001600160a01b03918216918316907f588f332eb7ad06f37f67508e351c1d5ad37ce4c68f049a3379769a5adcabcde2905f90a350565b610b7c6119f6565b600a839055600b829055600c81905580610b9683856122d1565b610ba091906122d1565b60098190556101f41015610bef5760405162461bcd60e51b81526020600482015260166024820152754275792066656573206d757374206265203c3d20352560501b6044820152606401610b08565b60408051848152602081018490529081018290527faed0d156736b21d0b83dda2aac34286fe50c83a86597a0d72a344c95b467339190606001610a8b565b610c356119f6565b60078054821515600160a81b0260ff60a81b199091161790556040517f24d91f88b982da5ae65ce0a89cd3fbd6d253c5a12a5e908d9c9a3488c52bf25e90610c8290831515815260200190565b60405180910390a150565b6060600480546108c990612285565b610ca46119f6565b7f000000000000000000000000305d3b44678899b40ae64a36794ab927953ea2c56001600160a01b0316826001600160a01b031603610d4b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b08565b610d558282611aa1565b5050565b5f3381610d6682866111b1565b905083811015610dc65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b08565b61097b828686840361127e565b5f33610957818585611419565b5f610de96119f6565b6001821015610e585760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b08565b6101f4821115610ec85760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015274371018171a9812903a37ba30b61039bab838363c9760591b6064820152608401610b08565b60088290556040518281527ffb17af9463bea31b2a5588c437934535fe854df4abed1db9d2a6dca2f9257ec89060200160405180910390a1506001919050565b610f106119f6565b6001600160a01b038216610f665760405162461bcd60e51b815260206004820152601f60248201527f5944523a205f746f6b656e20616464726573732063616e6e6f742062652030006044820152606401610b08565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610faa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610fce91906122e4565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af115801561101e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061104291906122fb565b50604080516001600160a01b038086168252841660208201529081018290527fb19db1a0b0d787de4e1cfefb1be3882ee71a32c3c01ffe30f2d8eb95d997a2f090606001610a8b565b6110936119f6565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6110f96119f6565b600e839055600f82905560108190558061111383856122d1565b61111d91906122d1565b600d8190556101f410156111735760405162461bcd60e51b815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d2035250000000000000000006044820152606401610b08565b60408051848152602081018490529081018290527fc08afb56c6a46d3f5ea01e29278d7bf4db0099d590cf2a12b891b5d6b2b8953a90606001610a8b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f620186a06008546111ec60025490565b6111f69190612316565b611200919061232d565b905090565b61120d6119f6565b6001600160a01b0381166112725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b08565b61127b81611a50565b50565b6001600160a01b0383166112e05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b08565b6001600160a01b0382166113415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b08565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6113ac84846111b1565b90505f19811461141357818110156114065760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610b08565b611413848484840361127e565b50505050565b6001600160a01b03831661143f5760405162461bcd60e51b8152600401610b089061234c565b6001600160a01b0382166114655760405162461bcd60e51b8152600401610b0890612391565b805f0361147c5761147783835f611af4565b505050565b6001600160a01b0383165f9081526018602052604090205460ff1680156114bb57506001600160a01b0382165f9081526015602052604090205460ff16155b156115985760165481111561152a5760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b6064820152608401610b08565b6017546001600160a01b0383165f9081526020819052604090205461154f90836122d1565b11156115935760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b08565b6116cf565b6001600160a01b0382165f9081526018602052604090205460ff1680156115d757506001600160a01b0383165f9081526015602052604090205460ff16155b15611647576016548111156115935760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b6064820152608401610b08565b6001600160a01b0382165f9081526015602052604090205460ff166116cf576017546001600160a01b0383165f9081526020819052604090205461168b90836122d1565b11156116cf5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b08565b305f90815260208190526040812054906116e76111db565b82101590508080156117025750600754600160a81b900460ff165b80156117185750600754600160a01b900460ff16155b801561173c57506001600160a01b0385165f9081526018602052604090205460ff16155b801561176057506001600160a01b0385165f9081526014602052604090205460ff16155b801561178457506001600160a01b0384165f9081526014602052604090205460ff16155b156117b2576007805460ff60a01b1916600160a01b1790556117a4611c1c565b6007805460ff60a01b191690555b6007546001600160a01b0386165f9081526014602052604090205460ff600160a01b9092048216159116806117fe57506001600160a01b0385165f9081526014602052604090205460ff165b1561180657505f5b5f81156119e2576001600160a01b0386165f9081526018602052604090205460ff16801561183557505f600d54115b156118eb57612710600d548661184b9190612316565b611855919061232d565b9050600d54600f54826118689190612316565b611872919061232d565b60125f82825461188291906122d1565b9091555050600d546010546118979083612316565b6118a1919061232d565b60135f8282546118b191906122d1565b9091555050600d54600e546118c69083612316565b6118d0919061232d565b60115f8282546118e091906122d1565b909155506119c49050565b6001600160a01b0387165f9081526018602052604090205460ff16801561191357505f600954115b156119c457612710600954866119299190612316565b611933919061232d565b9050600954600b54826119469190612316565b611950919061232d565b60125f82825461196091906122d1565b9091555050600954600c546119759083612316565b61197f919061232d565b60135f82825461198f91906122d1565b9091555050600954600a546119a49083612316565b6119ae919061232d565b60115f8282546119be91906122d1565b90915550505b80156119d5576119d5873083611af4565b6119df81866123d4565b94505b6119ed878787611af4565b50505050505050565b6005546001600160a01b031633146109b85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b08565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b1a5760405162461bcd60e51b8152600401610b089061234c565b6001600160a01b038216611b405760405162461bcd60e51b8152600401610b0890612391565b6001600160a01b0383165f9081526020819052604090205481811015611bb75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b08565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611413565b305f9081526020819052604081205490505f601354601154601254611c4191906122d1565b611c4b91906122d1565b90505f821580611c59575081155b15611c6357505050565b611c6b6111db565b611c76906014612316565b831115611c9357611c856111db565b611c90906014612316565b92505b5f60028360125486611ca59190612316565b611caf919061232d565b611cb9919061232d565b90505f611cc682866123d4565b90508015611cd757611cd781611e9d565b60125447905f90611cea9060029061232d565b611cf490876123d4565b601154611d019084612316565b611d0b919061232d565b90505f6002601254611d1d919061232d565b611d2790886123d4565b601354611d349085612316565b611d3e919061232d565b90505f81611d4c84866123d4565b611d5691906123d4565b5f6012819055601181905560138190556007546040519293506001600160a01b031691849181818185875af1925050503d805f8114611db0576040519150601f19603f3d011682016040523d82523d5f602084013e611db5565b606091505b50909750508515801590611dc857505f81115b15611e1957611dd78682612018565b60408051868152602081018390529081018790527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15b478015611e91577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004015f604051808303818588803b158015611e79575f80fd5b505af1158015611e8b573d5f803e3d5ffd5b50505050505b50505050505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611ed057611ed06123e7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f7091906123fb565b81600181518110611f8357611f836123e7565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac94790611fe79085905f90869030904290600401612416565b5f604051808303815f87803b158015611ffe575f80fd5b505af1158015612010573d5f803e3d5ffd5b505050505050565b60065460405163f305d71960e01b8152306004820152602481018490525f6044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156120a4573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906120c99190612487565b5050505050565b5f602080835283518060208501525f5b818110156120fc578581018301518582016040015282016120e0565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461127b575f80fd5b5f8060408385031215612141575f80fd5b823561214c8161211c565b946020939093013593505050565b5f805f6060848603121561216c575f80fd5b83356121778161211c565b925060208401356121878161211c565b929592945050506040919091013590565b5f602082840312156121a8575f80fd5b81356121b38161211c565b9392505050565b801515811461127b575f80fd5b5f80604083850312156121d8575f80fd5b82356121e38161211c565b915060208301356121f3816121ba565b809150509250929050565b5f805f60608486031215612210575f80fd5b505081359360208301359350604090920135919050565b5f60208284031215612237575f80fd5b81356121b3816121ba565b5f60208284031215612252575f80fd5b5035919050565b5f806040838503121561226a575f80fd5b82356122758161211c565b915060208301356121f38161211c565b600181811c9082168061229957607f821691505b6020821081036122b757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561095d5761095d6122bd565b5f602082840312156122f4575f80fd5b5051919050565b5f6020828403121561230b575f80fd5b81516121b3816121ba565b808202811582820484141761095d5761095d6122bd565b5f8261234757634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561095d5761095d6122bd565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561240b575f80fd5b81516121b38161211c565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156124665784516001600160a01b031683529383019391830191600101612441565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612499575f80fd5b835192506020840151915060408401519050925092509256fea2646970667358221220d21b49690cddab92a5851835f23d72737b3038e770ec081d32a39450cdac469564736f6c63430008160033

Deployed Bytecode Sourcemap

24894:16245:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8561:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10921:201;;;;;;;;;;-1:-1:-1;10921:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10921:201:0;1023:187:1;25013:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;25013:51:0;1215:230:1;9690:108:0;;;;;;;;;;-1:-1:-1;9778:12:0;;9690:108;;;1596:25:1;;;1584:2;1569:18;9690:108:0;1450:177:1;26364:33:0;;;;;;;;;;;;;;;;11702:261;;;;;;;;;;-1:-1:-1;11702:261:0;;;;;:::i;:::-;;:::i;9532:93::-;;;;;;;;;;-1:-1:-1;9532:93:0;;9615:2;2235:36:1;;2223:2;2208:18;9532:93:0;2093:184:1;12372:238:0;;;;;;;;;;-1:-1:-1;12372:238:0;;;;;:::i;:::-;;:::i;25110:38::-;;;;;;;;;;;;;;;25537:26;;;;;;;;;;;;;;;;37296:126;;;;;;;;;;-1:-1:-1;37296:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;37386:28:0;37362:4;37386:28;;;:19;:28;;;;;;;;;37296:126;25314:25;;;;;;;;;;-1:-1:-1;25314:25:0;;;;-1:-1:-1;;;;;25314:25:0;;;25247:23;;;;;;;;;;-1:-1:-1;25247:23:0;;;;-1:-1:-1;;;;;25247:23:0;;;25940:28;;;;;;;;;;;;;;;;25419:30;;;;;;;;;;-1:-1:-1;25419:30:0;;;;-1:-1:-1;;;25419:30:0;;;;;;26022:29;;;;;;;;;;;;;;;;9861:127;;;;;;;;;;-1:-1:-1;9861:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9962:18:0;9935:7;9962:18;;;;;;;;;;;;9861:127;2533:103;;;;;;;;;;;;;:::i;:::-;;39897:138;;;;;;;;;;-1:-1:-1;39897:138:0;;;;;:::i;:::-;;:::i;40879:257::-;;;;;;;;;;-1:-1:-1;40879:257:0;;;;;:::i;:::-;;:::i;40081:296::-;;;;;;;;;;-1:-1:-1;40081:296:0;;;;;:::i;:::-;;:::i;26274:31::-;;;;;;;;;;;;;;;;38516:500;;;;;;;;;;-1:-1:-1;38516:500:0;;;;;:::i;:::-;;:::i;1892:87::-;;;;;;;;;;-1:-1:-1;1965:6:0;;-1:-1:-1;;;;;1965:6:0;1892:87;;38327:143;;;;;;;;;;-1:-1:-1;38327:143:0;;;;;:::i;:::-;;:::i;8780:104::-;;;;;;;;;;;;;:::i;30379:306::-;;;;;;;;;;-1:-1:-1;30379:306:0;;;;;:::i;:::-;;:::i;25860:25::-;;;;;;;;;;;;;;;;13113:436;;;;;;;;;;-1:-1:-1;13113:436:0;;;;;:::i;:::-;;:::i;10194:193::-;;;;;;;;;;-1:-1:-1;10194:193:0;;;;;:::i;:::-;;:::i;25185:29::-;;;;;;;;;;;;;;;26926:57;;;;;;;;;;-1:-1:-1;26926:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37702:483;;;;;;;;;;-1:-1:-1;37702:483:0;;;;;:::i;:::-;;:::i;40437:384::-;;;;;;;;;;-1:-1:-1;40437:384:0;;;;;:::i;:::-;;:::i;25697:28::-;;;;;;;;;;;;;;;;39639:182;;;;;;;;;;-1:-1:-1;39639:182:0;;;;;:::i;:::-;;:::i;39063:511::-;;;;;;;;;;-1:-1:-1;39063:511:0;;;;;:::i;:::-;;:::i;26784:29::-;;;;;;;;;;;;;;;;26685:57;;;;;;;;;;-1:-1:-1;26685:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26189:26;;;;;;;;;;;;;;;;25617:27;;;;;;;;;;;;;;;;10450:151;;;;;;;;;;-1:-1:-1;10450:151:0;;;;;:::i;:::-;;:::i;26564:51::-;;;;;;;;;;-1:-1:-1;26564:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37499:135;;;;;;;;;;;;;:::i;25780:30::-;;;;;;;;;;;;;;;;2791:201;;;;;;;;;;-1:-1:-1;2791:201:0;;;;;:::i;:::-;;:::i;26107:31::-;;;;;;;;;;;;;;;;26848:24;;;;;;;;;;;;;;;;26451:28;;;;;;;;;;;;;;;;8561:100;8615:13;8648:5;8641:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8561:100;:::o;10921:201::-;11004:4;681:10;11060:32;681:10;11076:7;11085:6;11060:8;:32::i;:::-;11110:4;11103:11;;;10921:201;;;;;:::o;11702:261::-;11799:4;681:10;11857:38;11873:4;681:10;11888:6;11857:15;:38::i;:::-;11906:27;11916:4;11922:2;11926:6;11906:9;:27::i;:::-;-1:-1:-1;11951:4:0;;11702:261;-1:-1:-1;;;;11702:261:0:o;12372:238::-;12460:4;681:10;12516:64;681:10;12532:7;12569:10;12541:25;681:10;12532:7;12541:9;:25::i;:::-;:38;;;;:::i;:::-;12516:8;:64::i;2533:103::-;1778:13;:11;:13::i;:::-;2598:30:::1;2625:1;2598:18;:30::i;:::-;2533:103::o:0;39897:138::-;1778:13;:11;:13::i;:::-;-1:-1:-1;;;;;39987:33:0;;;::::1;;::::0;;;:25:::1;:33;::::0;;;;:40;;-1:-1:-1;;39987:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39897:138::o;40879:257::-;1778:13;:11;:13::i;:::-;41020:31:::1;::::0;40969:21:::1;::::0;40951:15:::1;::::0;-1:-1:-1;;;;;41020:11:0;::::1;::::0;40969:21;;40951:15;41020:31;40951:15;41020:31;40969:21;41020:11;:31:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41001:50;;;41070:7;41062:16;;;::::0;::::1;;41094:34;::::0;;-1:-1:-1;;;;;5446:32:1;;5428:51;;5510:2;5495:18;;5488:34;;;41094::0::1;::::0;5401:18:1;41094:34:0::1;;;;;;;;40940:196;;40879:257:::0;:::o;40081:296::-;1778:13;:11;:13::i;:::-;-1:-1:-1;;;;;40164:23:0;::::1;40156:81;;;::::0;-1:-1:-1;;;40156:81:0;;5735:2:1;40156:81:0::1;::::0;::::1;5717:21:1::0;5774:2;5754:18;;;5747:30;5813:34;5793:18;;;5786:62;-1:-1:-1;;;5864:18:1;;;5857:43;5917:19;;40156:81:0::1;;;;;;;;;40248:10;:22:::0;;-1:-1:-1;;;;;;40248:22:0::1;-1:-1:-1::0;;;;;40248:22:0;::::1;;::::0;;40281:32:::1;40248:22:::0;-1:-1:-1;40281:15:0::1;:32::i;:::-;40358:10;::::0;40329:40:::1;::::0;-1:-1:-1;;;;;40358:10:0;;::::1;::::0;40329:40;::::1;::::0;::::1;::::0;40358:10:::1;::::0;40329:40:::1;40081:296:::0;:::o;38516:500::-;1778:13;:11;:13::i;:::-;38665::::1;:27:::0;;;38703:15:::1;:31:::0;;;38745:10:::1;:21:::0;;;38758:8;38805:44:::1;38721:13:::0;38681:11;38805:44:::1;:::i;:::-;:70;;;;:::i;:::-;38777:12;:98:::0;;;38910:3:::1;-1:-1:-1::0;38894:19:0::1;38886:54;;;::::0;-1:-1:-1;;;38886:54:0;;6149:2:1;38886:54:0::1;::::0;::::1;6131:21:1::0;6188:2;6168:18;;;6161:30;-1:-1:-1;;;6207:18:1;;;6200:52;6269:18;;38886:54:0::1;5947:346:1::0;38886:54:0::1;38956:52;::::0;;6500:25:1;;;6556:2;6541:18;;6534:34;;;6584:18;;;6577:34;;;38956:52:0::1;::::0;6488:2:1;6473:18;38956:52:0::1;6298:319:1::0;38327:143:0;1778:13;:11;:13::i;:::-;38398:11:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;38398:21:0::1;-1:-1:-1::0;;;;38398:21:0;;::::1;;::::0;;38435:27:::1;::::0;::::1;::::0;::::1;::::0;38412:7;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;38435:27:0::1;;;;;;;;38327:143:::0;:::o;8780:104::-;8836:13;8869:7;8862:14;;;;;:::i;30379:306::-;1778:13;:11;:13::i;:::-;30525::::1;-1:-1:-1::0;;;;;30517:21:0::1;:4;-1:-1:-1::0;;;;;30517:21:0::1;::::0;30495:128:::1;;;::::0;-1:-1:-1;;;30495:128:0;;6824:2:1;30495:128:0::1;::::0;::::1;6806:21:1::0;6863:2;6843:18;;;6836:30;6902:34;6882:18;;;6875:62;6973:27;6953:18;;;6946:55;7018:19;;30495:128:0::1;6622:421:1::0;30495:128:0::1;30636:41;30665:4;30671:5;30636:28;:41::i;:::-;30379:306:::0;;:::o;13113:436::-;13206:4;681:10;13206:4;13289:25;681:10;13306:7;13289:9;:25::i;:::-;13262:52;;13353:15;13333:16;:35;;13325:85;;;;-1:-1:-1;;;13325:85:0;;7250:2:1;13325:85:0;;;7232:21:1;7289:2;7269:18;;;7262:30;7328:34;7308:18;;;7301:62;-1:-1:-1;;;7379:18:1;;;7372:35;7424:19;;13325:85:0;7048:401:1;13325:85:0;13446:60;13455:5;13462:7;13490:15;13471:16;:34;13446:8;:60::i;10194:193::-;10273:4;681:10;10329:28;681:10;10346:2;10350:6;10329:9;:28::i;37702:483::-;37801:4;1778:13;:11;:13::i;:::-;37854:1:::1;37840:10;:15;;37818:118;;;::::0;-1:-1:-1;;;37818:118:0;;7656:2:1;37818:118:0::1;::::0;::::1;7638:21:1::0;7695:2;7675:18;;;7668:30;7734:34;7714:18;;;7707:62;-1:-1:-1;;;7785:18:1;;;7778:51;7846:19;;37818:118:0::1;7454:417:1::0;37818:118:0::1;37983:3;37969:10;:17;;37947:120;;;::::0;-1:-1:-1;;;37947:120:0;;8078:2:1;37947:120:0::1;::::0;::::1;8060:21:1::0;8117:2;8097:18;;;8090:30;8156:34;8136:18;;;8129:62;-1:-1:-1;;;8207:18:1;;;8200:51;8268:19;;37947:120:0::1;7876:417:1::0;37947:120:0::1;38078:11;:24:::0;;;38118:37:::1;::::0;1596:25:1;;;38118:37:0::1;::::0;1584:2:1;1569:18;38118:37:0::1;;;;;;;-1:-1:-1::0;38173:4:0::1;37702:483:::0;;;:::o;40437:384::-;1778:13;:11;:13::i;:::-;-1:-1:-1;;;;;40557:20:0;::::1;40549:64;;;::::0;-1:-1:-1;;;40549:64:0;;8500:2:1;40549:64:0::1;::::0;::::1;8482:21:1::0;8539:2;8519:18;;;8512:30;8578:33;8558:18;;;8551:61;8629:18;;40549:64:0::1;8298:355:1::0;40549:64:0::1;40651:39;::::0;-1:-1:-1;;;40651:39:0;;40684:4:::1;40651:39;::::0;::::1;1388:51:1::0;40624:24:0::1;::::0;-1:-1:-1;;;;;40651:24:0;::::1;::::0;::::1;::::0;1361:18:1;;40651:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40701:46;::::0;-1:-1:-1;;;40701:46:0;;-1:-1:-1;;;;;5446:32:1;;;40701:46:0::1;::::0;::::1;5428:51:1::0;5495:18;;;5488:34;;;40624:66:0;;-1:-1:-1;40701:23:0;;::::1;::::0;::::1;::::0;5401:18:1;;40701:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;40763:50:0::1;::::0;;-1:-1:-1;;;;;9355:15:1;;;9337:34;;9407:15;;9402:2;9387:18;;9380:43;9439:18;;;9432:34;;;40763:50:0::1;::::0;9287:2:1;9272:18;40763:50:0::1;9097:375:1::0;39639:182:0;1778:13;:11;:13::i;:::-;-1:-1:-1;;;;;39724:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;39724:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;39779:34;;1163:41:1;;;39779:34:0::1;::::0;1136:18:1;39779:34:0::1;;;;;;;39639:182:::0;;:::o;39063:511::-;1778:13;:11;:13::i;:::-;39213:14:::1;:28:::0;;;39252:16:::1;:32:::0;;;39295:11:::1;:22:::0;;;39309:8;39357:46:::1;39271:13:::0;39230:11;39357:46:::1;:::i;:::-;:73;;;;:::i;:::-;39328:13;:102:::0;;;39466:3:::1;-1:-1:-1::0;39449:20:0::1;39441:56;;;::::0;-1:-1:-1;;;39441:56:0;;9679:2:1;39441:56:0::1;::::0;::::1;9661:21:1::0;9718:2;9698:18;;;9691:30;9757:25;9737:18;;;9730:53;9800:18;;39441:56:0::1;9477:347:1::0;39441:56:0::1;39513:53;::::0;;6500:25:1;;;6556:2;6541:18;;6534:34;;;6584:18;;;6577:34;;;39513:53:0::1;::::0;6488:2:1;6473:18;39513:53:0::1;6298:319:1::0;10450:151:0;-1:-1:-1;;;;;10566:18:0;;;10539:7;10566:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10450:151::o;37499:135::-;37550:15;37620:6;37605:11;;37589:13;9778:12;;;9690:108;37589:13;:27;;;;:::i;:::-;37588:38;;;;:::i;:::-;37578:48;;37499:135;:::o;2791:201::-;1778:13;:11;:13::i;:::-;-1:-1:-1;;;;;2880:22:0;::::1;2872:73;;;::::0;-1:-1:-1;;;2872:73:0;;10426:2:1;2872:73:0::1;::::0;::::1;10408:21:1::0;10465:2;10445:18;;;10438:30;10504:34;10484:18;;;10477:62;-1:-1:-1;;;10555:18:1;;;10548:36;10601:19;;2872:73:0::1;10224:402:1::0;2872:73:0::1;2956:28;2975:8;2956:18;:28::i;:::-;2791:201:::0;:::o;17106:346::-;-1:-1:-1;;;;;17208:19:0;;17200:68;;;;-1:-1:-1;;;17200:68:0;;10833:2:1;17200:68:0;;;10815:21:1;10872:2;10852:18;;;10845:30;10911:34;10891:18;;;10884:62;-1:-1:-1;;;10962:18:1;;;10955:34;11006:19;;17200:68:0;10631:400:1;17200:68:0;-1:-1:-1;;;;;17287:21:0;;17279:68;;;;-1:-1:-1;;;17279:68:0;;11238:2:1;17279:68:0;;;11220:21:1;11277:2;11257:18;;;11250:30;11316:34;11296:18;;;11289:62;-1:-1:-1;;;11367:18:1;;;11360:32;11409:19;;17279:68:0;11036:398:1;17279:68:0;-1:-1:-1;;;;;17360:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17412:32;;1596:25:1;;;17412:32:0;;1569:18:1;17412:32:0;;;;;;;17106:346;;;:::o;17743:419::-;17844:24;17871:25;17881:5;17888:7;17871:9;:25::i;:::-;17844:52;;-1:-1:-1;;17911:16:0;:37;17907:248;;17993:6;17973:16;:26;;17965:68;;;;-1:-1:-1;;;17965:68:0;;11641:2:1;17965:68:0;;;11623:21:1;11680:2;11660:18;;;11653:30;11719:31;11699:18;;;11692:59;11768:18;;17965:68:0;11439:353:1;17965:68:0;18077:51;18086:5;18093:7;18121:6;18102:16;:25;18077:8;:51::i;:::-;17833:329;17743:419;;;:::o;31010:3129::-;-1:-1:-1;;;;;31142:18:0;;31134:68;;;;-1:-1:-1;;;31134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31221:16:0;;31213:64;;;;-1:-1:-1;;;31213:64:0;;;;;;;:::i;:::-;31294:6;31304:1;31294:11;31290:93;;31322:28;31338:4;31344:2;31348:1;31322:15;:28::i;:::-;31010:3129;;;:::o;31290:93::-;-1:-1:-1;;;;;31433:31:0;;;;;;:25;:31;;;;;;;;:78;;;;-1:-1:-1;;;;;;31482:29:0;;;;;;:25;:29;;;;;;;;31481:30;31433:78;31415:889;;;31574:14;;31564:6;:24;;31538:133;;;;-1:-1:-1;;;31538:133:0;;12809:2:1;31538:133:0;;;12791:21:1;12848:2;12828:18;;;12821:30;12887:34;12867:18;;;12860:62;-1:-1:-1;;;12938:18:1;;;12931:45;12993:19;;31538:133:0;12607:411:1;31538:133:0;31738:9;;-1:-1:-1;;;;;9962:18:0;;9935:7;9962:18;;;;;;;;;;;31712:22;;:6;:22;:::i;:::-;:35;;31686:116;;;;-1:-1:-1;;;31686:116:0;;13225:2:1;31686:116:0;;;13207:21:1;13264:2;13244:18;;;13237:30;-1:-1:-1;;;13283:18:1;;;13276:49;13342:18;;31686:116:0;13023:343:1;31686:116:0;31415:889;;;-1:-1:-1;;;;;31868:29:0;;;;;;:25;:29;;;;;;;;:78;;;;-1:-1:-1;;;;;;31915:31:0;;;;;;:25;:31;;;;;;;;31914:32;31868:78;31850:454;;;32009:14;;31999:6;:24;;31973:134;;;;-1:-1:-1;;;31973:134:0;;13573:2:1;31973:134:0;;;13555:21:1;13612:2;13592:18;;;13585:30;13651:34;13631:18;;;13624:62;-1:-1:-1;;;13702:18:1;;;13695:46;13758:19;;31973:134:0;13371:412:1;31850:454:0;-1:-1:-1;;;;;32130:29:0;;;;;;:25;:29;;;;;;;;32125:179;;32228:9;;-1:-1:-1;;;;;9962:18:0;;9935:7;9962:18;;;;;;;;;;;32202:22;;:6;:22;:::i;:::-;:35;;32176:116;;;;-1:-1:-1;;;32176:116:0;;13225:2:1;32176:116:0;;;13207:21:1;13264:2;13244:18;;;13237:30;-1:-1:-1;;;13283:18:1;;;13276:49;13342:18;;32176:116:0;13023:343:1;32176:116:0;32365:4;32316:28;9962:18;;;;;;;;;;;;32423:20;:18;:20::i;:::-;32399;:44;;32384:59;;32474:7;:35;;;;-1:-1:-1;32498:11:0;;-1:-1:-1;;;32498:11:0;;;;32474:35;:61;;;;-1:-1:-1;32527:8:0;;-1:-1:-1;;;32527:8:0;;;;32526:9;32474:61;:110;;;;-1:-1:-1;;;;;;32553:31:0;;;;;;:25;:31;;;;;;;;32552:32;32474:110;:153;;;;-1:-1:-1;;;;;;32602:25:0;;;;;;:19;:25;;;;;;;;32601:26;32474:153;:194;;;;-1:-1:-1;;;;;;32645:23:0;;;;;;:19;:23;;;;;;;;32644:24;32474:194;32456:326;;;32695:8;:15;;-1:-1:-1;;;;32695:15:0;-1:-1:-1;;;32695:15:0;;;32727:10;:8;:10::i;:::-;32754:8;:16;;-1:-1:-1;;;;32754:16:0;;;32456:326;32810:8;;-1:-1:-1;;;;;32920:25:0;;32794:12;32920:25;;;32810:8;32920:25;;;;;;32810:8;-1:-1:-1;;;32810:8:0;;;;;32809:9;;32920:25;;:52;;-1:-1:-1;;;;;;32949:23:0;;;;;;:19;:23;;;;;;;;32920:52;32916:100;;;-1:-1:-1;32999:5:0;32916:100;33028:12;33129:7;33125:961;;;-1:-1:-1;;;;;33181:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33230:1;33214:13;;:17;33181:50;33177:760;;;33286:5;33269:13;;33260:6;:22;;;;:::i;:::-;33259:32;;;;:::i;:::-;33252:39;;33360:13;;33340:16;;33333:4;:23;;;;:::i;:::-;33332:41;;;;:::i;:::-;33310:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;33432:13:0;;33417:11;;33410:18;;:4;:18;:::i;:::-;33409:36;;;;:::i;:::-;33392:13;;:53;;;;;;;:::i;:::-;;;;-1:-1:-1;;33510:13:0;;33492:14;;33485:21;;:4;:21;:::i;:::-;33484:39;;;;:::i;:::-;33464:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;33177:760:0;;-1:-1:-1;33177:760:0;;-1:-1:-1;;;;;33585:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;33635:1;33620:12;;:16;33585:51;33581:356;;;33690:5;33674:12;;33665:6;:21;;;;:::i;:::-;33664:31;;;;:::i;:::-;33657:38;;33763:12;;33744:15;;33737:4;:22;;;;:::i;:::-;33736:39;;;;:::i;:::-;33714:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33833:12:0;;33819:10;;33812:17;;:4;:17;:::i;:::-;33811:34;;;;:::i;:::-;33794:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;33909:12:0;;33892:13;;33885:20;;:4;:20;:::i;:::-;33884:37;;;;:::i;:::-;33864:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;33581:356:0;33957:8;;33953:91;;33986:42;34002:4;34016;34023;33986:15;:42::i;:::-;34060:14;34070:4;34060:14;;:::i;:::-;;;33125:961;34098:33;34114:4;34120:2;34124:6;34098:15;:33::i;:::-;31123:3016;;;;31010:3129;;;:::o;2057:132::-;1965:6;;-1:-1:-1;;;;;1965:6:0;681:10;2121:23;2113:68;;;;-1:-1:-1;;;2113:68:0;;14123:2:1;2113:68:0;;;14105:21:1;;;14142:18;;;14135:30;14201:34;14181:18;;;14174:62;14253:18;;2113:68:0;13921:356:1;3152:191:0;3245:6;;;-1:-1:-1;;;;;3262:17:0;;;-1:-1:-1;;;;;;3262:17:0;;;;;;;3295:40;;3245:6;;;3262:17;3245:6;;3295:40;;3226:16;;3295:40;3215:128;3152:191;:::o;30750:188::-;-1:-1:-1;;;;;30833:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;30833:39:0;;;;;;;;;;30890:40;;30833:39;;:31;30890:40;;;30750:188;;:::o;14019:806::-;-1:-1:-1;;;;;14116:18:0;;14108:68;;;;-1:-1:-1;;;14108:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14195:16:0;;14187:64;;;;-1:-1:-1;;;14187:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14337:15:0;;14315:19;14337:15;;;;;;;;;;;14371:21;;;;14363:72;;;;-1:-1:-1;;;14363:72:0;;14484:2:1;14363:72:0;;;14466:21:1;14523:2;14503:18;;;14496:30;14562:34;14542:18;;;14535:62;-1:-1:-1;;;14613:18:1;;;14606:36;14659:19;;14363:72:0;14282:402:1;14363:72:0;-1:-1:-1;;;;;14471:15:0;;;:9;:15;;;;;;;;;;;14489:20;;;14471:38;;14689:13;;;;;;;;;;:23;;;;;;14741:26;;1596:25:1;;;14689:13:0;;14741:26;;1569:18:1;14741:26:0;;;;;;;14780:37;31010:3129;35394:1807;35478:4;35434:23;9962:18;;;;;;;;;;;35434:50;;35495:25;35589:13;;35557:16;;35523:18;;:50;;;;:::i;:::-;:79;;;;:::i;:::-;35495:107;-1:-1:-1;35615:12:0;35644:20;;;:46;;-1:-1:-1;35668:22:0;;35644:46;35640:85;;;35707:7;;;35394:1807::o;35640:85::-;35759:20;:18;:20::i;:::-;:25;;35782:2;35759:25;:::i;:::-;35741:15;:43;35737:119;;;35819:20;:18;:20::i;:::-;:25;;35842:2;35819:25;:::i;:::-;35801:43;;35737:119;35917:23;36030:1;35997:17;35962:18;;35944:15;:36;;;;:::i;:::-;35943:71;;;;:::i;:::-;:88;;;;:::i;:::-;35917:114;-1:-1:-1;36044:26:0;36073:33;35917:114;36073:15;:33;:::i;:::-;36044:62;-1:-1:-1;36123:22:0;;36119:64;;36147:36;36164:18;36147:16;:36::i;:::-;36343:18;;36217:21;;36196:18;;36343:22;;36364:1;;36343:22;:::i;:::-;36323:42;;:17;:42;:::i;:::-;36289:16;;36276:29;;:10;:29;:::i;:::-;36275:91;;;;:::i;:::-;36251:115;;36379:18;36486:1;36465:18;;:22;;;;:::i;:::-;36445:42;;:17;:42;:::i;:::-;36414:13;;36401:26;;:10;:26;:::i;:::-;36400:88;;;;:::i;:::-;36379:109;-1:-1:-1;36501:23:0;36379:109;36527:39;36553:13;36527:10;:39;:::i;:::-;:65;;;;:::i;:::-;36626:1;36605:18;:22;;;36638:16;:20;;;36669:13;:17;;;36721:10;;36713:47;;36501:91;;-1:-1:-1;;;;;;36721:10:0;;36745;;36713:47;36626:1;36713:47;36745:10;36721;36713:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36699:61:0;;-1:-1:-1;;36777:19:0;;;;;:42;;;36818:1;36800:15;:19;36777:42;36773:275;;;36836:46;36849:15;36866;36836:12;:46::i;:::-;36902:134;;;6500:25:1;;;6556:2;6541:18;;6534:34;;;6584:18;;;6577:34;;;36902:134:0;;6488:2:1;6473:18;36902:134:0;;;;;;;36773:275;37079:21;37115:12;;37111:83;;37150:4;-1:-1:-1;;;;;37144:19:0;;37171:8;37144:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37111:83;35423:1778;;;;;;;;;;35394:1807::o;34280:515::-;34431:16;;;34445:1;34431:16;;;;;;;;34407:21;;34431:16;;;;;;;;;;-1:-1:-1;34431:16:0;34407:40;;34476:4;34458;34463:1;34458:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34458:23:0;;;-1:-1:-1;;;;;34458:23:0;;;;;34502:15;-1:-1:-1;;;;;34502:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34492:4;34497:1;34492:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34492:32:0;;;:7;;;;;;;;;:32;34563:224;;-1:-1:-1;;;34563:224:0;;:15;:66;;;;;;:224;;34644:11;;34670:1;;34714:4;;34741;;34761:15;;34563:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34336:459;34280:515;:::o;34916:373::-;35232:8;;35028:253;;-1:-1:-1;;;35028:253:0;;35100:4;35028:253;;;16535:34:1;16585:18;;;16578:34;;;35146:1:0;16628:18:1;;;16621:34;;;16671:18;;;16664:34;-1:-1:-1;;;;;35232:8:0;;;16714:19:1;;;16707:44;35255:15:0;16767:19:1;;;16760:35;35028:15:0;:31;;;;;;35067:9;;16469:19:1;;35028:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34916:373;;:::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;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:247::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2657:9;2644:23;2676:31;2701:5;2676:31;:::i;:::-;2726:5;2490:247;-1:-1:-1;;;2490:247:1:o;2742:118::-;2828:5;2821:13;2814:21;2807:5;2804:32;2794:60;;2850:1;2847;2840:12;2865:382;2930:6;2938;2991:2;2979:9;2970:7;2966:23;2962:32;2959:52;;;3007:1;3004;2997:12;2959:52;3046:9;3033:23;3065:31;3090:5;3065:31;:::i;:::-;3115:5;-1:-1:-1;3172:2:1;3157:18;;3144:32;3185:30;3144:32;3185:30;:::i;:::-;3234:7;3224:17;;;2865:382;;;;;:::o;3252:316::-;3329:6;3337;3345;3398:2;3386:9;3377:7;3373:23;3369:32;3366:52;;;3414:1;3411;3404:12;3366:52;-1:-1:-1;;3437:23:1;;;3507:2;3492:18;;3479:32;;-1:-1:-1;3558:2:1;3543:18;;;3530:32;;3252:316;-1:-1:-1;3252:316:1:o;3573:241::-;3629:6;3682:2;3670:9;3661:7;3657:23;3653:32;3650:52;;;3698:1;3695;3688:12;3650:52;3737:9;3724:23;3756:28;3778:5;3756:28;:::i;3819:180::-;3878:6;3931:2;3919:9;3910:7;3906:23;3902:32;3899:52;;;3947:1;3944;3937:12;3899:52;-1:-1:-1;3970:23:1;;3819:180;-1:-1:-1;3819:180:1:o;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;4782:127::-;4843:10;4838:3;4834:20;4831:1;4824:31;4874:4;4871:1;4864:15;4898:4;4895:1;4888:15;4914:125;4979:9;;;5000:10;;;4997:36;;;5013:18;;:::i;8658:184::-;8728:6;8781:2;8769:9;8760:7;8756:23;8752:32;8749:52;;;8797:1;8794;8787:12;8749:52;-1:-1:-1;8820:16:1;;8658:184;-1:-1:-1;8658:184:1:o;8847:245::-;8914:6;8967:2;8955:9;8946:7;8942:23;8938:32;8935:52;;;8983:1;8980;8973:12;8935:52;9015:9;9009:16;9034:28;9056:5;9034:28;:::i;9829:168::-;9902:9;;;9933;;9950:15;;;9944:22;;9930:37;9920:71;;9971:18;;:::i;10002:217::-;10042:1;10068;10058:132;;10112:10;10107:3;10103:20;10100:1;10093:31;10147:4;10144:1;10137:15;10175:4;10172:1;10165:15;10058:132;-1:-1:-1;10204:9:1;;10002:217::o;11797:401::-;11999:2;11981:21;;;12038:2;12018:18;;;12011:30;12077:34;12072:2;12057:18;;12050:62;-1:-1:-1;;;12143:2:1;12128:18;;12121:35;12188:3;12173:19;;11797:401::o;12203:399::-;12405:2;12387:21;;;12444:2;12424:18;;;12417:30;12483:34;12478:2;12463:18;;12456:62;-1:-1:-1;;;12549:2:1;12534:18;;12527:33;12592:3;12577:19;;12203:399::o;13788:128::-;13855:9;;;13876:11;;;13873:37;;;13890:18;;:::i;14821:127::-;14882:10;14877:3;14873:20;14870:1;14863:31;14913:4;14910:1;14903:15;14937:4;14934:1;14927:15;14953:251;15023:6;15076:2;15064:9;15055:7;15051:23;15047:32;15044:52;;;15092:1;15089;15082:12;15044:52;15124:9;15118:16;15143:31;15168:5;15143:31;:::i;15209:980::-;15471:4;15519:3;15508:9;15504:19;15550:6;15539:9;15532:25;15576:2;15614:6;15609:2;15598:9;15594:18;15587:34;15657:3;15652:2;15641:9;15637:18;15630:31;15681:6;15716;15710:13;15747:6;15739;15732:22;15785:3;15774:9;15770:19;15763:26;;15824:2;15816:6;15812:15;15798:29;;15845:1;15855:195;15869:6;15866:1;15863:13;15855:195;;;15934:13;;-1:-1:-1;;;;;15930:39:1;15918:52;;16025:15;;;;15990:12;;;;15966:1;15884:9;15855:195;;;-1:-1:-1;;;;;;;16106:32:1;;;;16101:2;16086:18;;16079:60;-1:-1:-1;;;16170:3:1;16155:19;16148:35;16067:3;15209:980;-1:-1:-1;;;15209:980:1:o;16806:306::-;16894:6;16902;16910;16963:2;16951:9;16942:7;16938:23;16934:32;16931:52;;;16979:1;16976;16969:12;16931:52;17008:9;17002:16;16992:26;;17058:2;17047:9;17043:18;17037:25;17027:35;;17102:2;17091:9;17087:18;17081:25;17071:35;;16806:306;;;;;:::o

Swarm Source

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