ETH Price: $3,385.70 (-1.51%)
Gas: 2 Gwei

Token

ETHBTC (ETHBTC)
 

Overview

Max Total Supply

1,000,000,000 ETHBTC

Holders

181

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,693,293.938743067150504947 ETHBTC

Value
$0.00
0x77F875b8BBdB4B22e3ec75408EfE34f42D686A22
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:
ethbtc

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 10 : ethbtc.sol
// SPDX-License-Identifier: MIT

// t.me/ETHBTCERC20
// https://www.ethbtc.pro/

pragma solidity ^0.8.20;

import "../openzeppelin/token/ERC20/ERC20.sol";
import "../openzeppelin/access/Ownable.sol";

import "../uniswap/IUniswapV2Router02.sol";
import "../uniswap/IUniswapV2Factory.sol";

contract ethbtc is ERC20, Ownable(msg.sender) {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    uint128 public launchBlock;
    uint128 public antibotPeriod;
    address public constant DEAD_ADDRESS = address(0xdead);

    address public teamWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint16 public buyTotalFees;
    uint16 public buyTeamFeePct;

    uint16 public sellTotalFees;
    uint16 public sellTeamFeePct;

    uint256 public tokensForTeam;

    bool private _swapping;
    bool public limitsInEffect = true;
    bool public blacklistRenounced = false;
    address[] private grosMichel;

    mapping(address => bool) _blacklisted;
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public isExcludedMaxTransactionAmount;

    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

    constructor(IUniswapV2Router02 _uniswapRouter, address[] memory _musas) 
                ERC20("ETHBTC", "ETHBTC") {

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

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

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply * 150 / 10000; 
        maxWallet = totalSupply * 150 / 10000; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyTeamFeePct = 100;
        buyTotalFees = 1;

        sellTeamFeePct = 100;
        sellTotalFees = 1;

        teamWallet = owner();

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

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

        grosMichel = _musas;

        _mint(address(this), totalSupply);
    }

    receive() external payable {}

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        buyTotalFees = 0;
        sellTotalFees = 0;
        return true;
    }

    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "swap amount cannot be lower than .001% total supply"
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "swap amount cannot be higher than .5% total supply"
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 10) / 1000) / 1e18,
            "cannot set maxwallet lower than 1%"
        );
        maxWallet = newNum * (10**18);
    }

    function updateBuyFees(
        uint16 _teamFeePercent,
        uint16 _buyTotalFees
    ) external onlyOwner {
        buyTeamFeePct = _teamFeePercent;
        buyTotalFees = _buyTotalFees;
        require(_buyTotalFees <= 5, "buy fees must be <= 5");
    }

    function updateSellFees(
        uint16 _teamFeePercent,
        uint16 _sellTotalFees
    ) external onlyOwner {
        sellTeamFeePct = _teamFeePercent;
        sellTotalFees = _sellTotalFees;
        require(_sellTotalFees <= 5, "sell fees must be <= 5");
    }

    function updateTeamWallet(address newWallet) external onlyOwner {
        emit TeamWalletUpdated(newWallet, teamWallet);
        teamWallet = newWallet;
    }

    function withdrawStuckToken() external onlyOwner {
        uint256 balance = IERC20(address(this)).balanceOf(address(this));
        IERC20(address(this)).transfer(msg.sender, balance);
        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawStuckErc20(address _token, address _to) external onlyOwner {
        require(_token != address(0), "_token address cannot be 0");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address toAddr) external onlyOwner {
        (bool success, ) = toAddr.call{
            value: address(this).balance
        } ("");
        require(success);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner
    {
        isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "the pair cannot be removed from automatedmarketmakerpairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
    }

    function blacklist(address _addr) public onlyOwner {
        require(!blacklistRenounced, "team has revoked blacklist rights");
        require(
            _addr != address(uniswapV2Pair) && _addr != address(uniswapV2Router), 
            "cannot blacklist tokens v2 router or v2 pool"
        );
        _blacklisted[_addr] = true;
    }

    function blacklistLiquidityPool(address lpAddress) public onlyOwner {
        require(!blacklistRenounced, "team has revoked blacklist rights");
        require(
            lpAddress != address(uniswapV2Pair) && lpAddress != address(uniswapV2Router), 
            "cannot blacklist tokens v2 router or v2 pool"
        );
        _blacklisted[lpAddress] = true;
    }

    function unblacklist(address _addr) public onlyOwner {
        _blacklisted[_addr] = false;
    }

    function addMusas(address[] memory _musas) external onlyOwner {
        for(uint i; i < _musas.length; i++) {
            grosMichel.push(_musas[i]);
        }
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function isBlacklisted(address account) public view returns (bool) {
        return _blacklisted[account];
    }

    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");
        require(!_blacklisted[from],"sender blacklisted");
        require(!_blacklisted[to],"receiver blacklisted");

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

        bool _limitsInEffect = limitsInEffect;

        if (_limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !_swapping
            ) {
                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "buy transfer amount exceeds the maxtransactionamount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "sell transfer amount exceeds the maxtransactionamount."
                    );
                } else if (!isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if (takeFee) {
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount * _getSellTotalFees(_limitsInEffect, to, from) / 100;
                tokensForTeam += (fees * sellTeamFeePct) / 100;
            }
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount * _getBuyTotalFees(_limitsInEffect, to, from) / 100;
                tokensForTeam += (fees * buyTeamFeePct) / 100;
            }

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

            amount -= fees;
        }

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

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }

    function _swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForTeam;
        bool success;

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

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

        uint256 amountToSwapForETH = contractBalance;
        _swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance;
        uint256 ethForTeam = ethBalance;
        tokensForTeam = 0;
        (success, ) = address(teamWallet).call{value: ethForTeam}("");   
    }

    function _getSellTotalFees(bool _limitsInEffect, address _to, address _from) private view returns (uint256) {
        if(!_limitsInEffect)
            return sellTotalFees;

        uint256 _sellTotalFees = sellTotalFees;
        uint256 _launchBlock = launchBlock;
        uint256 _antibotPeriod = antibotPeriod;

        if(block.number > _launchBlock + _antibotPeriod)
            return sellTotalFees;

        uint256 progressThroughAntibot = block.number - _launchBlock;
        uint256 antiBotTax = 90 - ((90 * progressThroughAntibot) / uint(_antibotPeriod));
        if(antiBotTax < _sellTotalFees)
            antiBotTax = _sellTotalFees;

        return antiBotTax;
    }

    function _getBuyTotalFees(bool _limitsInEffect, address _to, address _from) private view returns (uint256) {
        if(!_limitsInEffect)
            return buyTotalFees;
        
        uint256 _buyTotalFees = buyTotalFees;
        uint256 _launchBlock = launchBlock;
        uint256 _antibotPeriod = antibotPeriod;

        if(block.number > _launchBlock + _antibotPeriod)
            return _buyTotalFees;

        uint256 progressThroughAntibot = block.number - _launchBlock;
        uint256 antiBotTax = 20 - ((20 * progressThroughAntibot) / uint(_antibotPeriod));
        if(antiBotTax < _buyTotalFees)
            antiBotTax = _buyTotalFees;
        
        return antiBotTax;
    }

    function launchToken(uint _ethAmount, uint128 _antibotPeriod) external onlyOwner {
        launchBlock = uint128(block.number);
        antibotPeriod = _antibotPeriod;
        uint cBalance = balanceOf(address(this));

        _addLiquidity(cBalance, _ethAmount);
    }
}

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

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

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

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

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

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

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

import './IUniswapV2Router01.sol';

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

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

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

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.20;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"_uniswapRouter","type":"address"},{"internalType":"address[]","name":"_musas","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TeamWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"DEAD_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_musas","type":"address[]"}],"name":"addMusas","outputs":[],"stateMutability":"nonpayable","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":[],"name":"antibotPeriod","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFeePct","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ethAmount","type":"uint256"},{"internalType":"uint128","name":"_antibotPeriod","type":"uint128"}],"name":"launchToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTeamFeePct","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","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":"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","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":"uint16","name":"_teamFeePercent","type":"uint16"},{"internalType":"uint16","name":"_buyTotalFees","type":"uint16"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_teamFeePercent","type":"uint16"},{"internalType":"uint16","name":"_sellTotalFees","type":"uint16"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","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":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600d805462ffff00191661010017905534801562000020575f80fd5b506040516200327a3803806200327a833981016040819052620000439162000736565b60408051808201825260068082526545544842544360d01b602080840182905284518086019095529184529083015233916003620000828382620008a8565b506004620000918282620008a8565b5050506001600160a01b038116620000c357604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000ce816200039e565b50620000dc826001620003ef565b6001600160a01b03821660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000125573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200014b919062000970565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000197573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001bd919062000970565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000208573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022e919062000970565b6001600160a01b031660a081905262000249906001620003ef565b60a0516200025990600162000423565b6b033b2e3c9fd0803ce800000061271062000276826096620009a9565b620002829190620009c9565b60085561271062000295826096620009a9565b620002a19190620009c9565b600a55612710620002b4826005620009a9565b620002c09190620009c9565b600955600b80546001600160401b0319166664000100640001179055620002ef6005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200031c9116600162000476565b6200032930600162000476565b6200033861dead600162000476565b620003576200034f6005546001600160a01b031690565b6001620003ef565b62000364306001620003ef565b6200037361dead6001620003ef565b81516200038890600e9060208501906200067a565b50620003953082620004de565b505050620009ff565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620003f96200051a565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004806200051a565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005095760405163ec442f0560e01b81525f6004820152602401620000ba565b620005165f83836200054b565b5050565b6005546001600160a01b03163314620005495760405163118cdaa760e01b8152336004820152602401620000ba565b565b6001600160a01b03831662000579578060025f8282546200056d9190620009e9565b90915550620005eb9050565b6001600160a01b0383165f9081526020819052604090205481811015620005cd5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000ba565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620006095760028054829003905562000627565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200066d91815260200190565b60405180910390a3505050565b828054828255905f5260205f20908101928215620006d0579160200282015b82811115620006d057825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000699565b50620006de929150620006e2565b5090565b5b80821115620006de575f8155600101620006e3565b6001600160a01b03811681146200070d575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b80516200073181620006f8565b919050565b5f806040838503121562000748575f80fd5b82516200075581620006f8565b602084810151919350906001600160401b038082111562000774575f80fd5b818601915086601f83011262000788575f80fd5b8151818111156200079d576200079d62000710565b8060051b604051601f19603f83011681018181108582111715620007c557620007c562000710565b604052918252848201925083810185019189831115620007e3575f80fd5b938501935b828510156200080c57620007fc8562000724565b84529385019392850192620007e8565b8096505050505050509250929050565b600181811c908216806200083157607f821691505b6020821081036200085057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620008a3575f81815260208120601f850160051c810160208610156200087e5750805b601f850160051c820191505b818110156200089f578281556001016200088a565b5050505b505050565b81516001600160401b03811115620008c457620008c462000710565b620008dc81620008d584546200081c565b8462000856565b602080601f83116001811462000912575f8415620008fa5750858301515b5f19600386901b1c1916600185901b1785556200089f565b5f85815260208120601f198616915b82811015620009425788860151825594840194600190910190840162000921565b50858210156200096057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000981575f80fd5b81516200098e81620006f8565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620009c357620009c362000995565b92915050565b5f82620009e457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620009c357620009c362000995565b60805160a05161282162000a595f395f818161048701528181610e09015261132801525f81816103870152818161136501528181611be901528181611c1001528181612223015281816122da015261231601526128215ff3fe6080604052600436106102c2575f3560e01c80637cb332bb1161016f578063cdb5f8c6116100d8578063e2f4560511610092578063f98a9c021161006d578063f98a9c02146108f2578063f9f92be41461088a578063fde83a3414610913578063fe575a8714610928575f80fd5b8063e2f45605146108a9578063f2fde38b146108be578063f8b45b05146108dd575f80fd5b8063cdb5f8c6146107cf578063d00efb2f146107ee578063d257b34f1461080d578063d85ba0631461082c578063dd62ed3e14610846578063e19b28231461088a575f80fd5b8063a9059cbb11610129578063a9059cbb14610710578063b62496f51461072f578063c02466681461075d578063c18bc1951461077c578063c728e57d1461079b578063c8c8ebe4146107ba575f80fd5b80637cb332bb1461066e57806384dd44521461068d578063858e4a02146106a15780638da5cb5b146106c057806395d89b41146106dd5780639a7a23d6146106f1575f80fd5b80634bb2c7851161022b5780636a486a8e116101e5578063751039fc116101c0578063751039fc146105fd5780637571336a1461061157806375e3661e146106305780637ca8448a1461064f575f80fd5b80636a486a8e1461059357806370a08231146105b5578063715018a6146105e9575f80fd5b80634bb2c785146104c75780634e6fd6c4146104f55780634fbee1931461050a578063564dd11f1461054157806359927044146105605780635f1893611461057f575f80fd5b806323b872dd1161027c57806323b872dd146103df57806330b878ff146103fe578063313ce5671461043c5780633dc599ff1461045757806349bd5a5e146104765780634a62bb65146104a9575f80fd5b8063039bed0b146102cd5780630408d756146102ee57806306fdde0314610326578063095ea7b3146103475780631694505e1461037657806318160ddd146103c1575f80fd5b366102c957005b5f80fd5b3480156102d8575f80fd5b506102ec6102e7366004612395565b61095f565b005b3480156102f9575f80fd5b50600b5461030e9062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b348015610331575f80fd5b5061033a6109e3565b60405161031d91906123c6565b348015610352575f80fd5b50610366610361366004612430565b610a73565b604051901515815260200161031d565b348015610381575f80fd5b506103a97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161031d565b3480156103cc575f80fd5b506002545b60405190815260200161031d565b3480156103ea575f80fd5b506103666103f936600461245a565b610a8c565b348015610409575f80fd5b5060065461042490600160801b90046001600160801b031681565b6040516001600160801b03909116815260200161031d565b348015610447575f80fd5b506040516012815260200161031d565b348015610462575f80fd5b50600d546103669062010000900460ff1681565b348015610481575f80fd5b506103a97f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b4575f80fd5b50600d5461036690610100900460ff1681565b3480156104d2575f80fd5b506103666104e1366004612498565b60116020525f908152604090205460ff1681565b348015610500575f80fd5b506103a961dead81565b348015610515575f80fd5b50610366610524366004612498565b6001600160a01b03165f9081526010602052604090205460ff1690565b34801561054c575f80fd5b506102ec61055b3660046124b3565b610ab1565b34801561056b575f80fd5b506007546103a9906001600160a01b031681565b34801561058a575f80fd5b506102ec610af3565b34801561059e575f80fd5b50600b5461030e90640100000000900461ffff1681565b3480156105c0575f80fd5b506103d16105cf366004612498565b6001600160a01b03165f9081526020819052604090205490565b3480156105f4575f80fd5b506102ec610b0e565b348015610608575f80fd5b50610366610b21565b34801561061c575f80fd5b506102ec61062b3660046124f9565b610b4a565b34801561063b575f80fd5b506102ec61064a366004612498565b610b7c565b34801561065a575f80fd5b506102ec610669366004612498565b610ba4565b348015610679575f80fd5b506102ec610688366004612498565b610c07565b348015610698575f80fd5b506102ec610c6b565b3480156106ac575f80fd5b506102ec6106bb366004612395565b610d64565b3480156106cb575f80fd5b506005546001600160a01b03166103a9565b3480156106e8575f80fd5b5061033a610df0565b3480156106fc575f80fd5b506102ec61070b3660046124f9565b610dff565b34801561071b575f80fd5b5061036661072a366004612430565b610eb8565b34801561073a575f80fd5b50610366610749366004612498565b60126020525f908152604090205460ff1681565b348015610768575f80fd5b506102ec6107773660046124f9565b610ec5565b348015610787575f80fd5b506102ec610796366004612525565b610f2b565b3480156107a6575f80fd5b506102ec6107b5366004612550565b610fd9565b3480156107c5575f80fd5b506103d160085481565b3480156107da575f80fd5b506102ec6107e9366004612604565b61104c565b3480156107f9575f80fd5b50600654610424906001600160801b031681565b348015610818575f80fd5b50610366610827366004612525565b61118c565b348015610837575f80fd5b50600b5461030e9061ffff1681565b348015610851575f80fd5b506103d1610860366004612604565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610895575f80fd5b506102ec6108a4366004612498565b6112bb565b3480156108b4575f80fd5b506103d160095481565b3480156108c9575f80fd5b506102ec6108d8366004612498565b61141e565b3480156108e8575f80fd5b506103d1600a5481565b3480156108fd575f80fd5b50600b5461030e90600160301b900461ffff1681565b34801561091e575f80fd5b506103d1600c5481565b348015610933575f80fd5b50610366610942366004612498565b6001600160a01b03165f908152600f602052604090205460ff1690565b61096761145b565b600b805463ffffffff19166201000061ffff8581169190910261ffff191691909117908316908117909155600510156109df5760405162461bcd60e51b81526020600482015260156024820152746275792066656573206d757374206265203c3d203560581b60448201526064015b60405180910390fd5b5050565b6060600380546109f290612630565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90612630565b8015610a695780601f10610a4057610100808354040283529160200191610a69565b820191905f5260205f20905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b5f33610a80818585611488565b60019150505b92915050565b5f33610a99858285611495565b610aa485858561150a565b60019150505b9392505050565b610ab961145b565b6001600160801b03818116600160801b02439190911617600655305f908152602081905260408120549050610aee8184611be3565b505050565b610afb61145b565b600d805462ff0000191662010000179055565b610b1661145b565b610b1f5f611ce6565b565b5f610b2a61145b565b50600d805461ff0019169055600b805465ffff0000ffff19169055600190565b610b5261145b565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b610b8461145b565b6001600160a01b03165f908152600f60205260409020805460ff19169055565b610bac61145b565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610bf5576040519150601f19603f3d011682016040523d82523d5f602084013e610bfa565b606091505b50509050806109df575f80fd5b610c0f61145b565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c7361145b565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610cae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd29190612668565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610d16573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3a919061267f565b5060405133904780156108fc02915f818181858888f193505050501580156109df573d5f803e3d5ffd5b610d6c61145b565b600b805467ffffffff000000001916600160301b61ffff8581169190910265ffff0000000019169190911764010000000091841691820217909155600510156109df5760405162461bcd60e51b815260206004820152601660248201527573656c6c2066656573206d757374206265203c3d203560501b60448201526064016109d6565b6060600480546109f290612630565b610e0761145b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610eae5760405162461bcd60e51b815260206004820152603960248201527f74686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465646d61726b65746d616b657270616972730000000000000060648201526084016109d6565b6109df8282611d37565b5f33610a8081858561150a565b610ecd61145b565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f3361145b565b670de0b6b3a76400006103e8610f4860025490565b610f5390600a6126ae565b610f5d91906126c5565b610f6791906126c5565b811015610fc15760405162461bcd60e51b815260206004820152602260248201527f63616e6e6f7420736574206d617877616c6c6574206c6f776572207468616e20604482015261312560f01b60648201526084016109d6565b610fd381670de0b6b3a76400006126ae565b600a5550565b610fe161145b565b5f5b81518110156109df57600e828281518110611000576110006126e4565b60209081029190910181015182546001810184555f938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580611044816126f8565b915050610fe3565b61105461145b565b6001600160a01b0382166110aa5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064016109d6565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156110ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111129190612668565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611162573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611186919061267f565b50505050565b5f61119561145b565b620186a06111a260025490565b6111ad9060016126ae565b6111b791906126c5565b8210156112225760405162461bcd60e51b815260206004820152603360248201527f7377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272202e3030312520746f74616c20737570706c7960681b60648201526084016109d6565b6103e861122e60025490565b6112399060056126ae565b61124391906126c5565b8211156112ad5760405162461bcd60e51b815260206004820152603260248201527f7377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152716e202e352520746f74616c20737570706c7960701b60648201526084016109d6565b50600981905560015b919050565b6112c361145b565b600d5462010000900460ff16156113265760405162461bcd60e51b815260206004820152602160248201527f7465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b60648201526084016109d6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561139a57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b6113fb5760405162461bcd60e51b815260206004820152602c60248201527f63616e6e6f7420626c61636b6c69737420746f6b656e7320763220726f75746560448201526b1c881bdc881d8c881c1bdbdb60a21b60648201526084016109d6565b6001600160a01b03165f908152600f60205260409020805460ff19166001179055565b61142661145b565b6001600160a01b03811661144f57604051631e4fbdf760e01b81525f60048201526024016109d6565b61145881611ce6565b50565b6005546001600160a01b03163314610b1f5760405163118cdaa760e01b81523360048201526024016109d6565b610aee8383836001611d8a565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461118657818110156114fc57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016109d6565b61118684848484035f611d8a565b6001600160a01b03831661156e5760405162461bcd60e51b815260206004820152602560248201527f65726332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109d6565b6001600160a01b0382166115d05760405162461bcd60e51b815260206004820152602360248201527f65726332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109d6565b6001600160a01b0383165f908152600f602052604090205460ff161561162d5760405162461bcd60e51b81526020600482015260126024820152711cd95b99195c88189b1858dadb1a5cdd195960721b60448201526064016109d6565b6001600160a01b0382165f908152600f602052604090205460ff161561168c5760405162461bcd60e51b81526020600482015260146024820152731c9958d95a5d995c88189b1858dadb1a5cdd195960621b60448201526064016109d6565b805f0361169e57610aee83835f611e5c565b600d54610100900460ff168015611979576005546001600160a01b038581169116148015906116db57506005546001600160a01b03848116911614155b80156116ef57506001600160a01b03831615155b801561170657506001600160a01b03831661dead14155b80156117155750600d5460ff16155b15611979576001600160a01b0384165f9081526012602052604090205460ff16801561175957506001600160a01b0383165f9081526011602052604090205460ff16155b1561183c576008548211156117ce5760405162461bcd60e51b815260206004820152603560248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760591b60648201526084016109d6565b600a546001600160a01b0384165f908152602081905260409020546117f39084612710565b11156118375760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d6565b611979565b6001600160a01b0383165f9081526012602052604090205460ff16801561187b57506001600160a01b0384165f9081526011602052604090205460ff16155b156118f1576008548211156118375760405162461bcd60e51b815260206004820152603660248201527f73656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760511b60648201526084016109d6565b6001600160a01b0383165f9081526011602052604090205460ff1661197957600a546001600160a01b0384165f908152602081905260409020546119359084612710565b11156119795760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d6565b305f908152602081905260409020546009548110801590819061199f5750600d5460ff16155b80156119c357506001600160a01b0386165f9081526012602052604090205460ff16155b80156119e757506001600160a01b0386165f9081526010602052604090205460ff16155b8015611a0b57506001600160a01b0385165f9081526010602052604090205460ff16155b15611a3057600d805460ff19166001179055611a25611eb9565b600d805460ff191690555b600d546001600160a01b0387165f9081526010602052604090205460ff91821615911680611a7557506001600160a01b0386165f9081526010602052604090205460ff165b15611a7d57505f5b5f8115611bce576001600160a01b0387165f9081526012602052604090205460ff168015611ab85750600b54640100000000900461ffff1615155b15611b21576064611aca86898b611f73565b611ad490886126ae565b611ade91906126c5565b600b54909150606490611afc90600160301b900461ffff16836126ae565b611b0691906126c5565b600c5f828254611b169190612710565b90915550611bb09050565b6001600160a01b0388165f9081526012602052604090205460ff168015611b4d5750600b5461ffff1615155b15611bb0576064611b5f86898b612029565b611b6990886126ae565b611b7391906126c5565b600b54909150606490611b909062010000900461ffff16836126ae565b611b9a91906126c5565b600c5f828254611baa9190612710565b90915550505b8015611bc157611bc1883083611e5c565b611bcb8187612723565b95505b611bd9888888611e5c565b5050505050505050565b611c0e307f000000000000000000000000000000000000000000000000000000000000000084611488565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611c546005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611cba573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611cdf9190612736565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611db35760405163e602df0560e01b81525f60048201526024016109d6565b6001600160a01b038316611ddc57604051634a1406b160e11b81525f60048201526024016109d6565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561118657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611e4e91815260200190565b60405180910390a350505050565b6001600160a01b038316611e8557604051634b637e8f60e11b81525f60048201526024016109d6565b6001600160a01b038216611eae5760405163ec442f0560e01b81525f60048201526024016109d6565b610aee8383836120a8565b305f90815260208190526040812054600c549091821580611ed8575081155b15611ee257505050565b600954611ef09060146126ae565b831115611f0857600954611f059060146126ae565b92505b82611f12816121ce565b5f600c819055600754604051479283926001600160a01b031691839181818185875af1925050503d805f8114611f63576040519150601f19603f3d011682016040523d82523d5f602084013e611f68565b606091505b505050505050505050565b5f83611f8e5750600b54640100000000900461ffff16610aaa565b600b5460065464010000000090910461ffff16906001600160801b0380821691600160801b900416611fc08183612710565b431115611fe1575050600b54640100000000900461ffff169150610aaa9050565b5f611fec8343612723565b90505f82611ffb83605a6126ae565b61200591906126c5565b61201090605a612723565b90508481101561201d5750835b98975050505050505050565b5f8361203c5750600b5461ffff16610aaa565b600b5460065461ffff909116906001600160801b0380821691600160801b9004166120678183612710565b43111561207957829350505050610aaa565b5f6120848343612723565b90505f826120938360146126ae565b61209d91906126c5565b612010906014612723565b6001600160a01b0383166120d2578060025f8282546120c79190612710565b909155506121429050565b6001600160a01b0383165f90815260208190526040902054818110156121245760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016109d6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661215e5760028054829003905561217c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c191815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612201576122016126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561227d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122a19190612761565b816001815181106122b4576122b46126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250506122ff307f000000000000000000000000000000000000000000000000000000000000000084611488565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123539085905f9086903090429060040161277c565b5f604051808303815f87803b15801561236a575f80fd5b505af115801561237c573d5f803e3d5ffd5b505050505050565b803561ffff811681146112b6575f80fd5b5f80604083850312156123a6575f80fd5b6123af83612384565b91506123bd60208401612384565b90509250929050565b5f6020808352835180828501525f5b818110156123f1578581018301518582016040015282016123d5565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611458575f80fd5b80356112b681612411565b5f8060408385031215612441575f80fd5b823561244c81612411565b946020939093013593505050565b5f805f6060848603121561246c575f80fd5b833561247781612411565b9250602084013561248781612411565b929592945050506040919091013590565b5f602082840312156124a8575f80fd5b8135610aaa81612411565b5f80604083850312156124c4575f80fd5b8235915060208301356001600160801b03811681146124e1575f80fd5b809150509250929050565b8015158114611458575f80fd5b5f806040838503121561250a575f80fd5b823561251581612411565b915060208301356124e1816124ec565b5f60208284031215612535575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215612561575f80fd5b823567ffffffffffffffff80821115612578575f80fd5b818501915085601f83011261258b575f80fd5b81358181111561259d5761259d61253c565b8060051b604051601f19603f830116810181811085821117156125c2576125c261253c565b6040529182528482019250838101850191888311156125df575f80fd5b938501935b8285101561201d576125f585612425565b845293850193928501926125e4565b5f8060408385031215612615575f80fd5b823561262081612411565b915060208301356124e181612411565b600181811c9082168061264457607f821691505b60208210810361266257634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215612678575f80fd5b5051919050565b5f6020828403121561268f575f80fd5b8151610aaa816124ec565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a8657610a8661269a565b5f826126df57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f600182016127095761270961269a565b5060010190565b80820180821115610a8657610a8661269a565b81810381811115610a8657610a8661269a565b5f805f60608486031215612748575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612771575f80fd5b8151610aaa81612411565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156127ca5784516001600160a01b0316835293830193918301916001016127a5565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122029a1cecba6e1a671309756843c7e3529593d2c3686ca92993a090ef698bea31e64736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000004000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd2321600000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d410000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3

Deployed Bytecode

0x6080604052600436106102c2575f3560e01c80637cb332bb1161016f578063cdb5f8c6116100d8578063e2f4560511610092578063f98a9c021161006d578063f98a9c02146108f2578063f9f92be41461088a578063fde83a3414610913578063fe575a8714610928575f80fd5b8063e2f45605146108a9578063f2fde38b146108be578063f8b45b05146108dd575f80fd5b8063cdb5f8c6146107cf578063d00efb2f146107ee578063d257b34f1461080d578063d85ba0631461082c578063dd62ed3e14610846578063e19b28231461088a575f80fd5b8063a9059cbb11610129578063a9059cbb14610710578063b62496f51461072f578063c02466681461075d578063c18bc1951461077c578063c728e57d1461079b578063c8c8ebe4146107ba575f80fd5b80637cb332bb1461066e57806384dd44521461068d578063858e4a02146106a15780638da5cb5b146106c057806395d89b41146106dd5780639a7a23d6146106f1575f80fd5b80634bb2c7851161022b5780636a486a8e116101e5578063751039fc116101c0578063751039fc146105fd5780637571336a1461061157806375e3661e146106305780637ca8448a1461064f575f80fd5b80636a486a8e1461059357806370a08231146105b5578063715018a6146105e9575f80fd5b80634bb2c785146104c75780634e6fd6c4146104f55780634fbee1931461050a578063564dd11f1461054157806359927044146105605780635f1893611461057f575f80fd5b806323b872dd1161027c57806323b872dd146103df57806330b878ff146103fe578063313ce5671461043c5780633dc599ff1461045757806349bd5a5e146104765780634a62bb65146104a9575f80fd5b8063039bed0b146102cd5780630408d756146102ee57806306fdde0314610326578063095ea7b3146103475780631694505e1461037657806318160ddd146103c1575f80fd5b366102c957005b5f80fd5b3480156102d8575f80fd5b506102ec6102e7366004612395565b61095f565b005b3480156102f9575f80fd5b50600b5461030e9062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b348015610331575f80fd5b5061033a6109e3565b60405161031d91906123c6565b348015610352575f80fd5b50610366610361366004612430565b610a73565b604051901515815260200161031d565b348015610381575f80fd5b506103a97f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161031d565b3480156103cc575f80fd5b506002545b60405190815260200161031d565b3480156103ea575f80fd5b506103666103f936600461245a565b610a8c565b348015610409575f80fd5b5060065461042490600160801b90046001600160801b031681565b6040516001600160801b03909116815260200161031d565b348015610447575f80fd5b506040516012815260200161031d565b348015610462575f80fd5b50600d546103669062010000900460ff1681565b348015610481575f80fd5b506103a97f0000000000000000000000009a9516d6e15deb6705aaad96837059a81cd9c6ba81565b3480156104b4575f80fd5b50600d5461036690610100900460ff1681565b3480156104d2575f80fd5b506103666104e1366004612498565b60116020525f908152604090205460ff1681565b348015610500575f80fd5b506103a961dead81565b348015610515575f80fd5b50610366610524366004612498565b6001600160a01b03165f9081526010602052604090205460ff1690565b34801561054c575f80fd5b506102ec61055b3660046124b3565b610ab1565b34801561056b575f80fd5b506007546103a9906001600160a01b031681565b34801561058a575f80fd5b506102ec610af3565b34801561059e575f80fd5b50600b5461030e90640100000000900461ffff1681565b3480156105c0575f80fd5b506103d16105cf366004612498565b6001600160a01b03165f9081526020819052604090205490565b3480156105f4575f80fd5b506102ec610b0e565b348015610608575f80fd5b50610366610b21565b34801561061c575f80fd5b506102ec61062b3660046124f9565b610b4a565b34801561063b575f80fd5b506102ec61064a366004612498565b610b7c565b34801561065a575f80fd5b506102ec610669366004612498565b610ba4565b348015610679575f80fd5b506102ec610688366004612498565b610c07565b348015610698575f80fd5b506102ec610c6b565b3480156106ac575f80fd5b506102ec6106bb366004612395565b610d64565b3480156106cb575f80fd5b506005546001600160a01b03166103a9565b3480156106e8575f80fd5b5061033a610df0565b3480156106fc575f80fd5b506102ec61070b3660046124f9565b610dff565b34801561071b575f80fd5b5061036661072a366004612430565b610eb8565b34801561073a575f80fd5b50610366610749366004612498565b60126020525f908152604090205460ff1681565b348015610768575f80fd5b506102ec6107773660046124f9565b610ec5565b348015610787575f80fd5b506102ec610796366004612525565b610f2b565b3480156107a6575f80fd5b506102ec6107b5366004612550565b610fd9565b3480156107c5575f80fd5b506103d160085481565b3480156107da575f80fd5b506102ec6107e9366004612604565b61104c565b3480156107f9575f80fd5b50600654610424906001600160801b031681565b348015610818575f80fd5b50610366610827366004612525565b61118c565b348015610837575f80fd5b50600b5461030e9061ffff1681565b348015610851575f80fd5b506103d1610860366004612604565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610895575f80fd5b506102ec6108a4366004612498565b6112bb565b3480156108b4575f80fd5b506103d160095481565b3480156108c9575f80fd5b506102ec6108d8366004612498565b61141e565b3480156108e8575f80fd5b506103d1600a5481565b3480156108fd575f80fd5b50600b5461030e90600160301b900461ffff1681565b34801561091e575f80fd5b506103d1600c5481565b348015610933575f80fd5b50610366610942366004612498565b6001600160a01b03165f908152600f602052604090205460ff1690565b61096761145b565b600b805463ffffffff19166201000061ffff8581169190910261ffff191691909117908316908117909155600510156109df5760405162461bcd60e51b81526020600482015260156024820152746275792066656573206d757374206265203c3d203560581b60448201526064015b60405180910390fd5b5050565b6060600380546109f290612630565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1e90612630565b8015610a695780601f10610a4057610100808354040283529160200191610a69565b820191905f5260205f20905b815481529060010190602001808311610a4c57829003601f168201915b5050505050905090565b5f33610a80818585611488565b60019150505b92915050565b5f33610a99858285611495565b610aa485858561150a565b60019150505b9392505050565b610ab961145b565b6001600160801b03818116600160801b02439190911617600655305f908152602081905260408120549050610aee8184611be3565b505050565b610afb61145b565b600d805462ff0000191662010000179055565b610b1661145b565b610b1f5f611ce6565b565b5f610b2a61145b565b50600d805461ff0019169055600b805465ffff0000ffff19169055600190565b610b5261145b565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b610b8461145b565b6001600160a01b03165f908152600f60205260409020805460ff19169055565b610bac61145b565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610bf5576040519150601f19603f3d011682016040523d82523d5f602084013e610bfa565b606091505b50509050806109df575f80fd5b610c0f61145b565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c7361145b565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610cae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd29190612668565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610d16573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3a919061267f565b5060405133904780156108fc02915f818181858888f193505050501580156109df573d5f803e3d5ffd5b610d6c61145b565b600b805467ffffffff000000001916600160301b61ffff8581169190910265ffff0000000019169190911764010000000091841691820217909155600510156109df5760405162461bcd60e51b815260206004820152601660248201527573656c6c2066656573206d757374206265203c3d203560501b60448201526064016109d6565b6060600480546109f290612630565b610e0761145b565b7f0000000000000000000000009a9516d6e15deb6705aaad96837059a81cd9c6ba6001600160a01b0316826001600160a01b031603610eae5760405162461bcd60e51b815260206004820152603960248201527f74686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465646d61726b65746d616b657270616972730000000000000060648201526084016109d6565b6109df8282611d37565b5f33610a8081858561150a565b610ecd61145b565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f3361145b565b670de0b6b3a76400006103e8610f4860025490565b610f5390600a6126ae565b610f5d91906126c5565b610f6791906126c5565b811015610fc15760405162461bcd60e51b815260206004820152602260248201527f63616e6e6f7420736574206d617877616c6c6574206c6f776572207468616e20604482015261312560f01b60648201526084016109d6565b610fd381670de0b6b3a76400006126ae565b600a5550565b610fe161145b565b5f5b81518110156109df57600e828281518110611000576110006126e4565b60209081029190910181015182546001810184555f938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580611044816126f8565b915050610fe3565b61105461145b565b6001600160a01b0382166110aa5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f74206265203000000000000060448201526064016109d6565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156110ee573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111129190612668565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611162573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611186919061267f565b50505050565b5f61119561145b565b620186a06111a260025490565b6111ad9060016126ae565b6111b791906126c5565b8210156112225760405162461bcd60e51b815260206004820152603360248201527f7377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272202e3030312520746f74616c20737570706c7960681b60648201526084016109d6565b6103e861122e60025490565b6112399060056126ae565b61124391906126c5565b8211156112ad5760405162461bcd60e51b815260206004820152603260248201527f7377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152716e202e352520746f74616c20737570706c7960701b60648201526084016109d6565b50600981905560015b919050565b6112c361145b565b600d5462010000900460ff16156113265760405162461bcd60e51b815260206004820152602160248201527f7465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b60648201526084016109d6565b7f0000000000000000000000009a9516d6e15deb6705aaad96837059a81cd9c6ba6001600160a01b0316816001600160a01b03161415801561139a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316816001600160a01b031614155b6113fb5760405162461bcd60e51b815260206004820152602c60248201527f63616e6e6f7420626c61636b6c69737420746f6b656e7320763220726f75746560448201526b1c881bdc881d8c881c1bdbdb60a21b60648201526084016109d6565b6001600160a01b03165f908152600f60205260409020805460ff19166001179055565b61142661145b565b6001600160a01b03811661144f57604051631e4fbdf760e01b81525f60048201526024016109d6565b61145881611ce6565b50565b6005546001600160a01b03163314610b1f5760405163118cdaa760e01b81523360048201526024016109d6565b610aee8383836001611d8a565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461118657818110156114fc57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016109d6565b61118684848484035f611d8a565b6001600160a01b03831661156e5760405162461bcd60e51b815260206004820152602560248201527f65726332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016109d6565b6001600160a01b0382166115d05760405162461bcd60e51b815260206004820152602360248201527f65726332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016109d6565b6001600160a01b0383165f908152600f602052604090205460ff161561162d5760405162461bcd60e51b81526020600482015260126024820152711cd95b99195c88189b1858dadb1a5cdd195960721b60448201526064016109d6565b6001600160a01b0382165f908152600f602052604090205460ff161561168c5760405162461bcd60e51b81526020600482015260146024820152731c9958d95a5d995c88189b1858dadb1a5cdd195960621b60448201526064016109d6565b805f0361169e57610aee83835f611e5c565b600d54610100900460ff168015611979576005546001600160a01b038581169116148015906116db57506005546001600160a01b03848116911614155b80156116ef57506001600160a01b03831615155b801561170657506001600160a01b03831661dead14155b80156117155750600d5460ff16155b15611979576001600160a01b0384165f9081526012602052604090205460ff16801561175957506001600160a01b0383165f9081526011602052604090205460ff16155b1561183c576008548211156117ce5760405162461bcd60e51b815260206004820152603560248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760591b60648201526084016109d6565b600a546001600160a01b0384165f908152602081905260409020546117f39084612710565b11156118375760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d6565b611979565b6001600160a01b0383165f9081526012602052604090205460ff16801561187b57506001600160a01b0384165f9081526011602052604090205460ff16155b156118f1576008548211156118375760405162461bcd60e51b815260206004820152603660248201527f73656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760511b60648201526084016109d6565b6001600160a01b0383165f9081526011602052604090205460ff1661197957600a546001600160a01b0384165f908152602081905260409020546119359084612710565b11156119795760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109d6565b305f908152602081905260409020546009548110801590819061199f5750600d5460ff16155b80156119c357506001600160a01b0386165f9081526012602052604090205460ff16155b80156119e757506001600160a01b0386165f9081526010602052604090205460ff16155b8015611a0b57506001600160a01b0385165f9081526010602052604090205460ff16155b15611a3057600d805460ff19166001179055611a25611eb9565b600d805460ff191690555b600d546001600160a01b0387165f9081526010602052604090205460ff91821615911680611a7557506001600160a01b0386165f9081526010602052604090205460ff165b15611a7d57505f5b5f8115611bce576001600160a01b0387165f9081526012602052604090205460ff168015611ab85750600b54640100000000900461ffff1615155b15611b21576064611aca86898b611f73565b611ad490886126ae565b611ade91906126c5565b600b54909150606490611afc90600160301b900461ffff16836126ae565b611b0691906126c5565b600c5f828254611b169190612710565b90915550611bb09050565b6001600160a01b0388165f9081526012602052604090205460ff168015611b4d5750600b5461ffff1615155b15611bb0576064611b5f86898b612029565b611b6990886126ae565b611b7391906126c5565b600b54909150606490611b909062010000900461ffff16836126ae565b611b9a91906126c5565b600c5f828254611baa9190612710565b90915550505b8015611bc157611bc1883083611e5c565b611bcb8187612723565b95505b611bd9888888611e5c565b5050505050505050565b611c0e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611488565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611c546005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611cba573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611cdf9190612736565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611db35760405163e602df0560e01b81525f60048201526024016109d6565b6001600160a01b038316611ddc57604051634a1406b160e11b81525f60048201526024016109d6565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561118657826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611e4e91815260200190565b60405180910390a350505050565b6001600160a01b038316611e8557604051634b637e8f60e11b81525f60048201526024016109d6565b6001600160a01b038216611eae5760405163ec442f0560e01b81525f60048201526024016109d6565b610aee8383836120a8565b305f90815260208190526040812054600c549091821580611ed8575081155b15611ee257505050565b600954611ef09060146126ae565b831115611f0857600954611f059060146126ae565b92505b82611f12816121ce565b5f600c819055600754604051479283926001600160a01b031691839181818185875af1925050503d805f8114611f63576040519150601f19603f3d011682016040523d82523d5f602084013e611f68565b606091505b505050505050505050565b5f83611f8e5750600b54640100000000900461ffff16610aaa565b600b5460065464010000000090910461ffff16906001600160801b0380821691600160801b900416611fc08183612710565b431115611fe1575050600b54640100000000900461ffff169150610aaa9050565b5f611fec8343612723565b90505f82611ffb83605a6126ae565b61200591906126c5565b61201090605a612723565b90508481101561201d5750835b98975050505050505050565b5f8361203c5750600b5461ffff16610aaa565b600b5460065461ffff909116906001600160801b0380821691600160801b9004166120678183612710565b43111561207957829350505050610aaa565b5f6120848343612723565b90505f826120938360146126ae565b61209d91906126c5565b612010906014612723565b6001600160a01b0383166120d2578060025f8282546120c79190612710565b909155506121429050565b6001600160a01b0383165f90815260208190526040902054818110156121245760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016109d6565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661215e5760028054829003905561217c565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121c191815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612201576122016126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561227d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122a19190612761565b816001815181106122b4576122b46126e4565b60200260200101906001600160a01b031690816001600160a01b0316815250506122ff307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611488565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123539085905f9086903090429060040161277c565b5f604051808303815f87803b15801561236a575f80fd5b505af115801561237c573d5f803e3d5ffd5b505050505050565b803561ffff811681146112b6575f80fd5b5f80604083850312156123a6575f80fd5b6123af83612384565b91506123bd60208401612384565b90509250929050565b5f6020808352835180828501525f5b818110156123f1578581018301518582016040015282016123d5565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611458575f80fd5b80356112b681612411565b5f8060408385031215612441575f80fd5b823561244c81612411565b946020939093013593505050565b5f805f6060848603121561246c575f80fd5b833561247781612411565b9250602084013561248781612411565b929592945050506040919091013590565b5f602082840312156124a8575f80fd5b8135610aaa81612411565b5f80604083850312156124c4575f80fd5b8235915060208301356001600160801b03811681146124e1575f80fd5b809150509250929050565b8015158114611458575f80fd5b5f806040838503121561250a575f80fd5b823561251581612411565b915060208301356124e1816124ec565b5f60208284031215612535575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215612561575f80fd5b823567ffffffffffffffff80821115612578575f80fd5b818501915085601f83011261258b575f80fd5b81358181111561259d5761259d61253c565b8060051b604051601f19603f830116810181811085821117156125c2576125c261253c565b6040529182528482019250838101850191888311156125df575f80fd5b938501935b8285101561201d576125f585612425565b845293850193928501926125e4565b5f8060408385031215612615575f80fd5b823561262081612411565b915060208301356124e181612411565b600181811c9082168061264457607f821691505b60208210810361266257634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215612678575f80fd5b5051919050565b5f6020828403121561268f575f80fd5b8151610aaa816124ec565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a8657610a8661269a565b5f826126df57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f600182016127095761270961269a565b5060010190565b80820180821115610a8657610a8661269a565b81810381811115610a8657610a8661269a565b5f805f60608486031215612748575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612771575f80fd5b8151610aaa81612411565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156127ca5784516001600160a01b0316835293830193918301916001016127a5565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122029a1cecba6e1a671309756843c7e3529593d2c3686ca92993a090ef698bea31e64736f6c63430008140033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000004000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd2321600000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d410000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3

-----Decoded View---------------
Arg [0] : _uniswapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _musas (address[]): 0xdB5889E35e379Ef0498aaE126fc2CCE1fbD23216,0x80a64c6D7f12C47B7c66c5B4E20E72bc1FCd5d9e,0x3999D2c5207C06BBC5cf8A6bEa52966cabB76d41,0x2C2C82e7CAf5F14e4995c366D9DB8CdFdf7677E3

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd23216
Arg [4] : 00000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e
Arg [5] : 0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d41
Arg [6] : 0000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3


Deployed Bytecode Sourcemap

302:14096:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4088:265;;;;;;;;;;-1:-1:-1;4088:265:9;;;;;:::i;:::-;;:::i;:::-;;771:27;;;;;;;;;;-1:-1:-1;771:27:9;;;;;;;;;;;;;;613:6:10;601:19;;;583:38;;571:2;556:18;771:27:9;;;;;;;;2074:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4293:186::-;;;;;;;;;;-1:-1:-1;4293:186:2;;;;;:::i;:::-;;:::i;:::-;;;1945:14:10;;1938:22;1920:41;;1908:2;1893:18;4293:186:2;1780:187:10;355:51:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2163:32:10;;;2145:51;;2133:2;2118:18;355:51:9;1972:230:10;3144:97:2;;;;;;;;;;-1:-1:-1;3222:12:2;;3144:97;;;2353:25:10;;;2341:2;2326:18;3144:97:2;2207:177:10;5039:244:2;;;;;;;;;;-1:-1:-1;5039:244:2;;;;;:::i;:::-;;:::i;491:28:9:-;;;;;;;;;;-1:-1:-1;491:28:9;;;;-1:-1:-1;;;491:28:9;;-1:-1:-1;;;;;491:28:9;;;;;;-1:-1:-1;;;;;3014:47:10;;;2996:66;;2984:2;2969:18;491:28:9;2850:218:10;3002:82:2;;;;;;;;;;-1:-1:-1;3002:82:2;;3075:2;3215:36:10;;3203:2;3188:18;3002:82:2;3073:184:10;984:38:9;;;;;;;;;;-1:-1:-1;984:38:9;;;;;;;;;;;413;;;;;;;;;;;;;;;944:33;;;;;;;;;;-1:-1:-1;944:33:9;;;;;;;;;;;1169:62;;;;;;;;;;-1:-1:-1;1169:62:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;526:54;;;;;;;;;;;;573:6;526:54;;7333:126;;;;;;;;;;-1:-1:-1;7333:126:9;;;;;:::i;:::-;-1:-1:-1;;;;;7423:28:9;7399:4;7423:28;;;:19;:28;;;;;;;;;7333:126;14120:275;;;;;;;;;;-1:-1:-1;14120:275:9;;;;;:::i;:::-;;:::i;589:25::-;;;;;;;;;;-1:-1:-1;589:25:9;;;;-1:-1:-1;;;;;589:25:9;;;6214:90;;;;;;;;;;;;;:::i;807:27::-;;;;;;;;;;-1:-1:-1;807:27:9;;;;;;;;;;;3299:116:2;;;;;;;;;;-1:-1:-1;3299:116:2;;;;;:::i;:::-;-1:-1:-1;;;;;3390:18:2;3364:7;3390:18;;;;;;;;;;;;3299:116;2293:101:0;;;;;;;;;;;;;:::i;3140:176:9:-;;;;;;;;;;;;;:::i;5764:148::-;;;;;;;;;;-1:-1:-1;5764:148:9;;;;;:::i;:::-;;:::i;7049:99::-;;;;;;;;;;-1:-1:-1;7049:99:9;;;;;:::i;:::-;;:::i;5370:196::-;;;;;;;;;;-1:-1:-1;5370:196:9;;;;;:::i;:::-;;:::i;4641:161::-;;;;;;;;;;-1:-1:-1;4641:161:9;;;;;:::i;:::-;;:::i;4810:256::-;;;;;;;;;;;;;:::i;4361:272::-;;;;;;;;;;-1:-1:-1;4361:272:9;;;;;:::i;:::-;;:::i;1638:85:0:-;;;;;;;;;;-1:-1:-1;1710:6:0;;-1:-1:-1;;;;;1710:6:0;1638:85;;2276:93:2;;;;;;;;;;;;;:::i;5920:286:9:-;;;;;;;;;;-1:-1:-1;5920:286:9;;;;;:::i;:::-;;:::i;3610:178:2:-;;;;;;;;;;-1:-1:-1;3610:178:2;;;;;:::i;:::-;;:::i;1240:57:9:-;;;;;;;;;;-1:-1:-1;1240:57:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;5574:182;;;;;;;;;;-1:-1:-1;5574:182:9;;;;;:::i;:::-;;:::i;3825:255::-;;;;;;;;;;-1:-1:-1;3825:255:9;;;;;:::i;:::-;;:::i;7156:169::-;;;;;;;;;;-1:-1:-1;7156:169:9;;;;;:::i;:::-;;:::i;623:35::-;;;;;;;;;;;;;;;;5074:288;;;;;;;;;;-1:-1:-1;5074:288:9;;;;;:::i;:::-;;:::i;458:26::-;;;;;;;;;;-1:-1:-1;458:26:9;;;;-1:-1:-1;;;;;458:26:9;;;3324:493;;;;;;;;;;-1:-1:-1;3324:493:9;;;;;:::i;:::-;;:::i;738:26::-;;;;;;;;;;-1:-1:-1;738:26:9;;;;;;;;3846:140:2;;;;;;;;;;-1:-1:-1;3846:140:2;;;;;:::i;:::-;-1:-1:-1;;;;;3952:18:2;;;3926:7;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3846:140;6666:375:9;;;;;;;;;;-1:-1:-1;6666:375:9;;;;;:::i;:::-;;:::i;665:33::-;;;;;;;;;;;;;;;;2543:215:0;;;;;;;;;;-1:-1:-1;2543:215:0;;;;;:::i;:::-;;:::i;705:24:9:-;;;;;;;;;;;;;;;;841:28;;;;;;;;;;-1:-1:-1;841:28:9;;;;-1:-1:-1;;;841:28:9;;;;;;878;;;;;;;;;;;;;;;;7467:114;;;;;;;;;;-1:-1:-1;7467:114:9;;;;;:::i;:::-;-1:-1:-1;;;;;7552:21:9;7528:4;7552:21;;;:12;:21;;;;;;;;;7467:114;4088:265;1531:13:0;:11;:13::i;:::-;4212::9::1;:31:::0;;-1:-1:-1;;4254:28:9;4212:31;::::1;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;4254:28:9;;;;;;;::::1;::::0;;::::1;::::0;;;4318:1:::1;-1:-1:-1::0;4301:18:9::1;4293:52;;;::::0;-1:-1:-1;;;4293:52:9;;6644:2:10;4293:52:9::1;::::0;::::1;6626:21:10::0;6683:2;6663:18;;;6656:30;-1:-1:-1;;;6702:18:10;;;6695:51;6763:18;;4293:52:9::1;;;;;;;;;4088:265:::0;;:::o;2074:89:2:-;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;735:10:5;4420:31:2;735:10:5;4436:7:2;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;;:::o;5039:244::-;5126:4;735:10:5;5182:37:2;5198:4;735:10:5;5213:5:2;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;;:::o;14120:275:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;14258:30:9;;::::1;-1:-1:-1::0;;;14258:30:9::1;14234:12;14212:35:::0;;;::::1;14258:30;14212:11;14258:30:::0;14333:4:::1;14212:11;3390:18:2::0;;;;;;;;;;;14299:40:9::1;;14352:35;14366:8;14376:10;14352:13;:35::i;:::-;14201:194;14120:275:::0;;:::o;6214:90::-;1531:13:0;:11;:13::i;:::-;6271:18:9::1;:25:::0;;-1:-1:-1;;6271:25:9::1;::::0;::::1;::::0;;6214:90::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;3140:176:9:-;3192:4;1531:13:0;:11;:13::i;:::-;-1:-1:-1;3209:14:9::1;:22:::0;;-1:-1:-1;;3209:22:9::1;::::0;;3242:12:::1;:16:::0;;-1:-1:-1;;3269:17:9;;;3209:14:::1;3140:176:::0;:::o;5764:148::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5859:38:9;;;::::1;;::::0;;;:30:::1;:38;::::0;;;;:45;;-1:-1:-1;;5859:45:9::1;::::0;::::1;;::::0;;;::::1;::::0;;5764:148::o;7049:99::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;7113:19:9::1;7135:5;7113:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;7113:27:9::1;::::0;;7049:99::o;5370:196::-;1531:13:0;:11;:13::i;:::-;5443:12:9::1;5461:6;-1:-1:-1::0;;;;;5461:11:9::1;5494:21;5461:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5442:89;;;5550:7;5542:16;;;::::0;::::1;4641:161:::0;1531:13:0;:11;:13::i;:::-;4750:10:9::1;::::0;4721:40:::1;::::0;-1:-1:-1;;;;;4750:10:9;;::::1;::::0;4721:40;::::1;::::0;::::1;::::0;4750:10:::1;::::0;4721:40:::1;4772:10;:22:::0;;-1:-1:-1;;;;;;4772:22:9::1;-1:-1:-1::0;;;;;4772:22:9;;;::::1;::::0;;;::::1;::::0;;4641:161::o;4810:256::-;1531:13:0;:11;:13::i;:::-;4888:46:9::1;::::0;-1:-1:-1;;;4888:46:9;;4903:4:::1;4888:46;::::0;::::1;2145:51:10::0;;;4870:15:9::1;::::0;4888:31:::1;::::0;2118:18:10;;4888:46:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4945:51;::::0;-1:-1:-1;;;4945:51:9;;4976:10:::1;4945:51;::::0;::::1;7750::10::0;7817:18;;;7810:34;;;4870:64:9;;-1:-1:-1;4960:4:9::1;::::0;4945:30:::1;::::0;7723:18:10;;4945:51:9::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;5007:51:9::1;::::0;5015:10:::1;::::0;5036:21:::1;5007:51:::0;::::1;;;::::0;::::1;::::0;;;5036:21;5015:10;5007:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;4361:272:::0;1531:13:0;:11;:13::i;:::-;4487:14:9::1;:32:::0;;-1:-1:-1;;4530:30:9;-1:-1:-1;;;4487:32:9::1;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;4530:30:9;;;;;;;;::::1;::::0;;::::1;;::::0;;;4597:1:::1;-1:-1:-1::0;4579:19:9::1;4571:54;;;::::0;-1:-1:-1;;;4571:54:9;;8307:2:10;4571:54:9::1;::::0;::::1;8289:21:10::0;8346:2;8326:18;;;8319:30;-1:-1:-1;;;8365:18:10;;;8358:52;8427:18;;4571:54:9::1;8105:346:10::0;2276:93:2;2323:13;2355:7;2348:14;;;;;:::i;5920:286:9:-;1531:13:0;:11;:13::i;:::-;6046::9::1;-1:-1:-1::0;;;;;6038:21:9::1;:4;-1:-1:-1::0;;;;;6038:21:9::1;::::0;6016:128:::1;;;::::0;-1:-1:-1;;;6016:128:9;;8658:2:10;6016:128:9::1;::::0;::::1;8640:21:10::0;8697:2;8677:18;;;8670:30;8736:34;8716:18;;;8709:62;8807:27;8787:18;;;8780:55;8852:19;;6016:128:9::1;8456:421:10::0;6016:128:9::1;6157:41;6186:4;6192:5;6157:28;:41::i;3610:178:2:-:0;3679:4;735:10:5;3733:27:2;735:10:5;3750:2:2;3754:5;3733:9;:27::i;5574:182:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5659:28:9;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;5659:39:9::1;::::0;::::1;;::::0;;::::1;::::0;;;5714:34;;1920:41:10;;;5714:34:9::1;::::0;1893:18:10;5714:34:9::1;;;;;;;5574:182:::0;;:::o;3825:255::-;1531:13:0;:11;:13::i;:::-;3966:4:9::1;3958;3936:13;3222:12:2::0;;;3144:97;3936:13:9::1;:18;::::0;3952:2:::1;3936:18;:::i;:::-;3935:27;;;;:::i;:::-;3934:36;;;;:::i;:::-;3924:6;:46;;3902:130;;;::::0;-1:-1:-1;;;3902:130:9;;9611:2:10;3902:130:9::1;::::0;::::1;9593:21:10::0;9650:2;9630:18;;;9623:30;9689:34;9669:18;;;9662:62;-1:-1:-1;;;9740:18:10;;;9733:32;9782:19;;3902:130:9::1;9409:398:10::0;3902:130:9::1;4055:17;:6:::0;4065::::1;4055:17;:::i;:::-;4043:9;:29:::0;-1:-1:-1;3825:255:9:o;7156:169::-;1531:13:0;:11;:13::i;:::-;7233:6:9::1;7229:89;7245:6;:13;7241:1;:17;7229:89;;;7280:10;7296:6;7303:1;7296:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;7280:26;;::::1;::::0;::::1;::::0;;-1:-1:-1;7280:26:9;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;7280:26:9::1;-1:-1:-1::0;;;;;7280:26:9;;::::1;::::0;;;::::1;::::0;;7260:3;::::1;::::0;::::1;:::i;:::-;;;;7229:89;;5074:288:::0;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;5169:20:9;::::1;5161:59;;;::::0;-1:-1:-1;;;5161:59:9;;10286:2:10;5161:59:9::1;::::0;::::1;10268:21:10::0;10325:2;10305:18;;;10298:30;10364:28;10344:18;;;10337:56;10410:18;;5161:59:9::1;10084:350:10::0;5161:59:9::1;5258:39;::::0;-1:-1:-1;;;5258:39:9;;5291:4:::1;5258:39;::::0;::::1;2145:51:10::0;5231:24:9::1;::::0;-1:-1:-1;;;;;5258:24:9;::::1;::::0;::::1;::::0;2118:18:10;;5258:39:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5308:46;::::0;-1:-1:-1;;;5308:46:9;;-1:-1:-1;;;;;7768:32:10;;;5308:46:9::1;::::0;::::1;7750:51:10::0;7817:18;;;7810:34;;;5231:66:9;;-1:-1:-1;5308:23:9;;::::1;::::0;::::1;::::0;7723:18:10;;5308:46:9::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5150:212;5074:288:::0;;:::o;3324:493::-;3432:4;1531:13:0;:11;:13::i;:::-;3511:6:9::1;3490:13;3222:12:2::0;;;3144:97;3490:13:9::1;:17;::::0;3506:1:::1;3490:17;:::i;:::-;3489:28;;;;:::i;:::-;3476:9;:41;;3454:142;;;::::0;-1:-1:-1;;;3454:142:9;;10641:2:10;3454:142:9::1;::::0;::::1;10623:21:10::0;10680:2;10660:18;;;10653:30;10719:34;10699:18;;;10692:62;-1:-1:-1;;;10770:18:10;;;10763:49;10829:19;;3454:142:9::1;10439:415:10::0;3454:142:9::1;3664:4;3643:13;3222:12:2::0;;;3144:97;3643:13:9::1;:17;::::0;3659:1:::1;3643:17;:::i;:::-;3642:26;;;;:::i;:::-;3629:9;:39;;3607:139;;;::::0;-1:-1:-1;;;3607:139:9;;11061:2:10;3607:139:9::1;::::0;::::1;11043:21:10::0;11100:2;11080:18;;;11073:30;11139:34;11119:18;;;11112:62;-1:-1:-1;;;11190:18:10;;;11183:48;11248:19;;3607:139:9::1;10859:414:10::0;3607:139:9::1;-1:-1:-1::0;3757:18:9::1;:30:::0;;;3805:4:::1;1554:1:0;3324:493:9::0;;;:::o;6666:375::-;1531:13:0;:11;:13::i;:::-;6754:18:9::1;::::0;;;::::1;;;6753:19;6745:65;;;::::0;-1:-1:-1;;;6745:65:9;;11480:2:10;6745:65:9::1;::::0;::::1;11462:21:10::0;11519:2;11499:18;;;11492:30;11558:34;11538:18;;;11531:62;-1:-1:-1;;;11609:18:10;;;11602:31;11650:19;;6745:65:9::1;11278:397:10::0;6745:65:9::1;6864:13;-1:-1:-1::0;;;;;6843:35:9::1;:9;-1:-1:-1::0;;;;;6843:35:9::1;;;:76;;;;;6903:15;-1:-1:-1::0;;;;;6882:37:9::1;:9;-1:-1:-1::0;;;;;6882:37:9::1;;;6843:76;6821:171;;;::::0;-1:-1:-1;;;6821:171:9;;11882:2:10;6821:171:9::1;::::0;::::1;11864:21:10::0;11921:2;11901:18;;;11894:30;11960:34;11940:18;;;11933:62;-1:-1:-1;;;12011:18:10;;;12004:42;12063:19;;6821:171:9::1;11680:408:10::0;6821:171:9::1;-1:-1:-1::0;;;;;7003:23:9::1;;::::0;;;:12:::1;:23;::::0;;;;:30;;-1:-1:-1;;7003:30:9::1;7029:4;7003:30;::::0;;6666:375::o;2543:215:0:-;1531:13;:11;:13::i;:::-;-1:-1:-1;;;;;2627:22:0;::::1;2623:91;;2672:31;::::0;-1:-1:-1;;;2672:31:0;;2700:1:::1;2672:31;::::0;::::1;2145:51:10::0;2118:18;;2672:31:0::1;1972:230:10::0;2623:91:0::1;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;1796:162::-;1710:6;;-1:-1:-1;;;;;1710:6:0;735:10:5;1855:23:0;1851:101;;1901:40;;-1:-1:-1;;;1901:40:0;;735:10:5;1901:40:0;;;2145:51:10;2118:18;;1901:40:0;1972:230:10;8997:128:2;9081:37;9090:5;9097:7;9106:5;9113:4;9081:8;:37::i;10671:477::-;-1:-1:-1;;;;;3952:18:2;;;10770:24;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10836:37:2;;10832:310;;10912:5;10893:16;:24;10889:130;;;10944:60;;-1:-1:-1;;;10944:60:2;;-1:-1:-1;;;;;12313:32:10;;10944:60:2;;;12295:51:10;12362:18;;;12355:34;;;12405:18;;;12398:34;;;12268:18;;10944:60:2;12093:345:10;10889:130:2;11060:57;11069:5;11076:7;11104:5;11085:16;:24;11111:5;11060:8;:57::i;7589:3338:9:-;-1:-1:-1;;;;;7721:18:9;;7713:68;;;;-1:-1:-1;;;7713:68:9;;12645:2:10;7713:68:9;;;12627:21:10;12684:2;12664:18;;;12657:30;12723:34;12703:18;;;12696:62;-1:-1:-1;;;12774:18:10;;;12767:35;12819:19;;7713:68:9;12443:401:10;7713:68:9;-1:-1:-1;;;;;7800:16:9;;7792:64;;;;-1:-1:-1;;;7792:64:9;;13051:2:10;7792:64:9;;;13033:21:10;13090:2;13070:18;;;13063:30;13129:34;13109:18;;;13102:62;-1:-1:-1;;;13180:18:10;;;13173:33;13223:19;;7792:64:9;12849:399:10;7792:64:9;-1:-1:-1;;;;;7876:18:9;;;;;;:12;:18;;;;;;;;7875:19;7867:49;;;;-1:-1:-1;;;7867:49:9;;13455:2:10;7867:49:9;;;13437:21:10;13494:2;13474:18;;;13467:30;-1:-1:-1;;;13513:18:10;;;13506:48;13571:18;;7867:49:9;13253:342:10;7867:49:9;-1:-1:-1;;;;;7936:16:9;;;;;;:12;:16;;;;;;;;7935:17;7927:49;;;;-1:-1:-1;;;7927:49:9;;13802:2:10;7927:49:9;;;13784:21:10;13841:2;13821:18;;;13814:30;-1:-1:-1;;;13860:18:10;;;13853:50;13920:18;;7927:49:9;13600:344:10;7927:49:9;7993:6;8003:1;7993:11;7989:93;;8021:28;8037:4;8043:2;8047:1;8021:15;:28::i;7989:93::-;8117:14;;;;;;;8144:1450;;;;1710:6:0;;-1:-1:-1;;;;;8202:15:9;;;1710:6:0;;8202:15:9;;;;:49;;-1:-1:-1;1710:6:0;;-1:-1:-1;;;;;8238:13:9;;;1710:6:0;;8238:13:9;;8202:49;:86;;;;-1:-1:-1;;;;;;8272:16:9;;;;8202:86;:128;;;;-1:-1:-1;;;;;;8309:21:9;;8323:6;8309:21;;8202:128;:159;;;;-1:-1:-1;8352:9:9;;;;8351:10;8202:159;8180:1403;;;-1:-1:-1;;;;;8450:31:9;;;;;;:25;:31;;;;;;;;:91;;;;-1:-1:-1;;;;;;8507:34:9;;;;;;:30;:34;;;;;;;;8506:35;8450:91;8424:1144;;;8628:20;;8618:6;:30;;8584:169;;;;-1:-1:-1;;;8584:169:9;;14151:2:10;8584:169:9;;;14133:21:10;14190:2;14170:18;;;14163:30;14229:34;14209:18;;;14202:62;-1:-1:-1;;;14280:18:10;;;14273:51;14341:19;;8584:169:9;13949:417:10;8584:169:9;8836:9;;-1:-1:-1;;;;;3390:18:2;;3364:7;3390:18;;;;;;;;;;;8810:22:9;;:6;:22;:::i;:::-;:35;;8776:140;;;;-1:-1:-1;;;8776:140:9;;14703:2:10;8776:140:9;;;14685:21:10;14742:2;14722:18;;;14715:30;-1:-1:-1;;;14761:18:10;;;14754:49;14820:18;;8776:140:9;14501:343:10;8776:140:9;8424:1144;;;-1:-1:-1;;;;;9014:29:9;;;;;;:25;:29;;;;;;;;:91;;;;-1:-1:-1;;;;;;9069:36:9;;;;;;:30;:36;;;;;;;;9068:37;9014:91;8988:580;;;9192:20;;9182:6;:30;;9148:170;;;;-1:-1:-1;;;9148:170:9;;15051:2:10;9148:170:9;;;15033:21:10;15090:2;15070:18;;;15063:30;15129:34;15109:18;;;15102:62;-1:-1:-1;;;15180:18:10;;;15173:52;15242:19;;9148:170:9;14849:418:10;8988:580:9;-1:-1:-1;;;;;9349:34:9;;;;;;:30;:34;;;;;;;;9344:224;;9468:9;;-1:-1:-1;;;;;3390:18:2;;3364:7;3390:18;;;;;;;;;;;9442:22:9;;:6;:22;:::i;:::-;:35;;9408:140;;;;-1:-1:-1;;;9408:140:9;;14703:2:10;9408:140:9;;;14685:21:10;14742:2;14722:18;;;14715:30;-1:-1:-1;;;14761:18:10;;;14754:49;14820:18;;9408:140:9;14501:343:10;9408:140:9;9655:4;9606:28;3390:18:2;;;;;;;;;;;9713::9;;9689:42;;;;;;;9762:34;;-1:-1:-1;9787:9:9;;;;9786:10;9762:34;:83;;;;-1:-1:-1;;;;;;9814:31:9;;;;;;:25;:31;;;;;;;;9813:32;9762:83;:126;;;;-1:-1:-1;;;;;;9863:25:9;;;;;;:19;:25;;;;;;;;9862:26;9762:126;:167;;;;-1:-1:-1;;;;;;9906:23:9;;;;;;:19;:23;;;;;;;;9905:24;9762:167;9744:302;;;9956:9;:16;;-1:-1:-1;;9956:16:9;9968:4;9956:16;;;9989:11;:9;:11::i;:::-;10017:9;:17;;-1:-1:-1;;10017:17:9;;;9744:302;10074:9;;-1:-1:-1;;;;;10100:25:9;;10058:12;10100:25;;;:19;:25;;;;;;10074:9;;;;10073:10;;10100:25;;:52;;-1:-1:-1;;;;;;10129:23:9;;;;;;:19;:23;;;;;;;;10100:52;10096:100;;;-1:-1:-1;10179:5:9;10096:100;10208:12;10239:7;10235:639;;;-1:-1:-1;;;;;10267:29:9;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;10300:13:9;;;;;;;:17;;10267:50;10263:462;;;10401:3;10354:44;10372:15;10389:2;10393:4;10354:17;:44::i;:::-;10345:53;;:6;:53;:::i;:::-;:59;;;;:::i;:::-;10448:14;;10338:66;;-1:-1:-1;10466:3:9;;10441:21;;-1:-1:-1;;;10448:14:9;;;;10338:66;10441:21;:::i;:::-;10440:29;;;;:::i;:::-;10423:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;10263:462:9;;-1:-1:-1;10263:462:9;;-1:-1:-1;;;;;10508:31:9;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;10543:12:9;;;;:16;;10508:51;10504:221;;;10642:3;10596:43;10613:15;10630:2;10634:4;10596:16;:43::i;:::-;10587:52;;:6;:52;:::i;:::-;:58;;;;:::i;:::-;10689:13;;10580:65;;-1:-1:-1;10706:3:9;;10682:20;;10689:13;;;;;10580:65;10682:20;:::i;:::-;10681:28;;;;:::i;:::-;10664:13;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;10504:221:9;10745:8;;10741:91;;10774:42;10790:4;10804;10811;10774:15;:42::i;:::-;10848:14;10858:4;10848:14;;:::i;:::-;;;10235:639;10886:33;10902:4;10908:2;10912:6;10886:15;:33::i;:::-;7702:3225;;;;;7589:3338;;;:::o;11615:365::-;11697:62;11714:4;11729:15;11747:11;11697:8;:62::i;:::-;11772:15;-1:-1:-1;;;;;11772:31:9;;11811:9;11844:4;11864:11;11890:1;11907;11924:7;1710:6:0;;-1:-1:-1;;;;;1710:6:0;;1638:85;11924:7:9;11772:200;;;;;;-1:-1:-1;;;;;;11772:200:9;;;-1:-1:-1;;;;;15764:15:10;;;11772:200:9;;;15746:34:10;15796:18;;;15789:34;;;;15839:18;;;15832:34;;;;15882:18;;;15875:34;15946:15;;;15925:19;;;15918:44;11946:15:9;15978:19:10;;;15971:35;15680:19;;11772:200:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;11615:365;;:::o;2912:187:0:-;3004:6;;;-1:-1:-1;;;;;3020:17:0;;;-1:-1:-1;;;;;;3020:17:0;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;10935:188:9:-;-1:-1:-1;;;;;11018:31:9;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;11018:39:9;;;;;;;;;;11075:40;;11018:39;;:31;11075:40;;;10935:188;;:::o;9957:432:2:-;-1:-1:-1;;;;;10069:19:2;;10065:89;;10111:32;;-1:-1:-1;;;10111:32:2;;10140:1;10111:32;;;2145:51:10;2118:18;;10111:32:2;1972:230:10;10065:89:2;-1:-1:-1;;;;;10167:21:2;;10163:90;;10211:31;;-1:-1:-1;;;10211:31:2;;10239:1;10211:31;;;2145:51:10;2118:18;;10211:31:2;1972:230:10;10163:90:2;-1:-1:-1;;;;;10262:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10307:76;;;;10357:7;-1:-1:-1;;;;;10341:31:2;10350:5;-1:-1:-1;;;;;10341:31:2;;10366:5;10341:31;;;;2353:25:10;;2341:2;2326:18;;2207:177;10341:31:2;;;;;;;;9957:432;;;;:::o;5656:308::-;-1:-1:-1;;;;;5747:18:2;;5743:86;;5788:30;;-1:-1:-1;;;5788:30:2;;5815:1;5788:30;;;2145:51:10;2118:18;;5788:30:2;1972:230:10;5743:86:2;-1:-1:-1;;;;;5842:16:2;;5838:86;;5881:32;;-1:-1:-1;;;5881:32:2;;5910:1;5881:32;;;2145:51:10;2118:18;;5881:32:2;1972:230:10;5838:86:2;5933:24;5941:4;5947:2;5951:5;5933:7;:24::i;11988:702:9:-;12072:4;12028:23;3390:18:2;;;;;;;;;;;12117:13:9;;3390:18:2;;12170:20:9;;;:46;;-1:-1:-1;12194:22:9;;12170:46;12166:85;;;12233:7;;;11988:702::o;12166:85::-;12285:18;;:23;;12306:2;12285:23;:::i;:::-;12267:15;:41;12263:115;;;12343:18;;:23;;12364:2;12343:23;:::i;:::-;12325:41;;12263:115;12419:15;12445:37;12419:15;12445:17;:37::i;:::-;12495:18;12590:13;:17;;;12640:10;;12632:47;;12516:21;;;;-1:-1:-1;;;;;12640:10:9;;12516:21;;12632:47;12495:18;12632:47;12516:21;12640:10;12632:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;11988:702:9:o;12698:698::-;12797:7;12821:15;12817:54;;-1:-1:-1;12858:13:9;;;;;;;12851:20;;12817:54;12909:13;;12956:11;;12909:13;;;;;;;-1:-1:-1;;;;;12956:11:9;;;;-1:-1:-1;;;13003:13:9;;;13047:29;13003:13;12956:11;13047:29;:::i;:::-;13032:12;:44;13029:82;;;-1:-1:-1;;13098:13:9;;;;;;;;-1:-1:-1;13091:20:9;;-1:-1:-1;13091:20:9;13029:82;13124:30;13157:27;13172:12;13157;:27;:::i;:::-;13124:60;-1:-1:-1;13195:18:9;13259:14;13223:27;13124:60;13223:2;:27;:::i;:::-;13222:52;;;;:::i;:::-;13216:59;;:2;:59;:::i;:::-;13195:80;;13302:14;13289:10;:27;13286:72;;;-1:-1:-1;13344:14:9;13286:72;13378:10;12698:698;-1:-1:-1;;;;;;;;12698:698:9:o;13404:708::-;13502:7;13526:15;13522:53;;-1:-1:-1;13563:12:9;;;;13556:19;;13522:53;13620:12;;13666:11;;13620:12;;;;;-1:-1:-1;;;;;13666:11:9;;;;-1:-1:-1;;;13713:13:9;;;13757:29;13713:13;13666:11;13757:29;:::i;:::-;13742:12;:44;13739:82;;;13808:13;13801:20;;;;;;;13739:82;13834:30;13867:27;13882:12;13867;:27;:::i;:::-;13834:60;-1:-1:-1;13905:18:9;13969:14;13933:27;13834:60;13933:2;:27;:::i;:::-;13932:52;;;;:::i;:::-;13926:59;;:2;:59;:::i;6279:1107:2:-;-1:-1:-1;;;;;6368:18:2;;6364:540;;6520:5;6504:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6364:540:2;;-1:-1:-1;6364:540:2;;-1:-1:-1;;;;;6578:15:2;;6556:19;6578:15;;;;;;;;;;;6611:19;;;6607:115;;;6657:50;;-1:-1:-1;;;6657:50:2;;-1:-1:-1;;;;;12313:32:10;;6657:50:2;;;12295:51:10;12362:18;;;12355:34;;;12405:18;;;12398:34;;;12268:18;;6657:50:2;12093:345:10;6607:115:2;-1:-1:-1;;;;;6842:15:2;;:9;:15;;;;;;;;;;6860:19;;;;6842:37;;6364:540;-1:-1:-1;;;;;6918:16:2;;6914:425;;7081:12;:21;;;;;;;6914:425;;;-1:-1:-1;;;;;7292:13:2;;:9;:13;;;;;;;;;;:22;;;;;;6914:425;7369:2;-1:-1:-1;;;;;7354:25:2;7363:4;-1:-1:-1;;;;;7354:25:2;;7373:5;7354:25;;;;2353::10;;2341:2;2326:18;;2207:177;7354:25:2;;;;;;;;6279:1107;;;:::o;11131:476:9:-;11222:16;;;11236:1;11222:16;;;;;;;;11198:21;;11222:16;;;;;;;;;;-1:-1:-1;11222:16:9;11198:40;;11267:4;11249;11254:1;11249:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;11249:23:9;;;-1:-1:-1;;;;;11249:23:9;;;;;11293:15;-1:-1:-1;;;;;11293:20:9;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11283:4;11288:1;11283:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;11283:32:9;;;-1:-1:-1;;;;;11283:32:9;;;;;11328:62;11345:4;11360:15;11378:11;11328:8;:62::i;:::-;11403:196;;-1:-1:-1;;;11403:196:9;;-1:-1:-1;;;;;11403:15:9;:66;;;;:196;;11484:11;;11510:1;;11526:4;;11553;;11573:15;;11403:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11187:420;11131:476;:::o;14:159:10:-;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;178:256;244:6;252;305:2;293:9;284:7;280:23;276:32;273:52;;;321:1;318;311:12;273:52;344:28;362:9;344:28;:::i;:::-;334:38;;391:37;424:2;413:9;409:18;391:37;:::i;:::-;381:47;;178:256;;;;;:::o;632:548::-;744:4;773:2;802;791:9;784:21;834:6;828:13;877:6;872:2;861:9;857:18;850:34;902:1;912:140;926:6;923:1;920:13;912:140;;;1021:14;;;1017:23;;1011:30;987:17;;;1006:2;983:26;976:66;941:10;;912:140;;;916:3;1101:1;1096:2;1087:6;1076:9;1072:22;1068:31;1061:42;1171:2;1164;1160:7;1155:2;1147:6;1143:15;1139:29;1128:9;1124:45;1120:54;1112:62;;;;632:548;;;;:::o;1185:131::-;-1:-1:-1;;;;;1260:31:10;;1250:42;;1240:70;;1306:1;1303;1296:12;1321:134;1389:20;;1418:31;1389:20;1418:31;:::i;1460:315::-;1528:6;1536;1589:2;1577:9;1568:7;1564:23;1560:32;1557:52;;;1605:1;1602;1595:12;1557:52;1644:9;1631:23;1663:31;1688:5;1663:31;:::i;:::-;1713:5;1765:2;1750:18;;;;1737:32;;-1:-1:-1;;;1460:315:10:o;2389:456::-;2466:6;2474;2482;2535:2;2523:9;2514:7;2510:23;2506:32;2503:52;;;2551:1;2548;2541:12;2503:52;2590:9;2577:23;2609:31;2634:5;2609:31;:::i;:::-;2659:5;-1:-1:-1;2716:2:10;2701:18;;2688:32;2729:33;2688:32;2729:33;:::i;:::-;2389:456;;2781:7;;-1:-1:-1;;;2835:2:10;2820:18;;;;2807:32;;2389:456::o;3470:247::-;3529:6;3582:2;3570:9;3561:7;3557:23;3553:32;3550:52;;;3598:1;3595;3588:12;3550:52;3637:9;3624:23;3656:31;3681:5;3656:31;:::i;3722:369::-;3790:6;3798;3851:2;3839:9;3830:7;3826:23;3822:32;3819:52;;;3867:1;3864;3857:12;3819:52;3903:9;3890:23;3880:33;;3963:2;3952:9;3948:18;3935:32;-1:-1:-1;;;;;4000:5:10;3996:46;3989:5;3986:57;3976:85;;4057:1;4054;4047:12;3976:85;4080:5;4070:15;;;3722:369;;;;;:::o;4096:118::-;4182:5;4175:13;4168:21;4161:5;4158:32;4148:60;;4204:1;4201;4194:12;4219:382;4284:6;4292;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;4400:9;4387:23;4419:31;4444:5;4419:31;:::i;:::-;4469:5;-1:-1:-1;4526:2:10;4511:18;;4498:32;4539:30;4498:32;4539:30;:::i;4606:180::-;4665:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:52;;;4734:1;4731;4724:12;4686:52;-1:-1:-1;4757:23:10;;4606:180;-1:-1:-1;4606:180:10:o;4791:127::-;4852:10;4847:3;4843:20;4840:1;4833:31;4883:4;4880:1;4873:15;4907:4;4904:1;4897:15;4923:1121;5007:6;5038:2;5081;5069:9;5060:7;5056:23;5052:32;5049:52;;;5097:1;5094;5087:12;5049:52;5137:9;5124:23;5166:18;5207:2;5199:6;5196:14;5193:34;;;5223:1;5220;5213:12;5193:34;5261:6;5250:9;5246:22;5236:32;;5306:7;5299:4;5295:2;5291:13;5287:27;5277:55;;5328:1;5325;5318:12;5277:55;5364:2;5351:16;5386:2;5382;5379:10;5376:36;;;5392:18;;:::i;:::-;5438:2;5435:1;5431:10;5470:2;5464:9;5533:2;5529:7;5524:2;5520;5516:11;5512:25;5504:6;5500:38;5588:6;5576:10;5573:22;5568:2;5556:10;5553:18;5550:46;5547:72;;;5599:18;;:::i;:::-;5635:2;5628:22;5685:18;;;5719:15;;;;-1:-1:-1;5761:11:10;;;5757:20;;;5789:19;;;5786:39;;;5821:1;5818;5811:12;5786:39;5845:11;;;;5865:148;5881:6;5876:3;5873:15;5865:148;;;5947:23;5966:3;5947:23;:::i;:::-;5935:36;;5898:12;;;;5991;;;;5865:148;;6049:388;6117:6;6125;6178:2;6166:9;6157:7;6153:23;6149:32;6146:52;;;6194:1;6191;6184:12;6146:52;6233:9;6220:23;6252:31;6277:5;6252:31;:::i;:::-;6302:5;-1:-1:-1;6359:2:10;6344:18;;6331:32;6372:33;6331:32;6372:33;:::i;6792:380::-;6871:1;6867:12;;;;6914;;;6935:61;;6989:4;6981:6;6977:17;6967:27;;6935:61;7042:2;7034:6;7031:14;7011:18;7008:38;7005:161;;7088:10;7083:3;7079:20;7076:1;7069:31;7123:4;7120:1;7113:15;7151:4;7148:1;7141:15;7005:161;;6792:380;;;:::o;7387:184::-;7457:6;7510:2;7498:9;7489:7;7485:23;7481:32;7478:52;;;7526:1;7523;7516:12;7478:52;-1:-1:-1;7549:16:10;;7387:184;-1:-1:-1;7387:184:10:o;7855:245::-;7922:6;7975:2;7963:9;7954:7;7950:23;7946:32;7943:52;;;7991:1;7988;7981:12;7943:52;8023:9;8017:16;8042:28;8064:5;8042:28;:::i;8882:127::-;8943:10;8938:3;8934:20;8931:1;8924:31;8974:4;8971:1;8964:15;8998:4;8995:1;8988:15;9014:168;9087:9;;;9118;;9135:15;;;9129:22;;9115:37;9105:71;;9156:18;;:::i;9187:217::-;9227:1;9253;9243:132;;9297:10;9292:3;9288:20;9285:1;9278:31;9332:4;9329:1;9322:15;9360:4;9357:1;9350:15;9243:132;-1:-1:-1;9389:9:10;;9187:217::o;9812:127::-;9873:10;9868:3;9864:20;9861:1;9854:31;9904:4;9901:1;9894:15;9928:4;9925:1;9918:15;9944:135;9983:3;10004:17;;;10001:43;;10024:18;;:::i;:::-;-1:-1:-1;10071:1:10;10060:13;;9944:135::o;14371:125::-;14436:9;;;14457:10;;;14454:36;;;14470:18;;:::i;15272:128::-;15339:9;;;15360:11;;;15357:37;;;15374:18;;:::i;16017:306::-;16105:6;16113;16121;16174:2;16162:9;16153:7;16149:23;16145:32;16142:52;;;16190:1;16187;16180:12;16142:52;16219:9;16213:16;16203:26;;16269:2;16258:9;16254:18;16248:25;16238:35;;16313:2;16302:9;16298:18;16292:25;16282:35;;16017:306;;;;;:::o;16328:251::-;16398:6;16451:2;16439:9;16430:7;16426:23;16422:32;16419:52;;;16467:1;16464;16457:12;16419:52;16499:9;16493:16;16518:31;16543:5;16518:31;:::i;16584:980::-;16846:4;16894:3;16883:9;16879:19;16925:6;16914:9;16907:25;16951:2;16989:6;16984:2;16973:9;16969:18;16962:34;17032:3;17027:2;17016:9;17012:18;17005:31;17056:6;17091;17085:13;17122:6;17114;17107:22;17160:3;17149:9;17145:19;17138:26;;17199:2;17191:6;17187:15;17173:29;;17220:1;17230:195;17244:6;17241:1;17238:13;17230:195;;;17309:13;;-1:-1:-1;;;;;17305:39:10;17293:52;;17400:15;;;;17365:12;;;;17341:1;17259:9;17230:195;;;-1:-1:-1;;;;;;;17481:32:10;;;;17476:2;17461:18;;17454:60;-1:-1:-1;;;17545:3:10;17530:19;17523:35;17442:3;16584:980;-1:-1:-1;;;16584:980:10:o

Swarm Source

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