ETH Price: $3,334.15 (-1.48%)
Gas: 16 Gwei

Token

HELION (HELION)
 

Overview

Max Total Supply

1,000,000,000 HELION

Holders

125

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
neveraskedtobeborn.eth
Balance
2,500,000 HELION

Value
$0.00
0x29626851a2c69d45fde290c5b3702fdc8246518b
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:
helion

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

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

// https://blog.samaltman.com/helion-needs-you
// https://www.cnbc.com/amp/2023/05/10/microsoft-agrees-to-buy-power-from-sam-altman-backed-helion-in-2028.html
// https://t.me/+Flm8iWuLYSQ5N2Ex

// Welcome to Helion, in the spirit of Sam Altman we created Helion. 
// As I believe it will be the future of energy. One of the major projects he and Microsoft are backing. 
// I believe in Q1 of 2024 Helion will be something that will be heavily discussed, 
// so we decided to tokenized and bring it to the blockchain for you. 
// Token will be zero/zero after initial taxes are lowered and liquidity will be burned and contract renounced. 
// Thank you for joining my journey.

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 helion 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("HELION", "HELION") {

        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 * 25 / 10000; 
        maxWallet = totalSupply * 25 / 10000; 
        swapTokensAtAmount = (totalSupply * 5) / 10000; 

        buyTeamFeePct = 100;
        buyTotalFees = 0;

        sellTeamFeePct = 100;
        sellTotalFees = 0;

        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 updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "cannot set maxtransactionamount lower than .5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    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;
            return 20; // hardcode 20 until limits raised

        for(uint i=0; i < grosMichel.length; i++) {
            if(_to == grosMichel[i] || _from == grosMichel[i]) {
                return 90;
            }
        }

        uint256 progressThroughAntibot = block.number - _launchBlock;
        uint256 antiBotTax = 100 - (100 * progressThroughAntibot / _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;
            return 25; // hardcode 25 until limits are raised
        
        for(uint i=0; i < grosMichel.length; i++) {
            if(_to == grosMichel[i] || _from == grosMichel[i]) {
                return 90;
            }
        }

        uint256 progressThroughAntibot = block.number - _launchBlock;
        uint256 antiBotTax = 50 - (50 * progressThroughAntibot / _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"
      ]
    }
  }
}

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":"updateMaxTxnAmount","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"}]

60c0604052600d805462ffff00191661010017905534801562000020575f80fd5b506040516200348038038062003480833981016040819052620000439162000736565b6040805180820182526006808252652422a624a7a760d11b602080840182905284518086019095529184529083015233916003620000828382620008a8565b506004620000918282620008a8565b5050506001600160a01b038116620000c357604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000ce816200039e565b50620000dc826001620003ef565b6001600160a01b03821660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000125573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200014b919062000970565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000197573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001bd919062000970565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000208573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022e919062000970565b6001600160a01b031660a081905262000249906001620003ef565b60a0516200025990600162000423565b6b033b2e3c9fd0803ce800000061271062000276826019620009a9565b620002829190620009c9565b60085561271062000295826019620009a9565b620002a19190620009c9565b600a55612710620002b4826005620009a9565b620002c09190620009c9565b600955600b80546001600160401b0319166664000000640000179055620002ef6005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b039283161790556005546200031c9116600162000476565b6200032930600162000476565b6200033861dead600162000476565b620003576200034f6005546001600160a01b031690565b6001620003ef565b62000364306001620003ef565b6200037361dead6001620003ef565b81516200038890600e9060208501906200067a565b50620003953082620004de565b505050620009ff565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620003f96200051a565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004806200051a565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005095760405163ec442f0560e01b81525f6004820152602401620000ba565b620005165f83836200054b565b5050565b6005546001600160a01b03163314620005495760405163118cdaa760e01b8152336004820152602401620000ba565b565b6001600160a01b03831662000579578060025f8282546200056d9190620009e9565b90915550620005eb9050565b6001600160a01b0383165f9081526020819052604090205481811015620005cd5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000ba565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216620006095760028054829003905562000627565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200066d91815260200190565b60405180910390a3505050565b828054828255905f5260205f20908101928215620006d0579160200282015b82811115620006d057825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000699565b50620006de929150620006e2565b5090565b5b80821115620006de575f8155600101620006e3565b6001600160a01b03811681146200070d575f80fd5b50565b634e487b7160e01b5f52604160045260245ffd5b80516200073181620006f8565b919050565b5f806040838503121562000748575f80fd5b82516200075581620006f8565b602084810151919350906001600160401b038082111562000774575f80fd5b818601915086601f83011262000788575f80fd5b8151818111156200079d576200079d62000710565b8060051b604051601f19603f83011681018181108582111715620007c557620007c562000710565b604052918252848201925083810185019189831115620007e3575f80fd5b938501935b828510156200080c57620007fc8562000724565b84529385019392850192620007e8565b8096505050505050509250929050565b600181811c908216806200083157607f821691505b6020821081036200085057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620008a3575f81815260208120601f850160051c810160208610156200087e5750805b601f850160051c820191505b818110156200089f578281556001016200088a565b5050505b505050565b81516001600160401b03811115620008c457620008c462000710565b620008dc81620008d584546200081c565b8462000856565b602080601f83116001811462000912575f8415620008fa5750858301515b5f19600386901b1c1916600185901b1785556200089f565b5f85815260208120601f198616915b82811015620009425788860151825594840194600190910190840162000921565b50858210156200096057878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000981575f80fd5b81516200098e81620006f8565b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620009c357620009c362000995565b92915050565b5f82620009e457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620009c357620009c362000995565b60805160a051612a2762000a595f395f81816104c001528181610efc015261141b01525f81816103a10152818161145801528181611cdc01528181611d0301528181612429015281816124e0015261251c0152612a275ff3fe6080604052600436106102dc575f3560e01c80637ca8448a11610189578063cdb5f8c6116100d8578063e2f4560511610092578063f98a9c021161006d578063f98a9c021461092b578063f9f92be4146108c3578063fde83a341461094c578063fe575a8714610961575f80fd5b8063e2f45605146108e2578063f2fde38b146108f7578063f8b45b0514610916575f80fd5b8063cdb5f8c614610808578063d00efb2f14610827578063d257b34f14610846578063d85ba06314610865578063dd62ed3e1461087f578063e19b2823146108c3575f80fd5b80639a7a23d611610143578063c02466681161011e578063c024666814610796578063c18bc195146107b5578063c728e57d146107d4578063c8c8ebe4146107f3575f80fd5b80639a7a23d61461072a578063a9059cbb14610749578063b62496f514610768575f80fd5b80637ca8448a146106885780637cb332bb146106a757806384dd4452146106c6578063858e4a02146106da5780638da5cb5b146106f957806395d89b4114610716575f80fd5b80634a62bb65116102455780635f189361116101ff578063715018a6116101da578063715018a614610622578063751039fc146106365780637571336a1461064a57806375e3661e14610669575f80fd5b80635f189361146105b85780636a486a8e146105cc57806370a08231146105ee575f80fd5b80634a62bb65146104e25780634bb2c785146105005780634e6fd6c41461052e5780634fbee19314610543578063564dd11f1461057a5780635992704414610599575f80fd5b8063203e727e11610296578063203e727e146103f957806323b872dd1461041857806330b878ff14610437578063313ce567146104755780633dc599ff1461049057806349bd5a5e146104af575f80fd5b8063039bed0b146102e75780630408d7561461030857806306fdde0314610340578063095ea7b3146103615780631694505e1461039057806318160ddd146103db575f80fd5b366102e357005b5f80fd5b3480156102f2575f80fd5b5061030661030136600461259b565b610998565b005b348015610313575f80fd5b50600b546103289062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b34801561034b575f80fd5b50610354610a1c565b60405161033791906125cc565b34801561036c575f80fd5b5061038061037b366004612636565b610aac565b6040519015158152602001610337565b34801561039b575f80fd5b506103c37f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610337565b3480156103e6575f80fd5b506002545b604051908152602001610337565b348015610404575f80fd5b50610306610413366004612660565b610ac5565b348015610423575f80fd5b50610380610432366004612677565b610b7f565b348015610442575f80fd5b5060065461045d90600160801b90046001600160801b031681565b6040516001600160801b039091168152602001610337565b348015610480575f80fd5b5060405160128152602001610337565b34801561049b575f80fd5b50600d546103809062010000900460ff1681565b3480156104ba575f80fd5b506103c37f000000000000000000000000000000000000000000000000000000000000000081565b3480156104ed575f80fd5b50600d5461038090610100900460ff1681565b34801561050b575f80fd5b5061038061051a3660046126b5565b60116020525f908152604090205460ff1681565b348015610539575f80fd5b506103c361dead81565b34801561054e575f80fd5b5061038061055d3660046126b5565b6001600160a01b03165f9081526010602052604090205460ff1690565b348015610585575f80fd5b506103066105943660046126d0565b610ba4565b3480156105a4575f80fd5b506007546103c3906001600160a01b031681565b3480156105c3575f80fd5b50610306610be6565b3480156105d7575f80fd5b50600b5461032890640100000000900461ffff1681565b3480156105f9575f80fd5b506103eb6106083660046126b5565b6001600160a01b03165f9081526020819052604090205490565b34801561062d575f80fd5b50610306610c01565b348015610641575f80fd5b50610380610c14565b348015610655575f80fd5b50610306610664366004612716565b610c3d565b348015610674575f80fd5b506103066106833660046126b5565b610c6f565b348015610693575f80fd5b506103066106a23660046126b5565b610c97565b3480156106b2575f80fd5b506103066106c13660046126b5565b610cfa565b3480156106d1575f80fd5b50610306610d5e565b3480156106e5575f80fd5b506103066106f436600461259b565b610e57565b348015610704575f80fd5b506005546001600160a01b03166103c3565b348015610721575f80fd5b50610354610ee3565b348015610735575f80fd5b50610306610744366004612716565b610ef2565b348015610754575f80fd5b50610380610763366004612636565b610fab565b348015610773575f80fd5b506103806107823660046126b5565b60126020525f908152604090205460ff1681565b3480156107a1575f80fd5b506103066107b0366004612716565b610fb8565b3480156107c0575f80fd5b506103066107cf366004612660565b61101e565b3480156107df575f80fd5b506103066107ee366004612756565b6110cc565b3480156107fe575f80fd5b506103eb60085481565b348015610813575f80fd5b5061030661082236600461280a565b61113f565b348015610832575f80fd5b5060065461045d906001600160801b031681565b348015610851575f80fd5b50610380610860366004612660565b61127f565b348015610870575f80fd5b50600b546103289061ffff1681565b34801561088a575f80fd5b506103eb61089936600461280a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108ce575f80fd5b506103066108dd3660046126b5565b6113ae565b3480156108ed575f80fd5b506103eb60095481565b348015610902575f80fd5b506103066109113660046126b5565b611511565b348015610921575f80fd5b506103eb600a5481565b348015610936575f80fd5b50600b5461032890600160301b900461ffff1681565b348015610957575f80fd5b506103eb600c5481565b34801561096c575f80fd5b5061038061097b3660046126b5565b6001600160a01b03165f908152600f602052604090205460ff1690565b6109a061154e565b600b805463ffffffff19166201000061ffff8581169190910261ffff19169190911790831690811790915560051015610a185760405162461bcd60e51b81526020600482015260156024820152746275792066656573206d757374206265203c3d203560581b60448201526064015b60405180910390fd5b5050565b606060038054610a2b90612836565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5790612836565b8015610aa25780601f10610a7957610100808354040283529160200191610aa2565b820191905f5260205f20905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b5f33610ab981858561157b565b60019150505b92915050565b610acd61154e565b670de0b6b3a76400006103e8610ae260025490565b610aed906005612882565b610af79190612899565b610b019190612899565b811015610b675760405162461bcd60e51b815260206004820152602e60248201527f63616e6e6f7420736574206d61787472616e73616374696f6e616d6f756e742060448201526d6c6f776572207468616e202e352560901b6064820152608401610a0f565b610b7981670de0b6b3a7640000612882565b60085550565b5f33610b8c858285611588565b610b978585856115fd565b60019150505b9392505050565b610bac61154e565b6001600160801b03818116600160801b02439190911617600655305f908152602081905260408120549050610be18184611cd6565b505050565b610bee61154e565b600d805462ff0000191662010000179055565b610c0961154e565b610c125f611dd9565b565b5f610c1d61154e565b50600d805461ff0019169055600b805465ffff0000ffff19169055600190565b610c4561154e565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b610c7761154e565b6001600160a01b03165f908152600f60205260409020805460ff19169055565b610c9f61154e565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610ce8576040519150601f19603f3d011682016040523d82523d5f602084013e610ced565b606091505b5050905080610a18575f80fd5b610d0261154e565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610d6661154e565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610da1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc591906128b8565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e09573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2d91906128cf565b5060405133904780156108fc02915f818181858888f19350505050158015610a18573d5f803e3d5ffd5b610e5f61154e565b600b805467ffffffff000000001916600160301b61ffff8581169190910265ffff000000001916919091176401000000009184169182021790915560051015610a185760405162461bcd60e51b815260206004820152601660248201527573656c6c2066656573206d757374206265203c3d203560501b6044820152606401610a0f565b606060048054610a2b90612836565b610efa61154e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610fa15760405162461bcd60e51b815260206004820152603960248201527f74686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465646d61726b65746d616b65727061697273000000000000006064820152608401610a0f565b610a188282611e2a565b5f33610ab98185856115fd565b610fc061154e565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61102661154e565b670de0b6b3a76400006103e861103b60025490565b61104690600a612882565b6110509190612899565b61105a9190612899565b8110156110b45760405162461bcd60e51b815260206004820152602260248201527f63616e6e6f7420736574206d617877616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610a0f565b6110c681670de0b6b3a7640000612882565b600a5550565b6110d461154e565b5f5b8151811015610a1857600e8282815181106110f3576110f36128ea565b60209081029190910181015182546001810184555f938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580611137816128fe565b9150506110d6565b61114761154e565b6001600160a01b03821661119d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a0f565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156111e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120591906128b8565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611255573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127991906128cf565b50505050565b5f61128861154e565b620186a061129560025490565b6112a0906001612882565b6112aa9190612899565b8210156113155760405162461bcd60e51b815260206004820152603360248201527f7377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272202e3030312520746f74616c20737570706c7960681b6064820152608401610a0f565b6103e861132160025490565b61132c906005612882565b6113369190612899565b8211156113a05760405162461bcd60e51b815260206004820152603260248201527f7377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152716e202e352520746f74616c20737570706c7960701b6064820152608401610a0f565b50600981905560015b919050565b6113b661154e565b600d5462010000900460ff16156114195760405162461bcd60e51b815260206004820152602160248201527f7465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610a0f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b03161415801561148d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b6114ee5760405162461bcd60e51b815260206004820152602c60248201527f63616e6e6f7420626c61636b6c69737420746f6b656e7320763220726f75746560448201526b1c881bdc881d8c881c1bdbdb60a21b6064820152608401610a0f565b6001600160a01b03165f908152600f60205260409020805460ff19166001179055565b61151961154e565b6001600160a01b03811661154257604051631e4fbdf760e01b81525f6004820152602401610a0f565b61154b81611dd9565b50565b6005546001600160a01b03163314610c125760405163118cdaa760e01b8152336004820152602401610a0f565b610be18383836001611e7d565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461127957818110156115ef57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a0f565b61127984848484035f611e7d565b6001600160a01b0383166116615760405162461bcd60e51b815260206004820152602560248201527f65726332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0f565b6001600160a01b0382166116c35760405162461bcd60e51b815260206004820152602360248201527f65726332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0f565b6001600160a01b0383165f908152600f602052604090205460ff16156117205760405162461bcd60e51b81526020600482015260126024820152711cd95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610a0f565b6001600160a01b0382165f908152600f602052604090205460ff161561177f5760405162461bcd60e51b81526020600482015260146024820152731c9958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610a0f565b805f0361179157610be183835f611f4f565b600d54610100900460ff168015611a6c576005546001600160a01b038581169116148015906117ce57506005546001600160a01b03848116911614155b80156117e257506001600160a01b03831615155b80156117f957506001600160a01b03831661dead14155b80156118085750600d5460ff16155b15611a6c576001600160a01b0384165f9081526012602052604090205460ff16801561184c57506001600160a01b0383165f9081526011602052604090205460ff16155b1561192f576008548211156118c15760405162461bcd60e51b815260206004820152603560248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760591b6064820152608401610a0f565b600a546001600160a01b0384165f908152602081905260409020546118e69084612916565b111561192a5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b611a6c565b6001600160a01b0383165f9081526012602052604090205460ff16801561196e57506001600160a01b0384165f9081526011602052604090205460ff16155b156119e45760085482111561192a5760405162461bcd60e51b815260206004820152603660248201527f73656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760511b6064820152608401610a0f565b6001600160a01b0383165f9081526011602052604090205460ff16611a6c57600a546001600160a01b0384165f90815260208190526040902054611a289084612916565b1115611a6c5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b305f9081526020819052604090205460095481108015908190611a925750600d5460ff16155b8015611ab657506001600160a01b0386165f9081526012602052604090205460ff16155b8015611ada57506001600160a01b0386165f9081526010602052604090205460ff16155b8015611afe57506001600160a01b0385165f9081526010602052604090205460ff16155b15611b2357600d805460ff19166001179055611b18611fac565b600d805460ff191690555b600d546001600160a01b0387165f9081526010602052604090205460ff91821615911680611b6857506001600160a01b0386165f9081526010602052604090205460ff165b15611b7057505f5b5f8115611cc1576001600160a01b0387165f9081526012602052604090205460ff168015611bab5750600b54640100000000900461ffff1615155b15611c14576064611bbd86898b612066565b611bc79088612882565b611bd19190612899565b600b54909150606490611bef90600160301b900461ffff1683612882565b611bf99190612899565b600c5f828254611c099190612916565b90915550611ca39050565b6001600160a01b0388165f9081526012602052604090205460ff168015611c405750600b5461ffff1615155b15611ca3576064611c5286898b61219e565b611c5c9088612882565b611c669190612899565b600b54909150606490611c839062010000900461ffff1683612882565b611c8d9190612899565b600c5f828254611c9d9190612916565b90915550505b8015611cb457611cb4883083611f4f565b611cbe8187612929565b95505b611ccc888888611f4f565b5050505050505050565b611d01307f00000000000000000000000000000000000000000000000000000000000000008461157b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230855f80611d476005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611dad573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611dd2919061293c565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611ea65760405163e602df0560e01b81525f6004820152602401610a0f565b6001600160a01b038316611ecf57604051634a1406b160e11b81525f6004820152602401610a0f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561127957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f4191815260200190565b60405180910390a350505050565b6001600160a01b038316611f7857604051634b637e8f60e11b81525f6004820152602401610a0f565b6001600160a01b038216611fa15760405163ec442f0560e01b81525f6004820152602401610a0f565b610be18383836122ae565b305f90815260208190526040812054600c549091821580611fcb575081155b15611fd557505050565b600954611fe3906014612882565b831115611ffb57600954611ff8906014612882565b92505b82612005816123d4565b5f600c819055600754604051479283926001600160a01b031691839181818185875af1925050503d805f8114612056576040519150601f19603f3d011682016040523d82523d5f602084013e61205b565b606091505b505050505050505050565b5f836120815750600b54640100000000900461ffff16610b9d565b600b5460065464010000000090910461ffff16906001600160801b0380821691600160801b9004166120b38183612916565b4311156120c65760149350505050610b9d565b5f5b600e5481101561215557600e81815481106120e5576120e56128ea565b5f918252602090912001546001600160a01b03888116911614806121315750600e8181548110612117576121176128ea565b5f918252602090912001546001600160a01b038781169116145b1561214357605a945050505050610b9d565b8061214d816128fe565b9150506120c8565b505f6121618343612929565b90505f82612170836064612882565b61217a9190612899565b612185906064612929565b9050848110156121925750835b98975050505050505050565b5f836121b15750600b5461ffff16610b9d565b600b5460065461ffff909116906001600160801b0380821691600160801b9004166121dc8183612916565b4311156121ef5760199350505050610b9d565b5f5b600e5481101561227e57600e818154811061220e5761220e6128ea565b5f918252602090912001546001600160a01b038881169116148061225a5750600e8181548110612240576122406128ea565b5f918252602090912001546001600160a01b038781169116145b1561226c57605a945050505050610b9d565b80612276816128fe565b9150506121f1565b505f61228a8343612929565b90505f82612299836032612882565b6122a39190612899565b612185906032612929565b6001600160a01b0383166122d8578060025f8282546122cd9190612916565b909155506123489050565b6001600160a01b0383165f908152602081905260409020548181101561232a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a0f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661236457600280548290039055612382565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123c791815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612407576124076128ea565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124a79190612967565b816001815181106124ba576124ba6128ea565b60200260200101906001600160a01b031690816001600160a01b031681525050612505307f00000000000000000000000000000000000000000000000000000000000000008461157b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125599085905f90869030904290600401612982565b5f604051808303815f87803b158015612570575f80fd5b505af1158015612582573d5f803e3d5ffd5b505050505050565b803561ffff811681146113a9575f80fd5b5f80604083850312156125ac575f80fd5b6125b58361258a565b91506125c36020840161258a565b90509250929050565b5f6020808352835180828501525f5b818110156125f7578581018301518582016040015282016125db565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461154b575f80fd5b80356113a981612617565b5f8060408385031215612647575f80fd5b823561265281612617565b946020939093013593505050565b5f60208284031215612670575f80fd5b5035919050565b5f805f60608486031215612689575f80fd5b833561269481612617565b925060208401356126a481612617565b929592945050506040919091013590565b5f602082840312156126c5575f80fd5b8135610b9d81612617565b5f80604083850312156126e1575f80fd5b8235915060208301356001600160801b03811681146126fe575f80fd5b809150509250929050565b801515811461154b575f80fd5b5f8060408385031215612727575f80fd5b823561273281612617565b915060208301356126fe81612709565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215612767575f80fd5b823567ffffffffffffffff8082111561277e575f80fd5b818501915085601f830112612791575f80fd5b8135818111156127a3576127a3612742565b8060051b604051601f19603f830116810181811085821117156127c8576127c8612742565b6040529182528482019250838101850191888311156127e5575f80fd5b938501935b82851015612192576127fb8561262b565b845293850193928501926127ea565b5f806040838503121561281b575f80fd5b823561282681612617565b915060208301356126fe81612617565b600181811c9082168061284a57607f821691505b60208210810361286857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610abf57610abf61286e565b5f826128b357634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156128c8575f80fd5b5051919050565b5f602082840312156128df575f80fd5b8151610b9d81612709565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161290f5761290f61286e565b5060010190565b80820180821115610abf57610abf61286e565b81810381811115610abf57610abf61286e565b5f805f6060848603121561294e575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612977575f80fd5b8151610b9d81612617565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156129d05784516001600160a01b0316835293830193918301916001016129ab565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220489260fcdaccf8280986b3c71ad8fbc05adc6e5c93e97e5d1957fd9944e6fde864736f6c634300081400330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000004000000000000000000000000db5889e35e379ef0498aae126fc2cce1fbd2321600000000000000000000000080a64c6d7f12c47b7c66c5b4e20e72bc1fcd5d9e0000000000000000000000003999d2c5207c06bbc5cf8a6bea52966cabb76d410000000000000000000000002c2c82e7caf5f14e4995c366d9db8cdfdf7677e3

Deployed Bytecode

0x6080604052600436106102dc575f3560e01c80637ca8448a11610189578063cdb5f8c6116100d8578063e2f4560511610092578063f98a9c021161006d578063f98a9c021461092b578063f9f92be4146108c3578063fde83a341461094c578063fe575a8714610961575f80fd5b8063e2f45605146108e2578063f2fde38b146108f7578063f8b45b0514610916575f80fd5b8063cdb5f8c614610808578063d00efb2f14610827578063d257b34f14610846578063d85ba06314610865578063dd62ed3e1461087f578063e19b2823146108c3575f80fd5b80639a7a23d611610143578063c02466681161011e578063c024666814610796578063c18bc195146107b5578063c728e57d146107d4578063c8c8ebe4146107f3575f80fd5b80639a7a23d61461072a578063a9059cbb14610749578063b62496f514610768575f80fd5b80637ca8448a146106885780637cb332bb146106a757806384dd4452146106c6578063858e4a02146106da5780638da5cb5b146106f957806395d89b4114610716575f80fd5b80634a62bb65116102455780635f189361116101ff578063715018a6116101da578063715018a614610622578063751039fc146106365780637571336a1461064a57806375e3661e14610669575f80fd5b80635f189361146105b85780636a486a8e146105cc57806370a08231146105ee575f80fd5b80634a62bb65146104e25780634bb2c785146105005780634e6fd6c41461052e5780634fbee19314610543578063564dd11f1461057a5780635992704414610599575f80fd5b8063203e727e11610296578063203e727e146103f957806323b872dd1461041857806330b878ff14610437578063313ce567146104755780633dc599ff1461049057806349bd5a5e146104af575f80fd5b8063039bed0b146102e75780630408d7561461030857806306fdde0314610340578063095ea7b3146103615780631694505e1461039057806318160ddd146103db575f80fd5b366102e357005b5f80fd5b3480156102f2575f80fd5b5061030661030136600461259b565b610998565b005b348015610313575f80fd5b50600b546103289062010000900461ffff1681565b60405161ffff90911681526020015b60405180910390f35b34801561034b575f80fd5b50610354610a1c565b60405161033791906125cc565b34801561036c575f80fd5b5061038061037b366004612636565b610aac565b6040519015158152602001610337565b34801561039b575f80fd5b506103c37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610337565b3480156103e6575f80fd5b506002545b604051908152602001610337565b348015610404575f80fd5b50610306610413366004612660565b610ac5565b348015610423575f80fd5b50610380610432366004612677565b610b7f565b348015610442575f80fd5b5060065461045d90600160801b90046001600160801b031681565b6040516001600160801b039091168152602001610337565b348015610480575f80fd5b5060405160128152602001610337565b34801561049b575f80fd5b50600d546103809062010000900460ff1681565b3480156104ba575f80fd5b506103c37f000000000000000000000000617e3702fc5f83ab26709fda95f2364146c64f2f81565b3480156104ed575f80fd5b50600d5461038090610100900460ff1681565b34801561050b575f80fd5b5061038061051a3660046126b5565b60116020525f908152604090205460ff1681565b348015610539575f80fd5b506103c361dead81565b34801561054e575f80fd5b5061038061055d3660046126b5565b6001600160a01b03165f9081526010602052604090205460ff1690565b348015610585575f80fd5b506103066105943660046126d0565b610ba4565b3480156105a4575f80fd5b506007546103c3906001600160a01b031681565b3480156105c3575f80fd5b50610306610be6565b3480156105d7575f80fd5b50600b5461032890640100000000900461ffff1681565b3480156105f9575f80fd5b506103eb6106083660046126b5565b6001600160a01b03165f9081526020819052604090205490565b34801561062d575f80fd5b50610306610c01565b348015610641575f80fd5b50610380610c14565b348015610655575f80fd5b50610306610664366004612716565b610c3d565b348015610674575f80fd5b506103066106833660046126b5565b610c6f565b348015610693575f80fd5b506103066106a23660046126b5565b610c97565b3480156106b2575f80fd5b506103066106c13660046126b5565b610cfa565b3480156106d1575f80fd5b50610306610d5e565b3480156106e5575f80fd5b506103066106f436600461259b565b610e57565b348015610704575f80fd5b506005546001600160a01b03166103c3565b348015610721575f80fd5b50610354610ee3565b348015610735575f80fd5b50610306610744366004612716565b610ef2565b348015610754575f80fd5b50610380610763366004612636565b610fab565b348015610773575f80fd5b506103806107823660046126b5565b60126020525f908152604090205460ff1681565b3480156107a1575f80fd5b506103066107b0366004612716565b610fb8565b3480156107c0575f80fd5b506103066107cf366004612660565b61101e565b3480156107df575f80fd5b506103066107ee366004612756565b6110cc565b3480156107fe575f80fd5b506103eb60085481565b348015610813575f80fd5b5061030661082236600461280a565b61113f565b348015610832575f80fd5b5060065461045d906001600160801b031681565b348015610851575f80fd5b50610380610860366004612660565b61127f565b348015610870575f80fd5b50600b546103289061ffff1681565b34801561088a575f80fd5b506103eb61089936600461280a565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156108ce575f80fd5b506103066108dd3660046126b5565b6113ae565b3480156108ed575f80fd5b506103eb60095481565b348015610902575f80fd5b506103066109113660046126b5565b611511565b348015610921575f80fd5b506103eb600a5481565b348015610936575f80fd5b50600b5461032890600160301b900461ffff1681565b348015610957575f80fd5b506103eb600c5481565b34801561096c575f80fd5b5061038061097b3660046126b5565b6001600160a01b03165f908152600f602052604090205460ff1690565b6109a061154e565b600b805463ffffffff19166201000061ffff8581169190910261ffff19169190911790831690811790915560051015610a185760405162461bcd60e51b81526020600482015260156024820152746275792066656573206d757374206265203c3d203560581b60448201526064015b60405180910390fd5b5050565b606060038054610a2b90612836565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5790612836565b8015610aa25780601f10610a7957610100808354040283529160200191610aa2565b820191905f5260205f20905b815481529060010190602001808311610a8557829003601f168201915b5050505050905090565b5f33610ab981858561157b565b60019150505b92915050565b610acd61154e565b670de0b6b3a76400006103e8610ae260025490565b610aed906005612882565b610af79190612899565b610b019190612899565b811015610b675760405162461bcd60e51b815260206004820152602e60248201527f63616e6e6f7420736574206d61787472616e73616374696f6e616d6f756e742060448201526d6c6f776572207468616e202e352560901b6064820152608401610a0f565b610b7981670de0b6b3a7640000612882565b60085550565b5f33610b8c858285611588565b610b978585856115fd565b60019150505b9392505050565b610bac61154e565b6001600160801b03818116600160801b02439190911617600655305f908152602081905260408120549050610be18184611cd6565b505050565b610bee61154e565b600d805462ff0000191662010000179055565b610c0961154e565b610c125f611dd9565b565b5f610c1d61154e565b50600d805461ff0019169055600b805465ffff0000ffff19169055600190565b610c4561154e565b6001600160a01b03919091165f908152601160205260409020805460ff1916911515919091179055565b610c7761154e565b6001600160a01b03165f908152600f60205260409020805460ff19169055565b610c9f61154e565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610ce8576040519150601f19603f3d011682016040523d82523d5f602084013e610ced565b606091505b5050905080610a18575f80fd5b610d0261154e565b6007546040516001600160a01b03918216918316907fd9a2a08302ed3220f4e646ff99d6780d87e27baddf1af05679dc930ce8113095905f90a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610d6661154e565b6040516370a0823160e01b815230600482018190525f916370a0823190602401602060405180830381865afa158015610da1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc591906128b8565b60405163a9059cbb60e01b815233600482015260248101829052909150309063a9059cbb906044016020604051808303815f875af1158015610e09573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2d91906128cf565b5060405133904780156108fc02915f818181858888f19350505050158015610a18573d5f803e3d5ffd5b610e5f61154e565b600b805467ffffffff000000001916600160301b61ffff8581169190910265ffff000000001916919091176401000000009184169182021790915560051015610a185760405162461bcd60e51b815260206004820152601660248201527573656c6c2066656573206d757374206265203c3d203560501b6044820152606401610a0f565b606060048054610a2b90612836565b610efa61154e565b7f000000000000000000000000617e3702fc5f83ab26709fda95f2364146c64f2f6001600160a01b0316826001600160a01b031603610fa15760405162461bcd60e51b815260206004820152603960248201527f74686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465646d61726b65746d616b65727061697273000000000000006064820152608401610a0f565b610a188282611e2a565b5f33610ab98185856115fd565b610fc061154e565b6001600160a01b0382165f81815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61102661154e565b670de0b6b3a76400006103e861103b60025490565b61104690600a612882565b6110509190612899565b61105a9190612899565b8110156110b45760405162461bcd60e51b815260206004820152602260248201527f63616e6e6f7420736574206d617877616c6c6574206c6f776572207468616e20604482015261312560f01b6064820152608401610a0f565b6110c681670de0b6b3a7640000612882565b600a5550565b6110d461154e565b5f5b8151811015610a1857600e8282815181106110f3576110f36128ea565b60209081029190910181015182546001810184555f938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580611137816128fe565b9150506110d6565b61114761154e565b6001600160a01b03821661119d5760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a0f565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa1580156111e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120591906128b8565b60405163a9059cbb60e01b81526001600160a01b038481166004830152602482018390529192509084169063a9059cbb906044016020604051808303815f875af1158015611255573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127991906128cf565b50505050565b5f61128861154e565b620186a061129560025490565b6112a0906001612882565b6112aa9190612899565b8210156113155760405162461bcd60e51b815260206004820152603360248201527f7377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015272202e3030312520746f74616c20737570706c7960681b6064820152608401610a0f565b6103e861132160025490565b61132c906005612882565b6113369190612899565b8211156113a05760405162461bcd60e51b815260206004820152603260248201527f7377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152716e202e352520746f74616c20737570706c7960701b6064820152608401610a0f565b50600981905560015b919050565b6113b661154e565b600d5462010000900460ff16156114195760405162461bcd60e51b815260206004820152602160248201527f7465616d20686173207265766f6b656420626c61636b6c6973742072696768746044820152607360f81b6064820152608401610a0f565b7f000000000000000000000000617e3702fc5f83ab26709fda95f2364146c64f2f6001600160a01b0316816001600160a01b03161415801561148d57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316816001600160a01b031614155b6114ee5760405162461bcd60e51b815260206004820152602c60248201527f63616e6e6f7420626c61636b6c69737420746f6b656e7320763220726f75746560448201526b1c881bdc881d8c881c1bdbdb60a21b6064820152608401610a0f565b6001600160a01b03165f908152600f60205260409020805460ff19166001179055565b61151961154e565b6001600160a01b03811661154257604051631e4fbdf760e01b81525f6004820152602401610a0f565b61154b81611dd9565b50565b6005546001600160a01b03163314610c125760405163118cdaa760e01b8152336004820152602401610a0f565b610be18383836001611e7d565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461127957818110156115ef57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a0f565b61127984848484035f611e7d565b6001600160a01b0383166116615760405162461bcd60e51b815260206004820152602560248201527f65726332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a0f565b6001600160a01b0382166116c35760405162461bcd60e51b815260206004820152602360248201527f65726332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a0f565b6001600160a01b0383165f908152600f602052604090205460ff16156117205760405162461bcd60e51b81526020600482015260126024820152711cd95b99195c88189b1858dadb1a5cdd195960721b6044820152606401610a0f565b6001600160a01b0382165f908152600f602052604090205460ff161561177f5760405162461bcd60e51b81526020600482015260146024820152731c9958d95a5d995c88189b1858dadb1a5cdd195960621b6044820152606401610a0f565b805f0361179157610be183835f611f4f565b600d54610100900460ff168015611a6c576005546001600160a01b038581169116148015906117ce57506005546001600160a01b03848116911614155b80156117e257506001600160a01b03831615155b80156117f957506001600160a01b03831661dead14155b80156118085750600d5460ff16155b15611a6c576001600160a01b0384165f9081526012602052604090205460ff16801561184c57506001600160a01b0383165f9081526011602052604090205460ff16155b1561192f576008548211156118c15760405162461bcd60e51b815260206004820152603560248201527f627579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760591b6064820152608401610a0f565b600a546001600160a01b0384165f908152602081905260409020546118e69084612916565b111561192a5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b611a6c565b6001600160a01b0383165f9081526012602052604090205460ff16801561196e57506001600160a01b0384165f9081526011602052604090205460ff16155b156119e45760085482111561192a5760405162461bcd60e51b815260206004820152603660248201527f73656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc3a3930b739b0b1ba34b7b730b6b7bab73a1760511b6064820152608401610a0f565b6001600160a01b0383165f9081526011602052604090205460ff16611a6c57600a546001600160a01b0384165f90815260208190526040902054611a289084612916565b1115611a6c5760405162461bcd60e51b81526020600482015260136024820152721b585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a0f565b305f9081526020819052604090205460095481108015908190611a925750600d5460ff16155b8015611ab657506001600160a01b0386165f9081526012602052604090205460ff16155b8015611ada57506001600160a01b0386165f9081526010602052604090205460ff16155b8015611afe57506001600160a01b0385165f9081526010602052604090205460ff16155b15611b2357600d805460ff19166001179055611b18611fac565b600d805460ff191690555b600d546001600160a01b0387165f9081526010602052604090205460ff91821615911680611b6857506001600160a01b0386165f9081526010602052604090205460ff165b15611b7057505f5b5f8115611cc1576001600160a01b0387165f9081526012602052604090205460ff168015611bab5750600b54640100000000900461ffff1615155b15611c14576064611bbd86898b612066565b611bc79088612882565b611bd19190612899565b600b54909150606490611bef90600160301b900461ffff1683612882565b611bf99190612899565b600c5f828254611c099190612916565b90915550611ca39050565b6001600160a01b0388165f9081526012602052604090205460ff168015611c405750600b5461ffff1615155b15611ca3576064611c5286898b61219e565b611c5c9088612882565b611c669190612899565b600b54909150606490611c839062010000900461ffff1683612882565b611c8d9190612899565b600c5f828254611c9d9190612916565b90915550505b8015611cb457611cb4883083611f4f565b611cbe8187612929565b95505b611ccc888888611f4f565b5050505050505050565b611d01307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461157b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230855f80611d476005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611dad573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190611dd2919061293c565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f81815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038416611ea65760405163e602df0560e01b81525f6004820152602401610a0f565b6001600160a01b038316611ecf57604051634a1406b160e11b81525f6004820152602401610a0f565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561127957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611f4191815260200190565b60405180910390a350505050565b6001600160a01b038316611f7857604051634b637e8f60e11b81525f6004820152602401610a0f565b6001600160a01b038216611fa15760405163ec442f0560e01b81525f6004820152602401610a0f565b610be18383836122ae565b305f90815260208190526040812054600c549091821580611fcb575081155b15611fd557505050565b600954611fe3906014612882565b831115611ffb57600954611ff8906014612882565b92505b82612005816123d4565b5f600c819055600754604051479283926001600160a01b031691839181818185875af1925050503d805f8114612056576040519150601f19603f3d011682016040523d82523d5f602084013e61205b565b606091505b505050505050505050565b5f836120815750600b54640100000000900461ffff16610b9d565b600b5460065464010000000090910461ffff16906001600160801b0380821691600160801b9004166120b38183612916565b4311156120c65760149350505050610b9d565b5f5b600e5481101561215557600e81815481106120e5576120e56128ea565b5f918252602090912001546001600160a01b03888116911614806121315750600e8181548110612117576121176128ea565b5f918252602090912001546001600160a01b038781169116145b1561214357605a945050505050610b9d565b8061214d816128fe565b9150506120c8565b505f6121618343612929565b90505f82612170836064612882565b61217a9190612899565b612185906064612929565b9050848110156121925750835b98975050505050505050565b5f836121b15750600b5461ffff16610b9d565b600b5460065461ffff909116906001600160801b0380821691600160801b9004166121dc8183612916565b4311156121ef5760199350505050610b9d565b5f5b600e5481101561227e57600e818154811061220e5761220e6128ea565b5f918252602090912001546001600160a01b038881169116148061225a5750600e8181548110612240576122406128ea565b5f918252602090912001546001600160a01b038781169116145b1561226c57605a945050505050610b9d565b80612276816128fe565b9150506121f1565b505f61228a8343612929565b90505f82612299836032612882565b6122a39190612899565b612185906032612929565b6001600160a01b0383166122d8578060025f8282546122cd9190612916565b909155506123489050565b6001600160a01b0383165f908152602081905260409020548181101561232a5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a0f565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661236457600280548290039055612382565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123c791815260200190565b60405180910390a3505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110612407576124076128ea565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612483573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124a79190612967565b816001815181106124ba576124ba6128ea565b60200260200101906001600160a01b031690816001600160a01b031681525050612505307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461157b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125599085905f90869030904290600401612982565b5f604051808303815f87803b158015612570575f80fd5b505af1158015612582573d5f803e3d5ffd5b505050505050565b803561ffff811681146113a9575f80fd5b5f80604083850312156125ac575f80fd5b6125b58361258a565b91506125c36020840161258a565b90509250929050565b5f6020808352835180828501525f5b818110156125f7578581018301518582016040015282016125db565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461154b575f80fd5b80356113a981612617565b5f8060408385031215612647575f80fd5b823561265281612617565b946020939093013593505050565b5f60208284031215612670575f80fd5b5035919050565b5f805f60608486031215612689575f80fd5b833561269481612617565b925060208401356126a481612617565b929592945050506040919091013590565b5f602082840312156126c5575f80fd5b8135610b9d81612617565b5f80604083850312156126e1575f80fd5b8235915060208301356001600160801b03811681146126fe575f80fd5b809150509250929050565b801515811461154b575f80fd5b5f8060408385031215612727575f80fd5b823561273281612617565b915060208301356126fe81612709565b634e487b7160e01b5f52604160045260245ffd5b5f6020808385031215612767575f80fd5b823567ffffffffffffffff8082111561277e575f80fd5b818501915085601f830112612791575f80fd5b8135818111156127a3576127a3612742565b8060051b604051601f19603f830116810181811085821117156127c8576127c8612742565b6040529182528482019250838101850191888311156127e5575f80fd5b938501935b82851015612192576127fb8561262b565b845293850193928501926127ea565b5f806040838503121561281b575f80fd5b823561282681612617565b915060208301356126fe81612617565b600181811c9082168061284a57607f821691505b60208210810361286857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610abf57610abf61286e565b5f826128b357634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156128c8575f80fd5b5051919050565b5f602082840312156128df575f80fd5b8151610b9d81612709565b634e487b7160e01b5f52603260045260245ffd5b5f6001820161290f5761290f61286e565b5060010190565b80820180821115610abf57610abf61286e565b81810381811115610abf57610abf61286e565b5f805f6060848603121561294e575f80fd5b8351925060208401519150604084015190509250925092565b5f60208284031215612977575f80fd5b8151610b9d81612617565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156129d05784516001600160a01b0316835293830193918301916001016129ab565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220489260fcdaccf8280986b3c71ad8fbc05adc6e5c93e97e5d1957fd9944e6fde864736f6c63430008140033

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

939:14848:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5005:265;;;;;;;;;;-1:-1:-1;5005:265:9;;;;;:::i;:::-;;:::i;:::-;;1408:27;;;;;;;;;;-1:-1:-1;1408:27:9;;;;;;;;;;;;;;613:6:10;601:19;;;583:38;;571:2;556:18;1408: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;992:51:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2163:32:10;;;2145:51;;2133:2;2118:18;992: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;4460:274:9;;;;;;;;;;-1:-1:-1;4460:274:9;;;;;:::i;:::-;;:::i;5039:244:2:-;;;;;;;;;;-1:-1:-1;5039:244:2;;;;;:::i;:::-;;:::i;1128:28:9:-;;;;;;;;;;-1:-1:-1;1128:28:9;;;;-1:-1:-1;;;1128:28:9;;-1:-1:-1;;;;;1128:28:9;;;;;;-1:-1:-1;;;;;3199:47:10;;;3181:66;;3169:2;3154:18;1128:28:9;3035:218:10;3002:82:2;;;;;;;;;;-1:-1:-1;3002:82:2;;3075:2;3400:36:10;;3388:2;3373:18;3002:82:2;3258:184:10;1621:38:9;;;;;;;;;;-1:-1:-1;1621:38:9;;;;;;;;;;;1050;;;;;;;;;;;;;;;1581:33;;;;;;;;;;-1:-1:-1;1581:33:9;;;;;;;;;;;1806:62;;;;;;;;;;-1:-1:-1;1806:62:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;1163:54;;;;;;;;;;;;1210:6;1163:54;;8250:126;;;;;;;;;;-1:-1:-1;8250:126:9;;;;;:::i;:::-;-1:-1:-1;;;;;8340:28:9;8316:4;8340:28;;;:19;:28;;;;;;;;;8250:126;15509:275;;;;;;;;;;-1:-1:-1;15509:275:9;;;;;:::i;:::-;;:::i;1226:25::-;;;;;;;;;;-1:-1:-1;1226:25:9;;;;-1:-1:-1;;;;;1226:25:9;;;7131:90;;;;;;;;;;;;;:::i;1444:27::-;;;;;;;;;;-1:-1:-1;1444: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;3775:176:9:-;;;;;;;;;;;;;:::i;6681:148::-;;;;;;;;;;-1:-1:-1;6681:148:9;;;;;:::i;:::-;;:::i;7966:99::-;;;;;;;;;;-1:-1:-1;7966:99:9;;;;;:::i;:::-;;:::i;6287:196::-;;;;;;;;;;-1:-1:-1;6287:196:9;;;;;:::i;:::-;;:::i;5558:161::-;;;;;;;;;;-1:-1:-1;5558:161:9;;;;;:::i;:::-;;:::i;5727:256::-;;;;;;;;;;;;;:::i;5278:272::-;;;;;;;;;;-1:-1:-1;5278: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;6837:286:9:-;;;;;;;;;;-1:-1:-1;6837:286:9;;;;;:::i;:::-;;:::i;3610:178:2:-;;;;;;;;;;-1:-1:-1;3610:178:2;;;;;:::i;:::-;;:::i;1877:57:9:-;;;;;;;;;;-1:-1:-1;1877:57:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;6491:182;;;;;;;;;;-1:-1:-1;6491:182:9;;;;;:::i;:::-;;:::i;4742:255::-;;;;;;;;;;-1:-1:-1;4742:255:9;;;;;:::i;:::-;;:::i;8073:169::-;;;;;;;;;;-1:-1:-1;8073:169:9;;;;;:::i;:::-;;:::i;1260:35::-;;;;;;;;;;;;;;;;5991:288;;;;;;;;;;-1:-1:-1;5991:288:9;;;;;:::i;:::-;;:::i;1095:26::-;;;;;;;;;;-1:-1:-1;1095:26:9;;;;-1:-1:-1;;;;;1095:26:9;;;3959:493;;;;;;;;;;-1:-1:-1;3959:493:9;;;;;:::i;:::-;;:::i;1375:26::-;;;;;;;;;;-1:-1:-1;1375: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;7583:375:9;;;;;;;;;;-1:-1:-1;7583:375:9;;;;;:::i;:::-;;:::i;1302:33::-;;;;;;;;;;;;;;;;2543:215:0;;;;;;;;;;-1:-1:-1;2543:215:0;;;;;:::i;:::-;;:::i;1342:24:9:-;;;;;;;;;;;;;;;;1478:28;;;;;;;;;;-1:-1:-1;1478:28:9;;;;-1:-1:-1;;;1478:28:9;;;;;;1515;;;;;;;;;;;;;;;;8384:114;;;;;;;;;;-1:-1:-1;8384:114:9;;;;;:::i;:::-;-1:-1:-1;;;;;8469:21:9;8445:4;8469:21;;;:12;:21;;;;;;;;;8384:114;5005:265;1531:13:0;:11;:13::i;:::-;5129::9::1;:31:::0;;-1:-1:-1;;5171:28:9;5129:31;::::1;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;5171:28:9;;;;;;;::::1;::::0;;::::1;::::0;;;5235:1:::1;-1:-1:-1::0;5218:18:9::1;5210:52;;;::::0;-1:-1:-1;;;5210:52:9;;6644:2:10;5210: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;;5210:52:9::1;;;;;;;;;5005: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;4460:274:9:-;1531:13:0;:11;:13::i;:::-;4597:4:9::1;4589;4568:13;3222:12:2::0;;;3144:97;4568:13:9::1;:17;::::0;4584:1:::1;4568:17;:::i;:::-;4567:26;;;;:::i;:::-;4566:35;;;;:::i;:::-;4556:6;:45;;4534:141;;;::::0;-1:-1:-1;;;4534:141:9;;7906:2:10;4534:141:9::1;::::0;::::1;7888:21:10::0;7945:2;7925:18;;;7918:30;7984:34;7964:18;;;7957:62;-1:-1:-1;;;8035:18:10;;;8028:44;8089:19;;4534:141:9::1;7704:410:10::0;4534:141:9::1;4709:17;:6:::0;4719::::1;4709:17;:::i;:::-;4686:20;:40:::0;-1:-1:-1;4460:274:9:o;5039:244:2:-;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;15509:275:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;15647:30:9;;::::1;-1:-1:-1::0;;;15647:30:9::1;15623:12;15601:35:::0;;;::::1;15647:30;15601:11;15647:30:::0;15722:4:::1;15601:11;3390:18:2::0;;;;;;;;;;;15688:40:9::1;;15741:35;15755:8;15765:10;15741:13;:35::i;:::-;15590:194;15509:275:::0;;:::o;7131:90::-;1531:13:0;:11;:13::i;:::-;7188:18:9::1;:25:::0;;-1:-1:-1;;7188:25:9::1;::::0;::::1;::::0;;7131:90::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;3775:176:9:-;3827:4;1531:13:0;:11;:13::i;:::-;-1:-1:-1;3844:14:9::1;:22:::0;;-1:-1:-1;;3844:22:9::1;::::0;;3877:12:::1;:16:::0;;-1:-1:-1;;3904:17:9;;;3844:14:::1;3775:176:::0;:::o;6681:148::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;6776:38:9;;;::::1;;::::0;;;:30:::1;:38;::::0;;;;:45;;-1:-1:-1;;6776:45:9::1;::::0;::::1;;::::0;;;::::1;::::0;;6681:148::o;7966:99::-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;8030:19:9::1;8052:5;8030:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;8030:27:9::1;::::0;;7966:99::o;6287:196::-;1531:13:0;:11;:13::i;:::-;6360:12:9::1;6378:6;-1:-1:-1::0;;;;;6378:11:9::1;6411:21;6378:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6359:89;;;6467:7;6459:16;;;::::0;::::1;5558:161:::0;1531:13:0;:11;:13::i;:::-;5667:10:9::1;::::0;5638:40:::1;::::0;-1:-1:-1;;;;;5667:10:9;;::::1;::::0;5638:40;::::1;::::0;::::1;::::0;5667:10:::1;::::0;5638:40:::1;5689:10;:22:::0;;-1:-1:-1;;;;;;5689:22:9::1;-1:-1:-1::0;;;;;5689:22:9;;;::::1;::::0;;;::::1;::::0;;5558:161::o;5727:256::-;1531:13:0;:11;:13::i;:::-;5805:46:9::1;::::0;-1:-1:-1;;;5805:46:9;;5820:4:::1;5805:46;::::0;::::1;2145:51:10::0;;;5787:15:9::1;::::0;5805:31:::1;::::0;2118:18:10;;5805:46:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5862:51;::::0;-1:-1:-1;;;5862:51:9;;5893:10:::1;5862:51;::::0;::::1;8692::10::0;8759:18;;;8752:34;;;5787:64:9;;-1:-1:-1;5877:4:9::1;::::0;5862:30:::1;::::0;8665:18:10;;5862:51:9::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;5924:51:9::1;::::0;5932:10:::1;::::0;5953:21:::1;5924:51:::0;::::1;;;::::0;::::1;::::0;;;5953:21;5932:10;5924:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;5278:272:::0;1531:13:0;:11;:13::i;:::-;5404:14:9::1;:32:::0;;-1:-1:-1;;5447:30:9;-1:-1:-1;;;5404:32:9::1;::::0;;::::1;::::0;;;::::1;-1:-1:-1::0;;5447:30:9;;;;;;;;::::1;::::0;;::::1;;::::0;;;5514:1:::1;-1:-1:-1::0;5496:19:9::1;5488:54;;;::::0;-1:-1:-1;;;5488:54:9;;9249:2:10;5488:54:9::1;::::0;::::1;9231:21:10::0;9288:2;9268:18;;;9261:30;-1:-1:-1;;;9307:18:10;;;9300:52;9369:18;;5488:54:9::1;9047:346:10::0;2276:93:2;2323:13;2355:7;2348:14;;;;;:::i;6837:286:9:-;1531:13:0;:11;:13::i;:::-;6963::9::1;-1:-1:-1::0;;;;;6955:21:9::1;:4;-1:-1:-1::0;;;;;6955:21:9::1;::::0;6933:128:::1;;;::::0;-1:-1:-1;;;6933:128:9;;9600:2:10;6933:128:9::1;::::0;::::1;9582:21:10::0;9639:2;9619:18;;;9612:30;9678:34;9658:18;;;9651:62;9749:27;9729:18;;;9722:55;9794:19;;6933:128:9::1;9398:421:10::0;6933:128:9::1;7074:41;7103:4;7109:5;7074: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;6491:182:9:-;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;6576:28:9;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;6576:39:9::1;::::0;::::1;;::::0;;::::1;::::0;;;6631:34;;1920:41:10;;;6631:34:9::1;::::0;1893:18:10;6631:34:9::1;;;;;;;6491:182:::0;;:::o;4742:255::-;1531:13:0;:11;:13::i;:::-;4883:4:9::1;4875;4853:13;3222:12:2::0;;;3144:97;4853:13:9::1;:18;::::0;4869:2:::1;4853:18;:::i;:::-;4852:27;;;;:::i;:::-;4851:36;;;;:::i;:::-;4841:6;:46;;4819:130;;;::::0;-1:-1:-1;;;4819:130:9;;10026:2:10;4819:130:9::1;::::0;::::1;10008:21:10::0;10065:2;10045:18;;;10038:30;10104:34;10084:18;;;10077:62;-1:-1:-1;;;10155:18:10;;;10148:32;10197:19;;4819:130:9::1;9824:398:10::0;4819:130:9::1;4972:17;:6:::0;4982::::1;4972:17;:::i;:::-;4960:9;:29:::0;-1:-1:-1;4742:255:9:o;8073:169::-;1531:13:0;:11;:13::i;:::-;8150:6:9::1;8146:89;8162:6;:13;8158:1;:17;8146:89;;;8197:10;8213:6;8220:1;8213:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;8197:26;;::::1;::::0;::::1;::::0;;-1:-1:-1;8197:26:9;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;8197:26:9::1;-1:-1:-1::0;;;;;8197:26:9;;::::1;::::0;;;::::1;::::0;;8177:3;::::1;::::0;::::1;:::i;:::-;;;;8146:89;;5991:288:::0;1531:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;6086:20:9;::::1;6078:59;;;::::0;-1:-1:-1;;;6078:59:9;;10701:2:10;6078:59:9::1;::::0;::::1;10683:21:10::0;10740:2;10720:18;;;10713:30;10779:28;10759:18;;;10752:56;10825:18;;6078:59:9::1;10499:350:10::0;6078:59:9::1;6175:39;::::0;-1:-1:-1;;;6175:39:9;;6208:4:::1;6175:39;::::0;::::1;2145:51:10::0;6148:24:9::1;::::0;-1:-1:-1;;;;;6175:24:9;::::1;::::0;::::1;::::0;2118:18:10;;6175:39:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6225:46;::::0;-1:-1:-1;;;6225:46:9;;-1:-1:-1;;;;;8710:32:10;;;6225:46:9::1;::::0;::::1;8692:51:10::0;8759:18;;;8752:34;;;6148:66:9;;-1:-1:-1;6225:23:9;;::::1;::::0;::::1;::::0;8665:18:10;;6225:46:9::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;6067:212;5991:288:::0;;:::o;3959:493::-;4067:4;1531:13:0;:11;:13::i;:::-;4146:6:9::1;4125:13;3222:12:2::0;;;3144:97;4125:13:9::1;:17;::::0;4141:1:::1;4125:17;:::i;:::-;4124:28;;;;:::i;:::-;4111:9;:41;;4089:142;;;::::0;-1:-1:-1;;;4089:142:9;;11056:2:10;4089:142:9::1;::::0;::::1;11038:21:10::0;11095:2;11075:18;;;11068:30;11134:34;11114:18;;;11107:62;-1:-1:-1;;;11185:18:10;;;11178:49;11244:19;;4089:142:9::1;10854:415:10::0;4089:142:9::1;4299:4;4278:13;3222:12:2::0;;;3144:97;4278:13:9::1;:17;::::0;4294:1:::1;4278:17;:::i;:::-;4277:26;;;;:::i;:::-;4264:9;:39;;4242:139;;;::::0;-1:-1:-1;;;4242:139:9;;11476:2:10;4242:139:9::1;::::0;::::1;11458:21:10::0;11515:2;11495:18;;;11488:30;11554:34;11534:18;;;11527:62;-1:-1:-1;;;11605:18:10;;;11598:48;11663:19;;4242:139:9::1;11274:414:10::0;4242:139:9::1;-1:-1:-1::0;4392:18:9::1;:30:::0;;;4440:4:::1;1554:1:0;3959:493:9::0;;;:::o;7583:375::-;1531:13:0;:11;:13::i;:::-;7671:18:9::1;::::0;;;::::1;;;7670:19;7662:65;;;::::0;-1:-1:-1;;;7662:65:9;;11895:2:10;7662:65:9::1;::::0;::::1;11877:21:10::0;11934:2;11914:18;;;11907:30;11973:34;11953:18;;;11946:62;-1:-1:-1;;;12024:18:10;;;12017:31;12065:19;;7662:65:9::1;11693:397:10::0;7662:65:9::1;7781:13;-1:-1:-1::0;;;;;7760:35:9::1;:9;-1:-1:-1::0;;;;;7760:35:9::1;;;:76;;;;;7820:15;-1:-1:-1::0;;;;;7799:37:9::1;:9;-1:-1:-1::0;;;;;7799:37:9::1;;;7760:76;7738:171;;;::::0;-1:-1:-1;;;7738:171:9;;12297:2:10;7738:171:9::1;::::0;::::1;12279:21:10::0;12336:2;12316:18;;;12309:30;12375:34;12355:18;;;12348:62;-1:-1:-1;;;12426:18:10;;;12419:42;12478:19;;7738:171:9::1;12095:408:10::0;7738:171:9::1;-1:-1:-1::0;;;;;7920:23:9::1;;::::0;;;:12:::1;:23;::::0;;;;:30;;-1:-1:-1;;7920:30:9::1;7946:4;7920:30;::::0;;7583: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;;;;;12728:32:10;;10944:60:2;;;12710:51:10;12777:18;;;12770:34;;;12820:18;;;12813:34;;;12683:18;;10944:60:2;12508:345:10;10889:130:2;11060:57;11069:5;11076:7;11104:5;11085:16;:24;11111:5;11060:8;:57::i;8506:3338:9:-;-1:-1:-1;;;;;8638:18:9;;8630:68;;;;-1:-1:-1;;;8630:68:9;;13060:2:10;8630:68:9;;;13042:21:10;13099:2;13079:18;;;13072:30;13138:34;13118:18;;;13111:62;-1:-1:-1;;;13189:18:10;;;13182:35;13234:19;;8630:68:9;12858:401:10;8630:68:9;-1:-1:-1;;;;;8717:16:9;;8709:64;;;;-1:-1:-1;;;8709:64:9;;13466:2:10;8709:64:9;;;13448:21:10;13505:2;13485:18;;;13478:30;13544:34;13524:18;;;13517:62;-1:-1:-1;;;13595:18:10;;;13588:33;13638:19;;8709:64:9;13264:399:10;8709:64:9;-1:-1:-1;;;;;8793:18:9;;;;;;:12;:18;;;;;;;;8792:19;8784:49;;;;-1:-1:-1;;;8784:49:9;;13870:2:10;8784:49:9;;;13852:21:10;13909:2;13889:18;;;13882:30;-1:-1:-1;;;13928:18:10;;;13921:48;13986:18;;8784:49:9;13668:342:10;8784:49:9;-1:-1:-1;;;;;8853:16:9;;;;;;:12;:16;;;;;;;;8852:17;8844:49;;;;-1:-1:-1;;;8844:49:9;;14217:2:10;8844:49:9;;;14199:21:10;14256:2;14236:18;;;14229:30;-1:-1:-1;;;14275:18:10;;;14268:50;14335:18;;8844:49:9;14015:344:10;8844:49:9;8910:6;8920:1;8910:11;8906:93;;8938:28;8954:4;8960:2;8964:1;8938:15;:28::i;8906:93::-;9034:14;;;;;;;9061:1450;;;;1710:6:0;;-1:-1:-1;;;;;9119:15:9;;;1710:6:0;;9119:15:9;;;;:49;;-1:-1:-1;1710:6:0;;-1:-1:-1;;;;;9155:13:9;;;1710:6:0;;9155:13:9;;9119:49;:86;;;;-1:-1:-1;;;;;;9189:16:9;;;;9119:86;:128;;;;-1:-1:-1;;;;;;9226:21:9;;9240:6;9226:21;;9119:128;:159;;;;-1:-1:-1;9269:9:9;;;;9268:10;9119:159;9097:1403;;;-1:-1:-1;;;;;9367:31:9;;;;;;:25;:31;;;;;;;;:91;;;;-1:-1:-1;;;;;;9424:34:9;;;;;;:30;:34;;;;;;;;9423:35;9367:91;9341:1144;;;9545:20;;9535:6;:30;;9501:169;;;;-1:-1:-1;;;9501:169:9;;14566:2:10;9501:169:9;;;14548:21:10;14605:2;14585:18;;;14578:30;14644:34;14624:18;;;14617:62;-1:-1:-1;;;14695:18:10;;;14688:51;14756:19;;9501:169:9;14364:417:10;9501:169:9;9753:9;;-1:-1:-1;;;;;3390:18:2;;3364:7;3390:18;;;;;;;;;;;9727:22:9;;:6;:22;:::i;:::-;:35;;9693:140;;;;-1:-1:-1;;;9693:140:9;;15118:2:10;9693:140:9;;;15100:21:10;15157:2;15137:18;;;15130:30;-1:-1:-1;;;15176:18:10;;;15169:49;15235:18;;9693:140:9;14916:343:10;9693:140:9;9341:1144;;;-1:-1:-1;;;;;9931:29:9;;;;;;:25;:29;;;;;;;;:91;;;;-1:-1:-1;;;;;;9986:36:9;;;;;;:30;:36;;;;;;;;9985:37;9931:91;9905:580;;;10109:20;;10099:6;:30;;10065:170;;;;-1:-1:-1;;;10065:170:9;;15466:2:10;10065:170:9;;;15448:21:10;15505:2;15485:18;;;15478:30;15544:34;15524:18;;;15517:62;-1:-1:-1;;;15595:18:10;;;15588:52;15657:19;;10065:170:9;15264:418:10;9905:580:9;-1:-1:-1;;;;;10266:34:9;;;;;;:30;:34;;;;;;;;10261:224;;10385:9;;-1:-1:-1;;;;;3390:18:2;;3364:7;3390:18;;;;;;;;;;;10359:22:9;;:6;:22;:::i;:::-;:35;;10325:140;;;;-1:-1:-1;;;10325:140:9;;15118:2:10;10325:140:9;;;15100:21:10;15157:2;15137:18;;;15130:30;-1:-1:-1;;;15176:18:10;;;15169:49;15235:18;;10325:140:9;14916:343:10;10325:140:9;10572:4;10523:28;3390:18:2;;;;;;;;;;;10630::9;;10606:42;;;;;;;10679:34;;-1:-1:-1;10704:9:9;;;;10703:10;10679:34;:83;;;;-1:-1:-1;;;;;;10731:31:9;;;;;;:25;:31;;;;;;;;10730:32;10679:83;:126;;;;-1:-1:-1;;;;;;10780:25:9;;;;;;:19;:25;;;;;;;;10779:26;10679:126;:167;;;;-1:-1:-1;;;;;;10823:23:9;;;;;;:19;:23;;;;;;;;10822:24;10679:167;10661:302;;;10873:9;:16;;-1:-1:-1;;10873:16:9;10885:4;10873:16;;;10906:11;:9;:11::i;:::-;10934:9;:17;;-1:-1:-1;;10934:17:9;;;10661:302;10991:9;;-1:-1:-1;;;;;11017:25:9;;10975:12;11017:25;;;:19;:25;;;;;;10991:9;;;;10990:10;;11017:25;;:52;;-1:-1:-1;;;;;;11046:23:9;;;;;;:19;:23;;;;;;;;11017:52;11013:100;;;-1:-1:-1;11096:5:9;11013:100;11125:12;11156:7;11152:639;;;-1:-1:-1;;;;;11184:29:9;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;11217:13:9;;;;;;;:17;;11184:50;11180:462;;;11318:3;11271:44;11289:15;11306:2;11310:4;11271:17;:44::i;:::-;11262:53;;:6;:53;:::i;:::-;:59;;;;:::i;:::-;11365:14;;11255:66;;-1:-1:-1;11383:3:9;;11358:21;;-1:-1:-1;;;11365:14:9;;;;11255:66;11358:21;:::i;:::-;11357:29;;;;:::i;:::-;11340:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;11180:462:9;;-1:-1:-1;11180:462:9;;-1:-1:-1;;;;;11425:31:9;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;11460:12:9;;;;:16;;11425:51;11421:221;;;11559:3;11513:43;11530:15;11547:2;11551:4;11513:16;:43::i;:::-;11504:52;;:6;:52;:::i;:::-;:58;;;;:::i;:::-;11606:13;;11497:65;;-1:-1:-1;11623:3:9;;11599:20;;11606:13;;;;;11497:65;11599:20;:::i;:::-;11598:28;;;;:::i;:::-;11581:13;;:45;;;;;;;:::i;:::-;;;;-1:-1:-1;;11421:221:9;11662:8;;11658:91;;11691:42;11707:4;11721;11728;11691:15;:42::i;:::-;11765:14;11775:4;11765:14;;:::i;:::-;;;11152:639;11803:33;11819:4;11825:2;11829:6;11803:15;:33::i;:::-;8619:3225;;;;;8506:3338;;;:::o;12532:365::-;12614:62;12631:4;12646:15;12664:11;12614:8;:62::i;:::-;12689:15;-1:-1:-1;;;;;12689:31:9;;12728:9;12761:4;12781:11;12807:1;12824;12841:7;1710:6:0;;-1:-1:-1;;;;;1710:6:0;;1638:85;12841:7:9;12689:200;;;;;;-1:-1:-1;;;;;;12689:200:9;;;-1:-1:-1;;;;;16179:15:10;;;12689:200:9;;;16161:34:10;16211:18;;;16204:34;;;;16254:18;;;16247:34;;;;16297:18;;;16290:34;16361:15;;;16340:19;;;16333:44;12863:15:9;16393:19:10;;;16386:35;16095:19;;12689:200:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;12532: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;11852:188:9:-;-1:-1:-1;;;;;11935:31:9;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;11935:39:9;;;;;;;;;;11992:40;;11935:39;;:31;11992:40;;;11852: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;12905:702:9:-;12989:4;12945:23;3390:18:2;;;;;;;;;;;13034:13:9;;3390:18:2;;13087:20:9;;;:46;;-1:-1:-1;13111:22:9;;13087:46;13083:85;;;13150:7;;;12905:702::o;13083:85::-;13202:18;;:23;;13223:2;13202:23;:::i;:::-;13184:15;:41;13180:115;;;13260:18;;:23;;13281:2;13260:23;:::i;:::-;13242:41;;13180:115;13336:15;13362:37;13336:15;13362:17;:37::i;:::-;13412:18;13507:13;:17;;;13557:10;;13549:47;;13433:21;;;;-1:-1:-1;;;;;13557:10:9;;13433:21;;13549:47;13412:18;13549:47;13433:21;13557:10;13549:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;12905:702:9:o;13615:929::-;13714:7;13738:15;13734:54;;-1:-1:-1;13775:13:9;;;;;;;13768:20;;13734:54;13826:13;;13873:11;;13826:13;;;;;;;-1:-1:-1;;;;;13873:11:9;;;;-1:-1:-1;;;13920:13:9;;;13964:29;13920:13;13873:11;13964:29;:::i;:::-;13949:12;:44;13946:109;;;14053:2;14046:9;;;;;;;13946:109;14107:6;14103:163;14121:10;:17;14117:21;;14103:163;;;14170:10;14181:1;14170:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14163:20:9;;;14170:13;;14163:20;;:46;;;14196:10;14207:1;14196:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14187:22:9;;;14196:13;;14187:22;14163:46;14160:95;;;14237:2;14230:9;;;;;;;;14160:95;14140:3;;;;:::i;:::-;;;;14103:163;;;-1:-1:-1;14278:30:9;14311:27;14326:12;14311;:27;:::i;:::-;14278:60;-1:-1:-1;14349:18:9;14408:14;14377:28;14278:60;14377:3;:28;:::i;:::-;:45;;;;:::i;:::-;14370:53;;:3;:53;:::i;:::-;14349:74;;14450:14;14437:10;:27;14434:72;;;-1:-1:-1;14492:14:9;14434:72;14526:10;13615:929;-1:-1:-1;;;;;;;;13615:929:9:o;14552:949::-;14650:7;14674:15;14670:53;;-1:-1:-1;14711:12:9;;;;14704:19;;14670:53;14768:12;;14814:11;;14768:12;;;;;-1:-1:-1;;;;;14814:11:9;;;;-1:-1:-1;;;14861:13:9;;;14905:29;14861:13;14814:11;14905:29;:::i;:::-;14890:12;:44;14887:109;;;14994:2;14987:9;;;;;;;14887:109;15060:6;15056:163;15074:10;:17;15070:21;;15056:163;;;15123:10;15134:1;15123:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15116:20:9;;;15123:13;;15116:20;;:46;;;15149:10;15160:1;15149:13;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15140:22:9;;;15149:13;;15140:22;15116:46;15113:95;;;15190:2;15183:9;;;;;;;;15113:95;15093:3;;;;:::i;:::-;;;;15056:163;;;-1:-1:-1;15231:30:9;15264:27;15279:12;15264;:27;:::i;:::-;15231:60;-1:-1:-1;15302:18:9;15359:14;15329:27;15231:60;15329:2;:27;:::i;:::-;:44;;;;:::i;:::-;15323:51;;:2;:51;:::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;;;;;12728:32:10;;6657:50:2;;;12710:51:10;12777:18;;;12770:34;;;12820:18;;;12813:34;;;12683:18;;6657:50:2;12508: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;12048:476:9:-;12139:16;;;12153:1;12139:16;;;;;;;;12115:21;;12139:16;;;;;;;;;;-1:-1:-1;12139:16:9;12115:40;;12184:4;12166;12171:1;12166:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;12166:23:9;;;-1:-1:-1;;;;;12166:23:9;;;;;12210:15;-1:-1:-1;;;;;12210:20:9;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12200:4;12205:1;12200:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;12200:32:9;;;-1:-1:-1;;;;;12200:32:9;;;;;12245:62;12262:4;12277:15;12295:11;12245:8;:62::i;:::-;12320:196;;-1:-1:-1;;;12320:196:9;;-1:-1:-1;;;;;12320:15:9;:66;;;;:196;;12401:11;;12427:1;;12443:4;;12470;;12490:15;;12320:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12104:420;12048: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:180::-;2448:6;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;-1:-1:-1;2540:23:10;;2389:180;-1:-1:-1;2389:180:10:o;2574:456::-;2651:6;2659;2667;2720:2;2708:9;2699:7;2695:23;2691:32;2688:52;;;2736:1;2733;2726:12;2688:52;2775:9;2762:23;2794:31;2819:5;2794:31;:::i;:::-;2844:5;-1:-1:-1;2901:2:10;2886:18;;2873:32;2914:33;2873:32;2914:33;:::i;:::-;2574:456;;2966:7;;-1:-1:-1;;;3020:2:10;3005:18;;;;2992:32;;2574:456::o;3655:247::-;3714:6;3767:2;3755:9;3746:7;3742:23;3738:32;3735:52;;;3783:1;3780;3773:12;3735:52;3822:9;3809:23;3841:31;3866:5;3841:31;:::i;3907:369::-;3975:6;3983;4036:2;4024:9;4015:7;4011:23;4007:32;4004:52;;;4052:1;4049;4042:12;4004:52;4088:9;4075:23;4065:33;;4148:2;4137:9;4133:18;4120:32;-1:-1:-1;;;;;4185:5:10;4181:46;4174:5;4171:57;4161:85;;4242:1;4239;4232:12;4161:85;4265:5;4255:15;;;3907:369;;;;;:::o;4281:118::-;4367:5;4360:13;4353:21;4346:5;4343:32;4333:60;;4389:1;4386;4379:12;4404:382;4469:6;4477;4530:2;4518:9;4509:7;4505:23;4501:32;4498:52;;;4546:1;4543;4536:12;4498:52;4585:9;4572:23;4604:31;4629:5;4604:31;:::i;:::-;4654:5;-1:-1:-1;4711:2:10;4696:18;;4683:32;4724:30;4683:32;4724:30;:::i;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;7177:127::-;7238:10;7233:3;7229:20;7226:1;7219:31;7269:4;7266:1;7259:15;7293:4;7290:1;7283:15;7309:168;7382:9;;;7413;;7430:15;;;7424:22;;7410:37;7400:71;;7451:18;;:::i;7482:217::-;7522:1;7548;7538:132;;7592:10;7587:3;7583:20;7580:1;7573:31;7627:4;7624:1;7617:15;7655:4;7652:1;7645:15;7538:132;-1:-1:-1;7684:9:10;;7482:217::o;8329:184::-;8399:6;8452:2;8440:9;8431:7;8427:23;8423:32;8420:52;;;8468:1;8465;8458:12;8420:52;-1:-1:-1;8491:16:10;;8329:184;-1:-1:-1;8329:184:10:o;8797:245::-;8864:6;8917:2;8905:9;8896:7;8892:23;8888:32;8885:52;;;8933:1;8930;8923:12;8885:52;8965:9;8959:16;8984:28;9006:5;8984:28;:::i;10227:127::-;10288:10;10283:3;10279:20;10276:1;10269:31;10319:4;10316:1;10309:15;10343:4;10340:1;10333:15;10359:135;10398:3;10419:17;;;10416:43;;10439:18;;:::i;:::-;-1:-1:-1;10486:1:10;10475:13;;10359:135::o;14786:125::-;14851:9;;;14872:10;;;14869:36;;;14885:18;;:::i;15687:128::-;15754:9;;;15775:11;;;15772:37;;;15789:18;;:::i;16432:306::-;16520:6;16528;16536;16589:2;16577:9;16568:7;16564:23;16560:32;16557:52;;;16605:1;16602;16595:12;16557:52;16634:9;16628:16;16618:26;;16684:2;16673:9;16669:18;16663:25;16653:35;;16728:2;16717:9;16713:18;16707:25;16697:35;;16432:306;;;;;:::o;16743:251::-;16813:6;16866:2;16854:9;16845:7;16841:23;16837:32;16834:52;;;16882:1;16879;16872:12;16834:52;16914:9;16908:16;16933:31;16958:5;16933:31;:::i;16999:980::-;17261:4;17309:3;17298:9;17294:19;17340:6;17329:9;17322:25;17366:2;17404:6;17399:2;17388:9;17384:18;17377:34;17447:3;17442:2;17431:9;17427:18;17420:31;17471:6;17506;17500:13;17537:6;17529;17522:22;17575:3;17564:9;17560:19;17553:26;;17614:2;17606:6;17602:15;17588:29;;17635:1;17645:195;17659:6;17656:1;17653:13;17645:195;;;17724:13;;-1:-1:-1;;;;;17720:39:10;17708:52;;17815:15;;;;17780:12;;;;17756:1;17674:9;17645:195;;;-1:-1:-1;;;;;;;17896:32:10;;;;17891:2;17876:18;;17869:60;-1:-1:-1;;;17960:3:10;17945:19;17938:35;17857:3;16999:980;-1:-1:-1;;;16999:980:10:o

Swarm Source

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