ETH Price: $3,249.48 (+2.46%)
Gas: 9 Gwei

Token

BetPool.ai (BPAI)
 

Overview

Max Total Supply

1,000,000,000 BPAI

Holders

420

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
106,212 BPAI

Value
$0.00
0x76DddF542db156B30C179e7eb6e80Dfc49D22fd9
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:
BPAI

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-05
*/

pragma solidity 0.8.25;

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

/// Uniswap factory interface
interface IFactory {
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}

/// Uniswap Router interface
interface IUniswapRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable;
}

/// @title BPAI
contract BPAI is ERC20, Ownable {
    /// @notice MAX SUPPLY 1 billion tokens
    uint256 private constant MAX_SUPPLY = 1_000_000_000 * 1e18;
    /// @notice max buy/sell per tx
    uint256 maxAmountPerTx = (MAX_SUPPLY * 3) / 100; // 3% of the supply
    /// @notice max  wallet amount
    uint256 maxWalletAmount = (MAX_SUPPLY * 5) / 100; // 5% of the supply
    /// @notice threhsold at which collected tax is swapped for ether
    uint256 swapTokensAtAmount = 10000 * 1e18;
    /// @notice liquidity wallet
    address public marketingWallet = address(0x75F445B1D5605914E50C1Ba1caF59F958f8257cc);
    /// @notice lp receiver wallet
    address public lpReceiverWallet = address(0x75F445B1D5605914E50C1Ba1caF59F958f8257cc);
    /// @notice team wallet
    address public teamWallet = address(0x75F445B1D5605914E50C1Ba1caF59F958f8257cc);

    /// @notice uniswapV2Router
    IUniswapRouter public immutable uniswapV2Router;
    /// @notice uniswapPair
    address public immutable uniswapPair;

    struct BuyFees {
       uint256 team;
       uint256 marketing;
       uint256 autoLP;
    } 

    struct SellFees {
       uint256 team;
       uint256 marketing;
       uint256 autoLP;
    } 
    /// @notice buyFee
    BuyFees public buyFee;
    /// @notice sellFee
    SellFees public sellFee;
    uint256 totalBuyFee;
    uint256 totalSellFee;
    
    /// @notice swapping status
    bool swapping = false;
    /// @notice manage exclude / incclude from fees
    mapping(address => bool) isExcludedFromFees;
    /// @notice manage amm pairs
    mapping(address => bool) isMarketPair;

    ///  errors
    error OnlyMarketingWallet();
    error MaxBuyPerTxExceeds();
    error MaxSellPerTxExceeds();
    error MinOnePercent();
    error EthClaimFailed();
    error ZeroAddress();
    error CannotModifyMainPair();
    error MaxTaxLimitExceeds();
    error CannotClaimNativeToken();

    constructor() ERC20("BetPool.ai", "BPAI") {
        uniswapV2Router = IUniswapRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D // uniswap v2 router
        );
        uniswapPair = IFactory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        isMarketPair[uniswapPair] = true;

        buyFee.team = 20; // 2%
        buyFee.marketing = 20; // 2%
        buyFee.autoLP = 10; // 1%

        totalBuyFee = 50; // 5%

        sellFee.team = 20; // 2%
        sellFee.marketing = 20; // 2%
        sellFee.autoLP = 10; // 1%
        totalSellFee = 50; // 5%

        isExcludedFromFees[owner()] = true;
        isExcludedFromFees[address(this)] = true;
        isExcludedFromFees[marketingWallet] = true;
        isExcludedFromFees[lpReceiverWallet] = true;
        _mint(msg.sender, MAX_SUPPLY);
    }

    receive() external payable {}

    /// @dev claim any erc20 token apart from native token, accidently sent to token contract
    /// @param token: token to rescue
    /// @param amount: amount to rescue
    /// Requirements -
    /// only marketing wallet can rescue stucked tokens
    function claimStuckedERC20(address token, uint256 amount) external {
        if (msg.sender != marketingWallet) {
            revert OnlyMarketingWallet();
        }
        if (token == address(this)){revert CannotClaimNativeToken();}
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = token.call(
            abi.encodeWithSelector(0xa9059cbb, marketingWallet, amount)
        );
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            "ERC20: TOKEN_CLAIM_FAILED"
        );
        
    }

    /// @dev claim stucked eth
    function claimStuckedEth(address wallet) external {
        if (msg.sender != marketingWallet) {
            revert OnlyMarketingWallet();
        }
        (bool sent, ) = wallet.call{value: address(this).balance}("");
        if (!sent) {
            revert EthClaimFailed();
        }
    }

    
    /// @notice update swap threshold at/after collected tax is swapped for eth
    /// @param tokens: no. of tokens
     function setSwapTokensAtAmount(uint256 tokens) external onlyOwner {
         uint256 amount = tokens * 1e18;
         if (amount > MAX_SUPPLY / 1000) {
             swapTokensAtAmount = MAX_SUPPLY / 1000;
         } else {
             swapTokensAtAmount = amount;
         }
   }

    /// @dev exclude or include a address from / to fees
    /// @param user: user address to exclude or include
    /// @param excluded: true to exclude, false to include
    function exlcudeFromFees(address user, bool excluded) external onlyOwner {
        isExcludedFromFees[user] = excluded;
    }

    /// @dev add or remove new pairs
    /// @param pair: new pair to be added or removed
    /// @param value: bool value
    function setMarketPair(address pair, bool value) external onlyOwner {
        if (pair == uniswapPair) {
            revert CannotModifyMainPair();
        }
        isMarketPair[pair] = value;
    }

    /// @dev update max buy/ sell  amount per tx globally
    /// @param _percent: pecent of total supply
    /// Requirements -
    /// must be 1 or more
    function updateMaxTxAmount(uint256 _percent) external onlyOwner {
        if (_percent < 1) {
            revert MinOnePercent();
        }
        maxAmountPerTx = (totalSupply() * _percent) / 100;
    }

    /// @dev update max wallet amount
    ///  /// @param _percent: pecent of total supply
    /// Requirements -
    /// must be 1 or more
    function updateMaxWalletAmount(uint256 _percent) external onlyOwner {
        if (_percent < 1) {
            revert MinOnePercent();
        }
        maxWalletAmount = (totalSupply() * _percent) / 100;
    }

    /// @dev update buy  tax globally
    /// @param _team: new  buy tax for team
    /// @param _market: new buy tax for marketing
    /// @param _autoLp: new buy tax for liquidity 
    /// MAX TAX LIMIT IS 6 PERCENT
    function updateBuyTax(uint256 _team, uint256 _market, uint256 _autoLp) external onlyOwner {
        if (_team + _market + _autoLp > 60) {
            revert MaxTaxLimitExceeds();
        }
        buyFee.team = _team;
        buyFee.marketing = _market;
        buyFee.autoLP = _autoLp;
        totalBuyFee = _team + _market + _autoLp;
    }

    /// @dev update sell  tax globally
    /// @param _team: new  sell tax for team
    /// @param _market: new sell tax for marketing
    /// @param _autoLp: new sell tax liquidity 
    /// MAX TAX LIMIT IS 6 PERCENT
    function updateSellTax(uint256 _team, uint256 _market, uint256 _autoLp) external onlyOwner {
        if (_team + _market + _autoLp > 60) {
            revert MaxTaxLimitExceeds();
        }
        sellFee.team = _team;
        sellFee.marketing = _market;
        sellFee.autoLP = _autoLp;
        totalSellFee = _team + _market + _autoLp;
    }

    

    /// @dev update fee wallet globally
    /// @param _marketingWallet: new tax wallet
    /// @param _teamWallet: new team wallet
    /// @param _lpWallet: new lp wallet
    function updateWallets(
        address _marketingWallet,
        address _teamWallet,
        address _lpWallet
    ) external onlyOwner {
        if (_marketingWallet == address(0) || _teamWallet == address(0)) {
            revert ZeroAddress();
        }
        marketingWallet = _marketingWallet;
        teamWallet = _teamWallet;
        lpReceiverWallet = _lpWallet;
    }

    /// @notice manage token transfer and fees
    ///         high fees is applicable for first 30 minutes from first buy
    ///         after 30 minutes / if owner reset fees earlier, will restore to 0/0
    /// @dev See {ERC20-_transfer}
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        bool takeFee = true;
        if (isExcludedFromFees[from] || isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fee;
            if (isMarketPair[from]) {
                if (amount > maxAmountPerTx) {
                    revert MaxBuyPerTxExceeds();
                }
               
                if (totalBuyFee > 0) {
                    fee = (amount * totalBuyFee) / 1000;
                    
                }
            } else if (isMarketPair[to]) {
                if (amount > maxAmountPerTx) {
                    revert MaxSellPerTxExceeds();
                }
                
                if (totalSellFee > 0) {
                    fee = (amount * totalSellFee) / 1000;
                    
                }
            }

            amount = amount - fee;

            if (fee > 0) {
                super._transfer(from, address(this), fee);
            }
        }
        uint256 contractBalance = balanceOf(address(this));

        bool canSwap = contractBalance >= swapTokensAtAmount &&
            !isMarketPair[from] &&
            (!isExcludedFromFees[from]) &&
            !swapping;
        if (canSwap) {
            swapping = true;
            swapAndLiquify(contractBalance);
            swapping = false;
        }

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

    /// @notice swap and liquify
    /// transfer collected tax to designated addresses as per there share
    function swapAndLiquify(uint256 amount) private {
        uint256 totalFees = totalBuyFee + totalSellFee;
        if(totalFees > 0){
        uint256 tokensForLP = (amount * (buyFee.autoLP + sellFee.autoLP)) / (totalFees);
        uint256 teamTokens = (amount * (buyFee.team + sellFee.team)) / (totalFees);
        uint256 lpHalf = tokensForLP / 2;
        uint256 tokensForSwap = amount - lpHalf;
        if (tokensForSwap > 0) {
            swapTokensForETH(tokensForSwap);
        }
        uint256 eth = address(this).balance;
        uint256 ethForTeam = (eth * teamTokens) / tokensForSwap;
        uint256 ethForLp = (eth * lpHalf) / tokensForSwap;
        bool sent;
        if (ethForTeam > 0) {
            (sent, ) = teamWallet.call{value: ethForTeam}("");
        }
        if (ethForLp > 0 && lpHalf > 0) {
            addLiquidity(ethForLp, lpHalf);
        }
        if (address(this).balance > 0) {
            (sent, ) = marketingWallet.call{value: address(this).balance}("");
        }
        } else {
            swapTokensForETH(amount);
            bool y;
            (y,) = marketingWallet.call{value: address(this).balance}("");

        }
        
    }

    /// @notice add lp with given tokens and eth
    function addLiquidity(uint256 eth, uint256 tokens) private {
        if (allowance(address(this), address(uniswapV2Router)) < tokens) {
            _approve(
                address(this),
                address(uniswapV2Router),
                type(uint256).max
            );
        }

        uniswapV2Router.addLiquidityETH{value: eth}(
            address(this),
            tokens,
            0,
            0,
            lpReceiverWallet,
            block.timestamp + 360
        );
    }

    ///@notice swap the tax tokens for eth and send to marketing wallet
    function swapTokensForETH(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> wbnb
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        if (allowance(address(this), address(uniswapV2Router)) < tokenAmount) {
            _approve(
                address(this),
                address(uniswapV2Router),
                type(uint256).max
            );
        }

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp + 360
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CannotClaimNativeToken","type":"error"},{"inputs":[],"name":"CannotModifyMainPair","type":"error"},{"inputs":[],"name":"EthClaimFailed","type":"error"},{"inputs":[],"name":"MaxBuyPerTxExceeds","type":"error"},{"inputs":[],"name":"MaxSellPerTxExceeds","type":"error"},{"inputs":[],"name":"MaxTaxLimitExceeds","type":"error"},{"inputs":[],"name":"MinOnePercent","type":"error"},{"inputs":[],"name":"OnlyMarketingWallet","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"team","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"autoLP","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimStuckedERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"claimStuckedEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exlcudeFromFees","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":[],"name":"lpReceiverWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellFee","outputs":[{"internalType":"uint256","name":"team","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"autoLP","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","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":"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":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_team","type":"uint256"},{"internalType":"uint256","name":"_market","type":"uint256"},{"internalType":"uint256","name":"_autoLp","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_team","type":"uint256"},{"internalType":"uint256","name":"_market","type":"uint256"},{"internalType":"uint256","name":"_autoLp","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_lpWallet","type":"address"}],"name":"updateWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052606461001d6b033b2e3c9fd0803ce8000000600361049b565b61002791906104b8565b60065560646100436b033b2e3c9fd0803ce8000000600561049b565b61004d91906104b8565b60075569021e19e0c9bab2400000600855600980547375f445b1d5605914e50c1ba1caf59f958f8257cc6001600160a01b03199182168117909255600a8054821683179055600b805490911690911790556014805460ff191690553480156100b3575f80fd5b506040518060400160405280600a815260200169426574506f6f6c2e616960b01b815250604051806040016040528060048152602001634250414960e01b8152508160039081610103919061056e565b506004610110828261056e565b50505061012961012461036c60201b60201c565b610370565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801561017c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101a0919061062d565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610211919061062d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801561025b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061027f919061062d565b6001600160a01b031660a08190525f908152601660205260408120805460ff191660019081179091556014600c819055600d819055600a600e81905560326012819055600f839055601092909255601155601355906015906102e96005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff199687161790553081526015909352818320805485166001908117909155600954821684528284208054861682179055600a54909116835291208054909216179055610367336b033b2e3c9fd0803ce80000006103c1565b61066d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b03821661041b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825461042c919061065a565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176104b2576104b2610487565b92915050565b5f826104d257634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806104ff57607f821691505b60208210810361051d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561048257805f5260205f20601f840160051c810160208510156105485750805b601f840160051c820191505b81811015610567575f8155600101610554565b5050505050565b81516001600160401b03811115610587576105876104d7565b61059b8161059584546104eb565b84610523565b602080601f8311600181146105ce575f84156105b75750858301515b5f19600386901b1c1916600185901b178555610625565b5f85815260208120601f198616915b828110156105fc578886015182559484019460019091019084016105dd565b508582101561061957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121561063d575f80fd5b81516001600160a01b0381168114610653575f80fd5b9392505050565b808201808211156104b2576104b2610487565b60805160a051611bbe6106c65f395f81816105ad0152610bf601525f8181610288015281816115840152818161163c0152818161166c0152818161169c015281816117210152818161175101526117840152611bbe5ff3fe6080604052600436106101d3575f3560e01c806370a08231116100fd578063a457c2d711610092578063c18bc19511610062578063c18bc1951461057d578063c816841b1461059c578063dd62ed3e146105cf578063f2fde38b146105ee575f80fd5b8063a457c2d714610501578063a9059cbb14610520578063afa4f3b21461053f578063c16dd4a41461055e575f80fd5b8063877b6eec116100cd578063877b6eec146104925780638da5cb5b146104b157806395d89b41146104ce578063a0a485ca146104e2575f80fd5b806370a082311461040c578063715018a61461044057806375f0a874146104545780637a20d3da14610473575f80fd5b806323b872dd116101735780633950935111610143578063395093511461039157806347062402146103b057806359927044146103ce5780636256d181146103ed575f80fd5b806323b872dd146102ff5780632b14ca561461031e5780632fb97b3714610357578063313ce56714610376575f80fd5b8063147c9f6d116101ae578063147c9f6d146102585780631694505e146102775780631706fbc5146102c257806318160ddd146102e1575f80fd5b806305f93650146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611844565b61060d565b005b34801561020a575f80fd5b50610213610677565b604051610220919061186d565b60405180910390f35b348015610234575f80fd5b506102486102433660046118b6565b610707565b6040519015158152602001610220565b348015610263575f80fd5b506101fd6102723660046118e0565b610720565b348015610282575f80fd5b506102aa7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610220565b3480156102cd575f80fd5b506101fd6102dc366004611935565b6107a2565b3480156102ec575f80fd5b506002545b604051908152602001610220565b34801561030a575f80fd5b5061024861031936600461196c565b6107d4565b348015610329575f80fd5b50600f5460105460115461033c92919083565b60408051938452602084019290925290820152606001610220565b348015610362575f80fd5b50600a546102aa906001600160a01b031681565b348015610381575f80fd5b5060405160128152602001610220565b34801561039c575f80fd5b506102486103ab3660046118b6565b6107f7565b3480156103bb575f80fd5b50600c54600d54600e5461033c92919083565b3480156103d9575f80fd5b50600b546102aa906001600160a01b031681565b3480156103f8575f80fd5b506101fd6104073660046119aa565b610818565b348015610417575f80fd5b506102f16104263660046119c1565b6001600160a01b03165f9081526020819052604090205490565b34801561044b575f80fd5b506101fd610868565b34801561045f575f80fd5b506009546102aa906001600160a01b031681565b34801561047e575f80fd5b506101fd61048d3660046118b6565b61087b565b34801561049d575f80fd5b506101fd6104ac3660046119c1565b6109ec565b3480156104bc575f80fd5b506005546001600160a01b03166102aa565b3480156104d9575f80fd5b50610213610a8b565b3480156104ed575f80fd5b506101fd6104fc366004611844565b610a9a565b34801561050c575f80fd5b5061024861051b3660046118b6565b610b04565b34801561052b575f80fd5b5061024861053a3660046118b6565b610b7e565b34801561054a575f80fd5b506101fd6105593660046119aa565b610b8b565b348015610569575f80fd5b506101fd610578366004611935565b610bec565b348015610588575f80fd5b506101fd6105973660046119aa565b610c70565b3480156105a7575f80fd5b506102aa7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105da575f80fd5b506102f16105e93660046119e3565b610cc0565b3480156105f9575f80fd5b506101fd6106083660046119c1565b610cea565b610615610d63565b603c816106228486611a23565b61062c9190611a23565b111561064b57604051634d26c46960e01b815260040160405180910390fd5b600f83905560108290556011819055806106658385611a23565b61066f9190611a23565b601355505050565b60606003805461068690611a36565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290611a36565b80156106fd5780601f106106d4576101008083540402835291602001916106fd565b820191905f5260205f20905b8154815290600101906020018083116106e057829003601f168201915b5050505050905090565b5f33610714818585610dbd565b60019150505b92915050565b610728610d63565b6001600160a01b038316158061074557506001600160a01b038216155b156107635760405163d92e233d60e01b815260040160405180910390fd5b600980546001600160a01b039485166001600160a01b031991821617909155600b805493851693821693909317909255600a8054919093169116179055565b6107aa610d63565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b5f336107e1858285610ee0565b6107ec858585610f52565b506001949350505050565b5f336107148185856108098383610cc0565b6108139190611a23565b610dbd565b610820610d63565b60018110156108425760405163f921e6df60e01b815260040160405180910390fd5b60648161084e60025490565b6108589190611a6e565b6108629190611a85565b60065550565b610870610d63565b6108795f611141565b565b6009546001600160a01b031633146108a65760405163e734c0b760e01b815260040160405180910390fd5b306001600160a01b038316036108cf576040516374e6759b60e11b815260040160405180910390fd5b600954604080516001600160a01b039283166024820152604480820185905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290515f9283929086169161092d9190611aa4565b5f604051808303815f865af19150503d805f8114610966576040519150601f19603f3d011682016040523d82523d5f602084013e61096b565b606091505b50915091508180156109955750805115806109955750808060200190518101906109959190611aba565b6109e65760405162461bcd60e51b815260206004820152601960248201527f45524332303a20544f4b454e5f434c41494d5f4641494c45440000000000000060448201526064015b60405180910390fd5b50505050565b6009546001600160a01b03163314610a175760405163e734c0b760e01b815260040160405180910390fd5b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610a60576040519150601f19603f3d011682016040523d82523d5f602084013e610a65565b606091505b5050905080610a8757604051631b9cb44960e31b815260040160405180910390fd5b5050565b60606004805461068690611a36565b610aa2610d63565b603c81610aaf8486611a23565b610ab99190611a23565b1115610ad857604051634d26c46960e01b815260040160405180910390fd5b600c839055600d829055600e81905580610af28385611a23565b610afc9190611a23565b601255505050565b5f3381610b118286610cc0565b905083811015610b715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109dd565b6107ec8286868403610dbd565b5f33610714818585610f52565b610b93610d63565b5f610ba682670de0b6b3a7640000611a6e565b9050610bc06103e86b033b2e3c9fd0803ce8000000611a85565b811115610be657610bdf6103e86b033b2e3c9fd0803ce8000000611a85565b6008555050565b60085550565b610bf4610d63565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c46576040516308d5fb9f60e41b815260040160405180910390fd5b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b610c78610d63565b6001811015610c9a5760405163f921e6df60e01b815260040160405180910390fd5b606481610ca660025490565b610cb09190611a6e565b610cba9190611a85565b60075550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610cf2610d63565b6001600160a01b038116610d575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109dd565b610d6081611141565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dd565b6001600160a01b038316610e1f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109dd565b6001600160a01b038216610e805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610eeb8484610cc0565b90505f1981146109e65781811015610f455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109dd565b6109e68484848403610dbd565b6001600160a01b0383165f9081526015602052604090205460019060ff1680610f9257506001600160a01b0383165f9081526015602052604090205460ff165b15610f9a57505f5b8015611096576001600160a01b0384165f9081526016602052604081205460ff161561100e57600654831115610fe35760405163acdd04e360e01b815260040160405180910390fd5b60125415611009576103e860125484610ffc9190611a6e565b6110069190611a85565b90505b611077565b6001600160a01b0384165f9081526016602052604090205460ff16156110775760065483111561105157604051630992619960e31b815260040160405180910390fd5b60135415611077576103e86013548461106a9190611a6e565b6110749190611a85565b90505b6110818184611ad5565b9250801561109457611094853083611192565b505b305f9081526020819052604081205490505f60085482101580156110d257506001600160a01b0386165f9081526016602052604090205460ff16155b80156110f657506001600160a01b0386165f9081526015602052604090205460ff16155b8015611105575060145460ff16155b9050801561112e576014805460ff1916600117905561112382611334565b6014805460ff191690555b611139868686611192565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166111f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109dd565b6001600160a01b0382166112585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109dd565b6001600160a01b0383165f90815260208190526040902054818110156112cf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109dd565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109e6565b5f6013546012546113459190611a23565b905080156114dc57601154600e545f9183916113619190611a23565b61136b9085611a6e565b6113759190611a85565b600f54600c549192505f91849161138b91611a23565b6113959086611a6e565b61139f9190611a85565b90505f6113ad600284611a85565b90505f6113ba8287611ad5565b905080156113cb576113cb8161152f565b475f826113d88684611a6e565b6113e29190611a85565b90505f836113f08685611a6e565b6113fa9190611a85565b90505f821561145857600b546040516001600160a01b039091169084905f81818185875af1925050503d805f811461144d576040519150601f19603f3d011682016040523d82523d5f602084013e611452565b606091505b50909150505b5f8211801561146657505f86115b1561147557611475828761171a565b47156114d0576009546040516001600160a01b039091169047905f81818185875af1925050503d805f81146114c5576040519150601f19603f3d011682016040523d82523d5f602084013e6114ca565b606091505b50909150505b50505050505050505050565b6114e58261152f565b6009546040515f916001600160a01b03169047908381818185875af1925050503d805f8114611139576040519150601f19603f3d011682016040523d82523d5f602084013e611139565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061156257611562611ae8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116029190611afc565b8160018151811061161557611615611ae8565b60200260200101906001600160a01b031690816001600160a01b03168152505081611660307f0000000000000000000000000000000000000000000000000000000000000000610cc0565b101561169257611692307f00000000000000000000000000000000000000000000000000000000000000005f19610dbd565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663791ac947835f84306116d142610168611a23565b6040518663ffffffff1660e01b81526004016116f1959493929190611b17565b5f604051808303815f87803b158015611708575f80fd5b505af1158015611139573d5f803e3d5ffd5b80611745307f0000000000000000000000000000000000000000000000000000000000000000610cc0565b101561177757611777307f00000000000000000000000000000000000000000000000000000000000000005f19610dbd565b600a546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169163f305d719918591309186915f918291166117c342610168611a23565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c4015f604051808303818588803b158015611829575f80fd5b505af115801561183b573d5f803e3d5ffd5b50505050505050565b5f805f60608486031215611856575f80fd5b505081359360208301359350604090920135919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d60575f80fd5b5f80604083850312156118c7575f80fd5b82356118d2816118a2565b946020939093013593505050565b5f805f606084860312156118f2575f80fd5b83356118fd816118a2565b9250602084013561190d816118a2565b9150604084013561191d816118a2565b809150509250925092565b8015158114610d60575f80fd5b5f8060408385031215611946575f80fd5b8235611951816118a2565b9150602083013561196181611928565b809150509250929050565b5f805f6060848603121561197e575f80fd5b8335611989816118a2565b92506020840135611999816118a2565b929592945050506040919091013590565b5f602082840312156119ba575f80fd5b5035919050565b5f602082840312156119d1575f80fd5b81356119dc816118a2565b9392505050565b5f80604083850312156119f4575f80fd5b82356119ff816118a2565b91506020830135611961816118a2565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071a5761071a611a0f565b600181811c90821680611a4a57607f821691505b602082108103611a6857634e487b7160e01b5f52602260045260245ffd5b50919050565b808202811582820484141761071a5761071a611a0f565b5f82611a9f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f82518060208501845e5f920191825250919050565b5f60208284031215611aca575f80fd5b81516119dc81611928565b8181038181111561071a5761071a611a0f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b0c575f80fd5b81516119dc816118a2565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611b675784516001600160a01b031683529383019391830191600101611b42565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a73c035f4a0426abb26e9d3e1c8bfa622b42a6ce83cfaae554e3472fff74cfbc64736f6c63430008190033

Deployed Bytecode

0x6080604052600436106101d3575f3560e01c806370a08231116100fd578063a457c2d711610092578063c18bc19511610062578063c18bc1951461057d578063c816841b1461059c578063dd62ed3e146105cf578063f2fde38b146105ee575f80fd5b8063a457c2d714610501578063a9059cbb14610520578063afa4f3b21461053f578063c16dd4a41461055e575f80fd5b8063877b6eec116100cd578063877b6eec146104925780638da5cb5b146104b157806395d89b41146104ce578063a0a485ca146104e2575f80fd5b806370a082311461040c578063715018a61461044057806375f0a874146104545780637a20d3da14610473575f80fd5b806323b872dd116101735780633950935111610143578063395093511461039157806347062402146103b057806359927044146103ce5780636256d181146103ed575f80fd5b806323b872dd146102ff5780632b14ca561461031e5780632fb97b3714610357578063313ce56714610376575f80fd5b8063147c9f6d116101ae578063147c9f6d146102585780631694505e146102775780631706fbc5146102c257806318160ddd146102e1575f80fd5b806305f93650146101de57806306fdde03146101ff578063095ea7b314610229575f80fd5b366101da57005b5f80fd5b3480156101e9575f80fd5b506101fd6101f8366004611844565b61060d565b005b34801561020a575f80fd5b50610213610677565b604051610220919061186d565b60405180910390f35b348015610234575f80fd5b506102486102433660046118b6565b610707565b6040519015158152602001610220565b348015610263575f80fd5b506101fd6102723660046118e0565b610720565b348015610282575f80fd5b506102aa7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610220565b3480156102cd575f80fd5b506101fd6102dc366004611935565b6107a2565b3480156102ec575f80fd5b506002545b604051908152602001610220565b34801561030a575f80fd5b5061024861031936600461196c565b6107d4565b348015610329575f80fd5b50600f5460105460115461033c92919083565b60408051938452602084019290925290820152606001610220565b348015610362575f80fd5b50600a546102aa906001600160a01b031681565b348015610381575f80fd5b5060405160128152602001610220565b34801561039c575f80fd5b506102486103ab3660046118b6565b6107f7565b3480156103bb575f80fd5b50600c54600d54600e5461033c92919083565b3480156103d9575f80fd5b50600b546102aa906001600160a01b031681565b3480156103f8575f80fd5b506101fd6104073660046119aa565b610818565b348015610417575f80fd5b506102f16104263660046119c1565b6001600160a01b03165f9081526020819052604090205490565b34801561044b575f80fd5b506101fd610868565b34801561045f575f80fd5b506009546102aa906001600160a01b031681565b34801561047e575f80fd5b506101fd61048d3660046118b6565b61087b565b34801561049d575f80fd5b506101fd6104ac3660046119c1565b6109ec565b3480156104bc575f80fd5b506005546001600160a01b03166102aa565b3480156104d9575f80fd5b50610213610a8b565b3480156104ed575f80fd5b506101fd6104fc366004611844565b610a9a565b34801561050c575f80fd5b5061024861051b3660046118b6565b610b04565b34801561052b575f80fd5b5061024861053a3660046118b6565b610b7e565b34801561054a575f80fd5b506101fd6105593660046119aa565b610b8b565b348015610569575f80fd5b506101fd610578366004611935565b610bec565b348015610588575f80fd5b506101fd6105973660046119aa565b610c70565b3480156105a7575f80fd5b506102aa7f00000000000000000000000030d19051c66d525e985df2de339ccda302d23f3281565b3480156105da575f80fd5b506102f16105e93660046119e3565b610cc0565b3480156105f9575f80fd5b506101fd6106083660046119c1565b610cea565b610615610d63565b603c816106228486611a23565b61062c9190611a23565b111561064b57604051634d26c46960e01b815260040160405180910390fd5b600f83905560108290556011819055806106658385611a23565b61066f9190611a23565b601355505050565b60606003805461068690611a36565b80601f01602080910402602001604051908101604052809291908181526020018280546106b290611a36565b80156106fd5780601f106106d4576101008083540402835291602001916106fd565b820191905f5260205f20905b8154815290600101906020018083116106e057829003601f168201915b5050505050905090565b5f33610714818585610dbd565b60019150505b92915050565b610728610d63565b6001600160a01b038316158061074557506001600160a01b038216155b156107635760405163d92e233d60e01b815260040160405180910390fd5b600980546001600160a01b039485166001600160a01b031991821617909155600b805493851693821693909317909255600a8054919093169116179055565b6107aa610d63565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b5f336107e1858285610ee0565b6107ec858585610f52565b506001949350505050565b5f336107148185856108098383610cc0565b6108139190611a23565b610dbd565b610820610d63565b60018110156108425760405163f921e6df60e01b815260040160405180910390fd5b60648161084e60025490565b6108589190611a6e565b6108629190611a85565b60065550565b610870610d63565b6108795f611141565b565b6009546001600160a01b031633146108a65760405163e734c0b760e01b815260040160405180910390fd5b306001600160a01b038316036108cf576040516374e6759b60e11b815260040160405180910390fd5b600954604080516001600160a01b039283166024820152604480820185905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b17905290515f9283929086169161092d9190611aa4565b5f604051808303815f865af19150503d805f8114610966576040519150601f19603f3d011682016040523d82523d5f602084013e61096b565b606091505b50915091508180156109955750805115806109955750808060200190518101906109959190611aba565b6109e65760405162461bcd60e51b815260206004820152601960248201527f45524332303a20544f4b454e5f434c41494d5f4641494c45440000000000000060448201526064015b60405180910390fd5b50505050565b6009546001600160a01b03163314610a175760405163e734c0b760e01b815260040160405180910390fd5b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610a60576040519150601f19603f3d011682016040523d82523d5f602084013e610a65565b606091505b5050905080610a8757604051631b9cb44960e31b815260040160405180910390fd5b5050565b60606004805461068690611a36565b610aa2610d63565b603c81610aaf8486611a23565b610ab99190611a23565b1115610ad857604051634d26c46960e01b815260040160405180910390fd5b600c839055600d829055600e81905580610af28385611a23565b610afc9190611a23565b601255505050565b5f3381610b118286610cc0565b905083811015610b715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109dd565b6107ec8286868403610dbd565b5f33610714818585610f52565b610b93610d63565b5f610ba682670de0b6b3a7640000611a6e565b9050610bc06103e86b033b2e3c9fd0803ce8000000611a85565b811115610be657610bdf6103e86b033b2e3c9fd0803ce8000000611a85565b6008555050565b60085550565b610bf4610d63565b7f00000000000000000000000030d19051c66d525e985df2de339ccda302d23f326001600160a01b0316826001600160a01b031603610c46576040516308d5fb9f60e41b815260040160405180910390fd5b6001600160a01b03919091165f908152601660205260409020805460ff1916911515919091179055565b610c78610d63565b6001811015610c9a5760405163f921e6df60e01b815260040160405180910390fd5b606481610ca660025490565b610cb09190611a6e565b610cba9190611a85565b60075550565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610cf2610d63565b6001600160a01b038116610d575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109dd565b610d6081611141565b50565b6005546001600160a01b031633146108795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109dd565b6001600160a01b038316610e1f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109dd565b6001600160a01b038216610e805760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109dd565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f610eeb8484610cc0565b90505f1981146109e65781811015610f455760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109dd565b6109e68484848403610dbd565b6001600160a01b0383165f9081526015602052604090205460019060ff1680610f9257506001600160a01b0383165f9081526015602052604090205460ff165b15610f9a57505f5b8015611096576001600160a01b0384165f9081526016602052604081205460ff161561100e57600654831115610fe35760405163acdd04e360e01b815260040160405180910390fd5b60125415611009576103e860125484610ffc9190611a6e565b6110069190611a85565b90505b611077565b6001600160a01b0384165f9081526016602052604090205460ff16156110775760065483111561105157604051630992619960e31b815260040160405180910390fd5b60135415611077576103e86013548461106a9190611a6e565b6110749190611a85565b90505b6110818184611ad5565b9250801561109457611094853083611192565b505b305f9081526020819052604081205490505f60085482101580156110d257506001600160a01b0386165f9081526016602052604090205460ff16155b80156110f657506001600160a01b0386165f9081526015602052604090205460ff16155b8015611105575060145460ff16155b9050801561112e576014805460ff1916600117905561112382611334565b6014805460ff191690555b611139868686611192565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166111f65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109dd565b6001600160a01b0382166112585760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109dd565b6001600160a01b0383165f90815260208190526040902054818110156112cf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109dd565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109e6565b5f6013546012546113459190611a23565b905080156114dc57601154600e545f9183916113619190611a23565b61136b9085611a6e565b6113759190611a85565b600f54600c549192505f91849161138b91611a23565b6113959086611a6e565b61139f9190611a85565b90505f6113ad600284611a85565b90505f6113ba8287611ad5565b905080156113cb576113cb8161152f565b475f826113d88684611a6e565b6113e29190611a85565b90505f836113f08685611a6e565b6113fa9190611a85565b90505f821561145857600b546040516001600160a01b039091169084905f81818185875af1925050503d805f811461144d576040519150601f19603f3d011682016040523d82523d5f602084013e611452565b606091505b50909150505b5f8211801561146657505f86115b1561147557611475828761171a565b47156114d0576009546040516001600160a01b039091169047905f81818185875af1925050503d805f81146114c5576040519150601f19603f3d011682016040523d82523d5f602084013e6114ca565b606091505b50909150505b50505050505050505050565b6114e58261152f565b6009546040515f916001600160a01b03169047908381818185875af1925050503d805f8114611139576040519150601f19603f3d011682016040523d82523d5f602084013e611139565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061156257611562611ae8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116029190611afc565b8160018151811061161557611615611ae8565b60200260200101906001600160a01b031690816001600160a01b03168152505081611660307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610cc0565b101561169257611692307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f19610dbd565b6001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac947835f84306116d142610168611a23565b6040518663ffffffff1660e01b81526004016116f1959493929190611b17565b5f604051808303815f87803b158015611708575f80fd5b505af1158015611139573d5f803e3d5ffd5b80611745307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610cc0565b101561177757611777307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f19610dbd565b600a546001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169163f305d719918591309186915f918291166117c342610168611a23565b60405160e089901b6001600160e01b03191681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c4015f604051808303818588803b158015611829575f80fd5b505af115801561183b573d5f803e3d5ffd5b50505050505050565b5f805f60608486031215611856575f80fd5b505081359360208301359350604090920135919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114610d60575f80fd5b5f80604083850312156118c7575f80fd5b82356118d2816118a2565b946020939093013593505050565b5f805f606084860312156118f2575f80fd5b83356118fd816118a2565b9250602084013561190d816118a2565b9150604084013561191d816118a2565b809150509250925092565b8015158114610d60575f80fd5b5f8060408385031215611946575f80fd5b8235611951816118a2565b9150602083013561196181611928565b809150509250929050565b5f805f6060848603121561197e575f80fd5b8335611989816118a2565b92506020840135611999816118a2565b929592945050506040919091013590565b5f602082840312156119ba575f80fd5b5035919050565b5f602082840312156119d1575f80fd5b81356119dc816118a2565b9392505050565b5f80604083850312156119f4575f80fd5b82356119ff816118a2565b91506020830135611961816118a2565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561071a5761071a611a0f565b600181811c90821680611a4a57607f821691505b602082108103611a6857634e487b7160e01b5f52602260045260245ffd5b50919050565b808202811582820484141761071a5761071a611a0f565b5f82611a9f57634e487b7160e01b5f52601260045260245ffd5b500490565b5f82518060208501845e5f920191825250919050565b5f60208284031215611aca575f80fd5b81516119dc81611928565b8181038181111561071a5761071a611a0f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b0c575f80fd5b81516119dc816118a2565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611b675784516001600160a01b031683529383019391830191600101611b42565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a73c035f4a0426abb26e9d3e1c8bfa622b42a6ce83cfaae554e3472fff74cfbc64736f6c63430008190033

Deployed Bytecode Sourcemap

21040:12170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27767:354;;;;;;;;;;-1:-1:-1;27767:354:0;;;;;:::i;:::-;;:::i;:::-;;8511:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11012:242;;;;;;;;;;-1:-1:-1;11012:242:0;;;;;:::i;:::-;;:::i;:::-;;;1379:14:1;;1372:22;1354:41;;1342:2;1327:18;11012:242:0;1214:187:1;28313:391:0;;;;;;;;;;-1:-1:-1;28313:391:0;;;;;:::i;:::-;;:::i;21933:47::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2126:32:1;;;2108:51;;2096:2;2081:18;21933:47:0;1940:225:1;25749:127:0;;;;;;;;;;-1:-1:-1;25749:127:0;;;;;:::i;:::-;;:::i;9640:108::-;;;;;;;;;;-1:-1:-1;9728:12:0;;9640:108;;;2826:25:1;;;2814:2;2799:18;9640:108:0;2680:177:1;11834:295:0;;;;;;;;;;-1:-1:-1;11834:295:0;;;;;:::i;:::-;;:::i;22347:23::-;;;;;;;;;;-1:-1:-1;22347:23:0;;;;;;;;;;;;;;;;3525:25:1;;;3581:2;3566:18;;3559:34;;;;3609:18;;;3602:34;3513:2;3498:18;22347:23:0;3323:319:1;21691:85:0;;;;;;;;;;-1:-1:-1;21691:85:0;;;;-1:-1:-1;;;;;21691:85:0;;;9482:93;;;;;;;;;;-1:-1:-1;9482:93:0;;9565:2;3997:36:1;;3985:2;3970:18;9482:93:0;3855:184:1;12538:270:0;;;;;;;;;;-1:-1:-1;12538:270:0;;;;;:::i;:::-;;:::i;22294:21::-;;;;;;;;;;-1:-1:-1;22294:21:0;;;;;;;;;;;;21812:79;;;;;;;;;;-1:-1:-1;21812:79:0;;;;-1:-1:-1;;;;;21812:79:0;;;26381:209;;;;;;;;;;-1:-1:-1;26381:209:0;;;;;:::i;:::-;;:::i;9811:177::-;;;;;;;;;;-1:-1:-1;9811:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;9962:18:0;9930:7;9962:18;;;;;;;;;;;;9811:177;2524:103;;;;;;;;;;;;;:::i;21564:84::-;;;;;;;;;;-1:-1:-1;21564:84:0;;;;-1:-1:-1;;;;;21564:84:0;;;24196:608;;;;;;;;;;-1:-1:-1;24196:608:0;;;;;:::i;:::-;;:::i;24844:301::-;;;;;;;;;;-1:-1:-1;24844:301:0;;;;;:::i;:::-;;:::i;1883:87::-;;;;;;;;;;-1:-1:-1;1956:6:0;;-1:-1:-1;;;;;1956:6:0;1883:87;;8730:104;;;;;;;;;;;;;:::i;27187:349::-;;;;;;;;;;-1:-1:-1;27187:349:0;;;;;:::i;:::-;;:::i;13311:505::-;;;;;;;;;;-1:-1:-1;13311:505:0;;;;;:::i;:::-;;:::i;10194:234::-;;;;;;;;;;-1:-1:-1;10194:234:0;;;;;:::i;:::-;;:::i;25279:287::-;;;;;;;;;;-1:-1:-1;25279:287:0;;;;;:::i;:::-;;:::i;26010:204::-;;;;;;;;;;-1:-1:-1;26010:204:0;;;;;:::i;:::-;;:::i;26742:214::-;;;;;;;;;;-1:-1:-1;26742:214:0;;;;;:::i;:::-;;:::i;22016:36::-;;;;;;;;;;;;;;;10491:201;;;;;;;;;;-1:-1:-1;10491:201:0;;;;;:::i;:::-;;:::i;2782:238::-;;;;;;;;;;-1:-1:-1;2782:238:0;;;;;:::i;:::-;;:::i;27767:354::-;1769:13;:11;:13::i;:::-;27901:2:::1;27891:7:::0;27873:15:::1;27881:7:::0;27873:5;:15:::1;:::i;:::-;:25;;;;:::i;:::-;:30;27869:90;;;27927:20;;-1:-1:-1::0;;;27927:20:0::1;;;;;;;;;;;27869:90;27969:7;:20:::0;;;28000:17;:27;;;28038:14;:24;;;28055:7;28088:15:::1;28020:7:::0;27984:5;28088:15:::1;:::i;:::-;:25;;;;:::i;:::-;28073:12;:40:::0;-1:-1:-1;;;27767:354:0:o;8511:100::-;8565:13;8598:5;8591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8511:100;:::o;11012:242::-;11131:4;647:10;11192:32;647:10;11208:7;11217:6;11192:8;:32::i;:::-;11242:4;11235:11;;;11012:242;;;;;:::o;28313:391::-;1769:13;:11;:13::i;:::-;-1:-1:-1;;;;;28470:30:0;::::1;::::0;;:59:::1;;-1:-1:-1::0;;;;;;28504:25:0;::::1;::::0;28470:59:::1;28466:112;;;28553:13;;-1:-1:-1::0;;;28553:13:0::1;;;;;;;;;;;28466:112;28588:15;:34:::0;;-1:-1:-1;;;;;28588:34:0;;::::1;-1:-1:-1::0;;;;;;28588:34:0;;::::1;;::::0;;;28633:10:::1;:24:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;28668:16:::1;:28:::0;;;;;::::1;::::0;::::1;;::::0;;28313:391::o;25749:127::-;1769:13;:11;:13::i;:::-;-1:-1:-1;;;;;25833:24:0;;;::::1;;::::0;;;:18:::1;:24;::::0;;;;:35;;-1:-1:-1;;25833:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25749:127::o;11834:295::-;11965:4;647:10;12023:38;12039:4;647:10;12054:6;12023:15;:38::i;:::-;12072:27;12082:4;12088:2;12092:6;12072:9;:27::i;:::-;-1:-1:-1;12117:4:0;;11834:295;-1:-1:-1;;;;11834:295:0:o;12538:270::-;12653:4;647:10;12714:64;647:10;12730:7;12767:10;12739:25;647:10;12730:7;12739:9;:25::i;:::-;:38;;;;:::i;:::-;12714:8;:64::i;26381:209::-;1769:13;:11;:13::i;:::-;26471:1:::1;26460:8;:12;26456:67;;;26496:15;;-1:-1:-1::0;;;26496:15:0::1;;;;;;;;;;;26456:67;26579:3;26567:8;26551:13;9728:12:::0;;;9640:108;26551:13:::1;:24;;;;:::i;:::-;26550:32;;;;:::i;:::-;26533:14;:49:::0;-1:-1:-1;26381:209:0:o;2524:103::-;1769:13;:11;:13::i;:::-;2589:30:::1;2616:1;2589:18;:30::i;:::-;2524:103::o:0;24196:608::-;24292:15;;-1:-1:-1;;;;;24292:15:0;24278:10;:29;24274:90;;24331:21;;-1:-1:-1;;;24331:21:0;;;;;;;;;;;24274:90;24395:4;-1:-1:-1;;;;;24378:22:0;;;24374:61;;24409:24;;-1:-1:-1;;;24409:24:0;;;;;;;;;;;24374:61;24608:15;;24573:59;;;-1:-1:-1;;;;;24608:15:0;;;24573:59;;;6090:51:1;6157:18;;;;6150:34;;;24573:59:0;;;;;;;;;;6063:18:1;;;;24573:59:0;;;;;;;-1:-1:-1;;;;;24573:59:0;-1:-1:-1;;;24573:59:0;;;24548:95;;-1:-1:-1;;;;24548:10:0;;;;:95;;24573:59;24548:95;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24512:131;;;;24676:7;:57;;;;-1:-1:-1;24688:11:0;;:16;;:44;;;24719:4;24708:24;;;;;;;;;;;;:::i;:::-;24654:132;;;;-1:-1:-1;;;24654:132:0;;6953:2:1;24654:132:0;;;6935:21:1;6992:2;6972:18;;;6965:30;7031:27;7011:18;;;7004:55;7076:18;;24654:132:0;;;;;;;;;24263:541;;24196:608;;:::o;24844:301::-;24923:15;;-1:-1:-1;;;;;24923:15:0;24909:10;:29;24905:90;;24962:21;;-1:-1:-1;;;24962:21:0;;;;;;;;;;;24905:90;25006:9;25021:6;-1:-1:-1;;;;;25021:11:0;25040:21;25021:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25005:61;;;25082:4;25077:61;;25110:16;;-1:-1:-1;;;25110:16:0;;;;;;;;;;;25077:61;24894:251;24844:301;:::o;8730:104::-;8786:13;8819:7;8812:14;;;;;:::i;27187:349::-;1769:13;:11;:13::i;:::-;27320:2:::1;27310:7:::0;27292:15:::1;27300:7:::0;27292:5;:15:::1;:::i;:::-;:25;;;;:::i;:::-;:30;27288:90;;;27346:20;;-1:-1:-1::0;;;27346:20:0::1;;;;;;;;;;;27288:90;27388:6;:19:::0;;;27418:16;:26;;;27455:13;:23;;;27471:7;27503:15:::1;27437:7:::0;27402:5;27503:15:::1;:::i;:::-;:25;;;;:::i;:::-;27489:11;:39:::0;-1:-1:-1;;;27187:349:0:o;13311:505::-;13431:4;647:10;13431:4;13519:25;647:10;13536:7;13519:9;:25::i;:::-;13492:52;;13597:15;13577:16;:35;;13555:122;;;;-1:-1:-1;;;13555:122:0;;7517:2:1;13555:122:0;;;7499:21:1;7556:2;7536:18;;;7529:30;7595:34;7575:18;;;7568:62;-1:-1:-1;;;7646:18:1;;;7639:35;7691:19;;13555:122:0;7315:401:1;13555:122:0;13713:60;13722:5;13729:7;13757:15;13738:16;:34;13713:8;:60::i;10194:234::-;10309:4;647:10;10370:28;647:10;10387:2;10391:6;10370:9;:28::i;25279:287::-;1769:13;:11;:13::i;:::-;25357:14:::1;25374:13;:6:::0;25383:4:::1;25374:13;:::i;:::-;25357:30:::0;-1:-1:-1;25412:17:0::1;25425:4;21162:20;25412:17;:::i;:::-;25403:6;:26;25399:161;;;25468:17;25481:4;21162:20;25468:17;:::i;:::-;25447:18;:38:::0;24894:251;24844:301;:::o;25399:161::-:1;25520:18;:27:::0;-1:-1:-1;25279:287:0:o;26010:204::-;1769:13;:11;:13::i;:::-;26101:11:::1;-1:-1:-1::0;;;;;26093:19:0::1;:4;-1:-1:-1::0;;;;;26093:19:0::1;::::0;26089:81:::1;;26136:22;;-1:-1:-1::0;;;26136:22:0::1;;;;;;;;;;;26089:81;-1:-1:-1::0;;;;;26180:18:0;;;::::1;;::::0;;;:12:::1;:18;::::0;;;;:26;;-1:-1:-1;;26180:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26010:204::o;26742:214::-;1769:13;:11;:13::i;:::-;26836:1:::1;26825:8;:12;26821:67;;;26861:15;;-1:-1:-1::0;;;26861:15:0::1;;;;;;;;;;;26821:67;26945:3;26933:8;26917:13;9728:12:::0;;;9640:108;26917:13:::1;:24;;;;:::i;:::-;26916:32;;;;:::i;:::-;26898:15;:50:::0;-1:-1:-1;26742:214:0:o;10491:201::-;-1:-1:-1;;;;;10657:18:0;;;10625:7;10657:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10491:201::o;2782:238::-;1769:13;:11;:13::i;:::-;-1:-1:-1;;;;;2885:22:0;::::1;2863:110;;;::::0;-1:-1:-1;;;2863:110:0;;7923:2:1;2863:110:0::1;::::0;::::1;7905:21:1::0;7962:2;7942:18;;;7935:30;8001:34;7981:18;;;7974:62;-1:-1:-1;;;8052:18:1;;;8045:36;8098:19;;2863:110:0::1;7721:402:1::0;2863:110:0::1;2984:28;3003:8;2984:18;:28::i;:::-;2782:238:::0;:::o;2048:132::-;1956:6;;-1:-1:-1;;;;;1956:6:0;647:10;2112:23;2104:68;;;;-1:-1:-1;;;2104:68:0;;8330:2:1;2104:68:0;;;8312:21:1;;;8349:18;;;8342:30;8408:34;8388:18;;;8381:62;8460:18;;2104:68:0;8128:356:1;17444:380:0;-1:-1:-1;;;;;17580:19:0;;17572:68;;;;-1:-1:-1;;;17572:68:0;;8691:2:1;17572:68:0;;;8673:21:1;8730:2;8710:18;;;8703:30;8769:34;8749:18;;;8742:62;-1:-1:-1;;;8820:18:1;;;8813:34;8864:19;;17572:68:0;8489:400:1;17572:68:0;-1:-1:-1;;;;;17659:21:0;;17651:68;;;;-1:-1:-1;;;17651:68:0;;9096:2:1;17651:68:0;;;9078:21:1;9135:2;9115:18;;;9108:30;9174:34;9154:18;;;9147:62;-1:-1:-1;;;9225:18:1;;;9218:32;9267:19;;17651:68:0;8894:398:1;17651:68:0;-1:-1:-1;;;;;17732:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17784:32;;2826:25:1;;;17784:32:0;;2799:18:1;17784:32:0;;;;;;;17444:380;;;:::o;18115:502::-;18250:24;18277:25;18287:5;18294:7;18277:9;:25::i;:::-;18250:52;;-1:-1:-1;;18317:16:0;:37;18313:297;;18417:6;18397:16;:26;;18371:117;;;;-1:-1:-1;;;18371:117:0;;9499:2:1;18371:117:0;;;9481:21:1;9538:2;9518:18;;;9511:30;9577:31;9557:18;;;9550:59;9626:18;;18371:117:0;9297:353:1;18371:117:0;18532:51;18541:5;18548:7;18576:6;18557:16;:25;18532:8;:51::i;28958:1533::-;-1:-1:-1;;;;;29116:24:0;;29082:12;29116:24;;;:18;:24;;;;;;29097:4;;29116:24;;;:50;;-1:-1:-1;;;;;;29144:22:0;;;;;;:18;:22;;;;;;;;29116:50;29112:98;;;-1:-1:-1;29193:5:0;29112:98;29226:7;29222:842;;;-1:-1:-1;;;;;29280:18:0;;29250:11;29280:18;;;:12;:18;;;;;;;;29276:634;;;29332:14;;29323:6;:23;29319:99;;;29378:20;;-1:-1:-1;;;29378:20:0;;;;;;;;;;;29319:99;29457:11;;:15;29453:121;;29528:4;29513:11;;29504:6;:20;;;;:::i;:::-;29503:29;;;;:::i;:::-;29497:35;;29453:121;29276:634;;;-1:-1:-1;;;;;29599:16:0;;;;;;:12;:16;;;;;;;;29595:315;;;29649:14;;29640:6;:23;29636:100;;;29695:21;;-1:-1:-1;;;29695:21:0;;;;;;;;;;;29636:100;29776:12;;:16;29772:123;;29849:4;29833:12;;29824:6;:21;;;;:::i;:::-;29823:30;;;;:::i;:::-;29817:36;;29772:123;29935:12;29944:3;29935:6;:12;:::i;:::-;29926:21;-1:-1:-1;29968:7:0;;29964:89;;29996:41;30012:4;30026;30033:3;29996:15;:41::i;:::-;29235:829;29222:842;30118:4;30074:23;9962:18;;;;;;;;;;;30074:50;;30137:12;30171:18;;30152:15;:37;;:73;;;;-1:-1:-1;;;;;;30207:18:0;;;;;;:12;:18;;;;;;;;30206:19;30152:73;:117;;;;-1:-1:-1;;;;;;30244:24:0;;;;;;:18;:24;;;;;;;;30243:25;30152:117;:143;;;;-1:-1:-1;30287:8:0;;;;30286:9;30152:143;30137:158;;30310:7;30306:132;;;30334:8;:15;;-1:-1:-1;;30334:15:0;30345:4;30334:15;;;30364:31;30379:15;30364:14;:31::i;:::-;30410:8;:16;;-1:-1:-1;;30410:16:0;;;30306:132;30450:33;30466:4;30472:2;30476:6;30450:15;:33::i;:::-;29071:1420;;;28958:1533;;;:::o;3180:191::-;3273:6;;;-1:-1:-1;;;;;3290:17:0;;;-1:-1:-1;;;;;;3290:17:0;;;;;;;3323:40;;3273:6;;;3290:17;3273:6;;3323:40;;3254:16;;3323:40;3243:128;3180:191;:::o;14286:877::-;-1:-1:-1;;;;;14417:18:0;;14409:68;;;;-1:-1:-1;;;14409:68:0;;9990:2:1;14409:68:0;;;9972:21:1;10029:2;10009:18;;;10002:30;10068:34;10048:18;;;10041:62;-1:-1:-1;;;10119:18:1;;;10112:35;10164:19;;14409:68:0;9788:401:1;14409:68:0;-1:-1:-1;;;;;14496:16:0;;14488:64;;;;-1:-1:-1;;;14488:64:0;;10396:2:1;14488:64:0;;;10378:21:1;10435:2;10415:18;;;10408:30;10474:34;10454:18;;;10447:62;-1:-1:-1;;;10525:18:1;;;10518:33;10568:19;;14488:64:0;10194:399:1;14488:64:0;-1:-1:-1;;;;;14638:15:0;;14616:19;14638:15;;;;;;;;;;;14686:21;;;;14664:109;;;;-1:-1:-1;;;14664:109:0;;10800:2:1;14664:109:0;;;10782:21:1;10839:2;10819:18;;;10812:30;10878:34;10858:18;;;10851:62;-1:-1:-1;;;10929:18:1;;;10922:36;10975:19;;14664:109:0;10598:402:1;14664:109:0;-1:-1:-1;;;;;14809:15:0;;;:9;:15;;;;;;;;;;;14827:20;;;14809:38;;15027:13;;;;;;;;;;:23;;;;;;15079:26;;2826:25:1;;;15027:13:0;;15079:26;;2799:18:1;15079:26:0;;;;;;;15118:37;19217:125;30608:1207;30667:17;30701:12;;30687:11;;:26;;;;:::i;:::-;30667:46;-1:-1:-1;30727:13:0;;30724:1074;;30801:14;;30785:13;;30752:19;;30821:9;;30785:30;;30801:14;30785:30;:::i;:::-;30775:41;;:6;:41;:::i;:::-;30774:57;;;;:::i;:::-;30888:7;:12;30874:6;:11;30752:79;;-1:-1:-1;30842:18:0;;30906:9;;30874:26;;;:::i;:::-;30864:37;;:6;:37;:::i;:::-;30863:53;;;;:::i;:::-;30842:74;-1:-1:-1;30927:14:0;30944:15;30958:1;30944:11;:15;:::i;:::-;30927:32;-1:-1:-1;30970:21:0;30994:15;30927:32;30994:6;:15;:::i;:::-;30970:39;-1:-1:-1;31024:17:0;;31020:81;;31058:31;31075:13;31058:16;:31::i;:::-;31125:21;31111:11;31199:13;31179:16;31185:10;31125:21;31179:16;:::i;:::-;31178:34;;;;:::i;:::-;31157:55;-1:-1:-1;31223:16:0;31259:13;31243:12;31249:6;31243:3;:12;:::i;:::-;31242:30;;;;:::i;:::-;31223:49;-1:-1:-1;31283:9:0;31307:14;;31303:96;;31349:10;;:38;;-1:-1:-1;;;;;31349:10:0;;;;31372;;31349:38;;;;31372:10;31349;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31338:49:0;;-1:-1:-1;;31303:96:0;31424:1;31413:8;:12;:26;;;;;31438:1;31429:6;:10;31413:26;31409:89;;;31456:30;31469:8;31479:6;31456:12;:30::i;:::-;31512:21;:25;31508:123;;31565:15;;:54;;-1:-1:-1;;;;;31565:15:0;;;;31593:21;;31565:54;;;;31593:21;31565:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31554:65:0;;-1:-1:-1;;31508:123:0;30741:901;;;;;;;;24894:251;24844:301;:::o;30724:1074::-;31663:24;31680:6;31663:16;:24::i;:::-;31730:15;;:54;;31702:6;;-1:-1:-1;;;;;31730:15:0;;31758:21;;31702:6;31730:54;31702:6;31730:54;31758:21;31730:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32472:735;32622:16;;;32636:1;32622:16;;;;;;;;32598:21;;32622:16;;;;;;;;;;-1:-1:-1;32622:16:0;32598:40;;32667:4;32649;32654:1;32649:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;32649:23:0;;;-1:-1:-1;;;;;32649:23:0;;;;;32693:15;-1:-1:-1;;;;;32693:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32683:4;32688:1;32683:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;32683:32:0;;;-1:-1:-1;;;;;32683:32:0;;;;;32785:11;32732:50;32750:4;32765:15;32732:9;:50::i;:::-;:64;32728:231;;;32813:134;32848:4;32880:15;-1:-1:-1;;32813:8:0;:134::i;:::-;-1:-1:-1;;;;;32997:15:0;:66;;33078:11;33104:1;33120:4;33147;33167:21;:15;33185:3;33167:21;:::i;:::-;32997:202;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31873:518;32000:6;31947:50;31965:4;31980:15;31947:9;:50::i;:::-;:59;31943:226;;;32023:134;32058:4;32090:15;-1:-1:-1;;32023:8:0;:134::i;:::-;32320:16;;-1:-1:-1;;;;;32181:15:0;:31;;;;;32220:3;;32247:4;;32267:6;;32288:1;;;;32320:16;32351:21;:15;32369:3;32351:21;:::i;:::-;32181:202;;;;;;-1:-1:-1;;;;;;32181:202:0;;;-1:-1:-1;;;;;12869:15:1;;;32181:202:0;;;12851:34:1;12901:18;;;12894:34;;;;12944:18;;;12937:34;;;;12987:18;;;12980:34;;;;13051:15;;;13030:19;;;13023:44;13083:19;;;13076:35;;;;12785:19;;32181:202:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31873:518;;:::o;14:316:1:-;91:6;99;107;160:2;148:9;139:7;135:23;131:32;128:52;;;176:1;173;166:12;128:52;-1:-1:-1;;199:23:1;;;269:2;254:18;;241:32;;-1:-1:-1;320:2:1;305:18;;;292:32;;14:316;-1:-1:-1;14:316:1:o;335:418::-;484:2;473:9;466:21;447:4;516:6;510:13;559:6;554:2;543:9;539:18;532:34;618:6;613:2;605:6;601:15;596:2;585:9;581:18;575:50;674:1;669:2;660:6;649:9;645:22;641:31;634:42;744:2;737;733:7;728:2;720:6;716:15;712:29;701:9;697:45;693:54;685:62;;;335:418;;;;:::o;758:131::-;-1:-1:-1;;;;;833:31:1;;823:42;;813:70;;879:1;876;869:12;894:315;962:6;970;1023:2;1011:9;1002:7;998:23;994:32;991:52;;;1039:1;1036;1029:12;991:52;1078:9;1065:23;1097:31;1122:5;1097:31;:::i;:::-;1147:5;1199:2;1184:18;;;;1171:32;;-1:-1:-1;;;894:315:1:o;1406:529::-;1483:6;1491;1499;1552:2;1540:9;1531:7;1527:23;1523:32;1520:52;;;1568:1;1565;1558:12;1520:52;1607:9;1594:23;1626:31;1651:5;1626:31;:::i;:::-;1676:5;-1:-1:-1;1733:2:1;1718:18;;1705:32;1746:33;1705:32;1746:33;:::i;:::-;1798:7;-1:-1:-1;1857:2:1;1842:18;;1829:32;1870:33;1829:32;1870:33;:::i;:::-;1922:7;1912:17;;;1406:529;;;;;:::o;2170:118::-;2256:5;2249:13;2242:21;2235:5;2232:32;2222:60;;2278:1;2275;2268:12;2293:382;2358:6;2366;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;2474:9;2461:23;2493:31;2518:5;2493:31;:::i;:::-;2543:5;-1:-1:-1;2600:2:1;2585:18;;2572:32;2613:30;2572:32;2613:30;:::i;:::-;2662:7;2652:17;;;2293:382;;;;;:::o;2862:456::-;2939:6;2947;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3063:9;3050:23;3082:31;3107:5;3082:31;:::i;:::-;3132:5;-1:-1:-1;3189:2:1;3174:18;;3161:32;3202:33;3161:32;3202:33;:::i;:::-;2862:456;;3254:7;;-1:-1:-1;;;3308:2:1;3293:18;;;;3280:32;;2862:456::o;4044:180::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;-1:-1:-1;4195:23:1;;4044:180;-1:-1:-1;4044:180:1:o;4229:247::-;4288:6;4341:2;4329:9;4320:7;4316:23;4312:32;4309:52;;;4357:1;4354;4347:12;4309:52;4396:9;4383:23;4415:31;4440:5;4415:31;:::i;:::-;4465:5;4229:247;-1:-1:-1;;;4229:247:1:o;4481:388::-;4549:6;4557;4610:2;4598:9;4589:7;4585:23;4581:32;4578:52;;;4626:1;4623;4616:12;4578:52;4665:9;4652:23;4684:31;4709:5;4684:31;:::i;:::-;4734:5;-1:-1:-1;4791:2:1;4776:18;;4763:32;4804:33;4763:32;4804:33;:::i;4874:127::-;4935:10;4930:3;4926:20;4923:1;4916:31;4966:4;4963:1;4956:15;4990:4;4987:1;4980:15;5006:125;5071:9;;;5092:10;;;5089:36;;;5105:18;;:::i;5136:380::-;5215:1;5211:12;;;;5258;;;5279:61;;5333:4;5325:6;5321:17;5311:27;;5279:61;5386:2;5378:6;5375:14;5355:18;5352:38;5349:161;;5432:10;5427:3;5423:20;5420:1;5413:31;5467:4;5464:1;5457:15;5495:4;5492:1;5485:15;5349:161;;5136:380;;;:::o;5521:168::-;5594:9;;;5625;;5642:15;;;5636:22;;5622:37;5612:71;;5663:18;;:::i;5694:217::-;5734:1;5760;5750:132;;5804:10;5799:3;5795:20;5792:1;5785:31;5839:4;5836:1;5829:15;5867:4;5864:1;5857:15;5750:132;-1:-1:-1;5896:9:1;;5694:217::o;6195:301::-;6324:3;6362:6;6356:13;6408:6;6401:4;6393:6;6389:17;6384:3;6378:37;6470:1;6434:16;;6459:13;;;-1:-1:-1;6434:16:1;6195:301;-1:-1:-1;6195:301:1:o;6501:245::-;6568:6;6621:2;6609:9;6600:7;6596:23;6592:32;6589:52;;;6637:1;6634;6627:12;6589:52;6669:9;6663:16;6688:28;6710:5;6688:28;:::i;9655:128::-;9722:9;;;9743:11;;;9740:37;;;9757:18;;:::i;11137:127::-;11198:10;11193:3;11189:20;11186:1;11179:31;11229:4;11226:1;11219:15;11253:4;11250:1;11243:15;11269:251;11339:6;11392:2;11380:9;11371:7;11367:23;11363:32;11360:52;;;11408:1;11405;11398:12;11360:52;11440:9;11434:16;11459:31;11484:5;11459:31;:::i;11525:980::-;11787:4;11835:3;11824:9;11820:19;11866:6;11855:9;11848:25;11892:2;11930:6;11925:2;11914:9;11910:18;11903:34;11973:3;11968:2;11957:9;11953:18;11946:31;11997:6;12032;12026:13;12063:6;12055;12048:22;12101:3;12090:9;12086:19;12079:26;;12140:2;12132:6;12128:15;12114:29;;12161:1;12171:195;12185:6;12182:1;12179:13;12171:195;;;12250:13;;-1:-1:-1;;;;;12246:39:1;12234:52;;12341:15;;;;12306:12;;;;12282:1;12200:9;12171:195;;;-1:-1:-1;;;;;;;12422:32:1;;;;12417:2;12402:18;;12395:60;-1:-1:-1;;;12486:3:1;12471:19;12464:35;12383:3;11525:980;-1:-1:-1;;;11525:980:1:o

Swarm Source

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