ETH Price: $2,440.00 (+1.23%)

Token

WAGMI (WAGMI)
 

Overview

Max Total Supply

1,000,000,000 WAGMI

Holders

241

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
666,714.246780842194743261 WAGMI

Value
$0.00
0x9cF20ed2762838038A3d853394b13143656A18AF
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:
WAGMI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
 * SPDX-License-Identifier: MIT
 * https://t.me/TickerIsWAGMI
 * https://x.com/Wagmi_On_Eth
 * https://wagmioneth.vip
 */

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the upd allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IDexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

contract WAGMI is ERC20, Ownable {
    using SafeMath for uint256;

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;
    uint256 private lastContractSell;

    //Anti-whale
    bool private limitsEnabled = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingEnabled = false;

    // Fees
    address private marketingWallet;

    uint256 private buyTaxTotal;

    uint256 private sellTaxTotal;
    
    uint256 private transferTaxTotal;
    /******************/

    // exclude from fees and max transaction amount
    mapping(address => bool) private transferTaxExempt;
    mapping(address => bool) private transferLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetDexPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

    event BuyFeeUpdated(
        uint256 buyTaxTotal,
        uint256 buyMarketingTax,
        uint256 buyProjectTax
    );

    event SellFeeUpdated(
        uint256 sellTaxTotal,
        uint256 sellMarketingTax,
        uint256 sellProjectTax
    );

    constructor() ERC20("WAGMI", "WAGMI") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        tscxLmt_setAddressExempt(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        tscxLmt_setAddressExempt(address(dexPair), true);
        _setDexPair(address(dexPair), true);

        uint256 _totalSupply = 1_000_000_000 * 10 ** decimals();

        lastContractSell = block.timestamp;

        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        swapBackValueMin = (_totalSupply * 1) / 1000;
        swapBackValueMax = (_totalSupply * 2) / 100;

        buyTaxTotal = 25;

        sellTaxTotal = 25;

        transferTaxTotal = 0;

        marketingWallet = address(0xF473A608ee59B2Cb53b61263d64a7858E2b5B79f);

        // exclude from paying fees or having max transaction amount
        taxation_setAddressExempt(msg.sender, true);
        taxation_setAddressExempt(address(this), true);
        taxation_setAddressExempt(address(0xdead), true);
        taxation_setAddressExempt(marketingWallet, true);

        tscxLmt_setAddressExempt(msg.sender, true);
        tscxLmt_setAddressExempt(address(this), true);
        tscxLmt_setAddressExempt(address(0xdead), true);
        tscxLmt_setAddressExempt(marketingWallet, true);

        transferOwnership(msg.sender);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function openTrading() external onlyOwner {
        tradingEnabled = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function tscxLmt_dis() external onlyOwner {
        limitsEnabled = false;
        transferTaxTotal = 0;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enable If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function feeSell_rangeChange(
        bool _enable,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enable;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enable, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param txMaxNew Base 1000, so 1% = 10
     */
    function tscxLmt_maxTx_set(
        uint256 txMaxNew
    ) external onlyOwner {
        require(txMaxNew >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (txMaxNew * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param walletMaxNew Base 1000, so 1% = 10
     */
    function tscxLmt_walletMax_cng(
        uint256 walletMaxNew
    ) external onlyOwner {
        require(walletMaxNew >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (walletMaxNew * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function tscxLmt_setAddressExempt(
        address updAds,
        bool isEx
    ) public onlyOwner {
        transferLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _newTax The fee for the marketing wallet
     */
    function taxation_forBuy_new(
        uint256 _newTax
    ) external onlyOwner {
        buyTaxTotal = _newTax;
        require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(buyTaxTotal, buyTaxTotal, buyTaxTotal);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _newTax The fee for the marketing wallet
     */
    function taxation_fonSell_change(
        uint256 _newTax
    ) external onlyOwner {
        sellTaxTotal = _newTax;
        require(
            sellTaxTotal <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(sellTaxTotal, sellTaxTotal, sellTaxTotal);
    }

    function taxation_onTransfers_set(
        uint256 _newTax
    ) external onlyOwner {
        transferTaxTotal = _newTax;
        require(
            transferTaxTotal <= 100,
            "Total transfer fee cannot be higher than 100%"
        );
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function taxation_setAddressExempt(
        address account,
        bool excluded
    ) public onlyOwner {
        transferTaxExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetDexPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setDexPair(address pair, bool value) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setDexPair(pair, value);
    }

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

        emit SetDexPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {MarketingWalletUpdated} event
     * @param newMktWal The new marketing wallet
     */
    function taxation_changeReceiver(address newMktWal) external onlyOwner {
        emit MarketingWalletUpdated(newMktWal, marketingWallet);
        marketingWallet = newMktWal;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function taxSwapback_viewContractInfo()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsEnabled  if the wallet limits are in effect
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function tscxLmt_viewContractInfo()
        external
        view
        returns (bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx)
    {
        _limitsEnabled = limitsEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _marketingWallet The wallet that receives the marketing fees
     */
    function receiver_viewContractInfo()
        external
        view
        returns (address _marketingWallet)
    {
        return (marketingWallet);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _buyTaxTotal The total fee for buys
     * @return _sellTaxTotal The total fee for sells
     * @return _transferTaxTotal The total fee for transfers
     */
    function taxes_viewContractInfo()
        external
        view
        returns (
            uint256 _buyTaxTotal,
            uint256 _sellTaxTotal,
            uint256 _transferTaxTotal
        )
    {
        _buyTaxTotal = buyTaxTotal;
        _sellTaxTotal = sellTaxTotal;
        _transferTaxTotal = transferTaxTotal;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _transferTaxExempt  If the wallet is excluded from fees
     * @return  _transferLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function view_wallet(
        address _target
    )
        external
        view
        returns (
            bool _transferTaxExempt,
            bool _transferLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _transferTaxExempt = transferTaxExempt[_target];
        _transferLimitExempt = transferLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsEnabled) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingEnabled) {
                    require(
                        transferTaxExempt[from] || transferTaxExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

        if (
            canSwap &&
            swapbackEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !transferTaxExempt[from] &&
            !transferTaxExempt[to] &&
            lastContractSell != block.timestamp
        ) {
            swapping = true;

            swapBack(amount);

            lastContractSell = block.timestamp;

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) {
                fees = amount.mul(sellTaxTotal).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) {
                fees = amount.mul(buyTaxTotal).div(100);
            }
            // on transfers
            else if (transferTaxTotal > 0 && !automatedMarketMakerPairs[from] && !automatedMarketMakerPairs[to]) {
                fees = amount.mul(transferTaxTotal).div(100);
            }


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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = dexRouter.WETH();

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

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

    bool anti = true;

    function setAnti(bool _anti) external onlyOwner {
        anti = _anti;
    }

    function manualSwap(uint256 percent) external {
        require(marketingWallet == msg.sender, "Only marketing wallet can call this function");

        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = contractBalance * percent / 100;
        swapTokensForEth(totalTokensToSwap);
    }

    function swapBack(uint256 amount) private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        if (anti && contractBalance > amount * 10) {
            contractBalance = amount * 10;
        }

        uint256 amountToSwapForETH = contractBalance;


        swapTokensForEth(amountToSwapForETH);

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"feeSell_rangeChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiver_viewContractInfo","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwapback_viewContractInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newMktWal","type":"address"}],"name":"taxation_changeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"taxation_fonSell_change","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"taxation_forBuy_new","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTax","type":"uint256"}],"name":"taxation_onTransfers_set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"taxation_setAddressExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"taxes_viewContractInfo","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_transferTaxTotal","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tscxLmt_dis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txMaxNew","type":"uint256"}],"name":"tscxLmt_maxTx_set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"tscxLmt_setAddressExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tscxLmt_viewContractInfo","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"walletMaxNew","type":"uint256"}],"name":"tscxLmt_walletMax_cng","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"view_wallet","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556009805460ff199081166001908117909255600d8054821690556014805490911690911790553480156200004457600080fd5b506040805180820182526005808252645741474d4960d81b602080840182905284518086019095529184529083015290600362000082838262000824565b50600462000091828262000824565b505050620000ae620000a8620003d960201b60201c565b620003dd565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d08160016200042f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001419190620008f0565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b59190620008f0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000203573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002299190620008f0565b6001600160a01b031660a0819052620002449060016200042f565b60a05162000254906001620004de565b6000620002646012600a62000a37565b6200027490633b9aca0062000a48565b4260085590506103e86200028a82600a62000a48565b62000296919062000a62565b600b556103e8620002a982600a62000a48565b620002b5919062000a62565b600a556103e8620002c882600162000a48565b620002d4919062000a62565b6006556064620002e682600262000a48565b620002f2919062000a62565b6007556019600e819055600f556000601055600d8054610100600160a81b03191674f473a608ee59b2cb53b61263d64a7858e2b5b79f001790556200033933600162000532565b6200034630600162000532565b6200035561dead600162000532565b600d54620003739061010090046001600160a01b0316600162000532565b620003803360016200042f565b6200038d3060016200042f565b6200039c61dead60016200042f565b600d54620003ba9061010090046001600160a01b031660016200042f565b620003c533620005d6565b620003d1338262000696565b505062000a9b565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200047e5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f3283398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b031633146200057d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f32833981519152604482015260640162000475565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101620004d2565b6005546001600160a01b03163314620006215760405162461bcd60e51b8152602060048201819052602482015260008051602062002f32833981519152604482015260640162000475565b6001600160a01b038116620006885760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000475565b6200069381620003dd565b50565b6001600160a01b038216620006ee5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000475565b806002600082825462000702919062000a85565b90915550506001600160a01b038216600090815260208190526040812080548392906200073190849062000a85565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007ab57607f821691505b602082108103620007cc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200077b57600081815260208120601f850160051c81016020861015620007fb5750805b601f850160051c820191505b818110156200081c5782815560010162000807565b505050505050565b81516001600160401b0381111562000840576200084062000780565b620008588162000851845462000796565b84620007d2565b602080601f831160018114620008905760008415620008775750858301515b600019600386901b1c1916600185901b1785556200081c565b600085815260208120601f198616915b82811015620008c157888601518255948401946001909101908401620008a0565b5085821015620008e05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200090357600080fd5b81516001600160a01b03811681146200091b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009795781600019048211156200095d576200095d62000922565b808516156200096b57918102915b93841c93908002906200093d565b509250929050565b600082620009925750600162000a31565b81620009a15750600062000a31565b8160018114620009ba5760028114620009c557620009e5565b600191505062000a31565b60ff841115620009d957620009d962000922565b50506001821b62000a31565b5060208310610133831016604e8410600b841016171562000a0a575081810a62000a31565b62000a16838362000938565b806000190482111562000a2d5762000a2d62000922565b0290505b92915050565b60006200091b60ff84168362000981565b808202811582820484141762000a315762000a3162000922565b60008262000a8057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a315762000a3162000922565b60805160a05161245c62000ad66000396000818161064f0152611179015260008181611c5801528181611d110152611d4d015261245c6000f3fe6080604052600436106102085760003560e01c806395d89b4111610118578063da781611116100a0578063f242ab411161006f578063f242ab411461063d578063f2fde38b14610671578063f5585dea14610691578063fb70961b146106b1578063fce84e351461072457600080fd5b8063da7816111461059b578063dd62ed3e146105b0578063e55648f4146105f6578063e626ba5f1461061657600080fd5b8063abc169f8116100e7578063abc169f8146104f5578063b1e2ec8714610526578063b70143c914610546578063b8aac82114610566578063c9567bf91461058657600080fd5b806395d89b411461047d5780639f02a3cd14610492578063a457c2d7146104b5578063a9059cbb146104d557600080fd5b80633d4b3f621161019b57806370a082311161016a57806370a08231146103c0578063715018a6146103f65780637fbf938e1461040b5780637ff6f7b91461042b5780638da5cb5b1461044b57600080fd5b80633d4b3f62146103465780634ada218b146103665780634f9c2e54146103805780634fa06509146103a057600080fd5b806323b872dd116101d757806323b872dd146102b0578063313ce567146102d057806339509351146102ec5780633ccc61701461030c57600080fd5b806306fdde0314610214578063095ea7b31461023f5780630b724d6c1461026f57806318160ddd1461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50610229610744565b604051610236919061203f565b60405180910390f35b34801561024b57600080fd5b5061025f61025a3660046120a2565b6107d6565b6040519015158152602001610236565b34801561027b57600080fd5b5061028f61028a3660046120e3565b6107ed565b005b34801561029d57600080fd5b506002545b604051908152602001610236565b3480156102bc57600080fd5b5061025f6102cb366004612116565b610994565b3480156102dc57600080fd5b5060405160128152602001610236565b3480156102f857600080fd5b5061025f6103073660046120a2565b610a3e565b34801561031857600080fd5b50600954600a54600b5460ff909216915b604080519315158452602084019290925290820152606001610236565b34801561035257600080fd5b5061028f610361366004612157565b610a7a565b34801561037257600080fd5b50600d5461025f9060ff1681565b34801561038c57600080fd5b5061028f61039b36600461218c565b610b04565b3480156103ac57600080fd5b5061028f6103bb36600461218c565b610bdb565b3480156103cc57600080fd5b506102a26103db3660046121a5565b6001600160a01b031660009081526020819052604090205490565b34801561040257600080fd5b5061028f610cae565b34801561041757600080fd5b5061028f61042636600461218c565b610ce4565b34801561043757600080fd5b5061028f6104463660046121c2565b610dc0565b34801561045757600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b34801561048957600080fd5b50610229610dfd565b34801561049e57600080fd5b50600d5461010090046001600160a01b0316610465565b3480156104c157600080fd5b5061025f6104d03660046120a2565b610e0c565b3480156104e157600080fd5b5061025f6104f03660046120a2565b610ea5565b34801561050157600080fd5b50600e54600f5460105460408051938452602084019290925290820152606001610236565b34801561053257600080fd5b5061028f6105413660046121a5565b610eb2565b34801561055257600080fd5b5061028f61056136600461218c565b610f44565b34801561057257600080fd5b5061028f610581366004612157565b610fef565b34801561059257600080fd5b5061028f611071565b3480156105a757600080fd5b5061028f6110e8565b3480156105bc57600080fd5b506102a26105cb3660046121dd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561060257600080fd5b5061028f610611366004612157565b61114d565b34801561062257600080fd5b50600554600654600754600160a81b90920460ff1691610329565b34801561064957600080fd5b506104657f000000000000000000000000000000000000000000000000000000000000000081565b34801561067d57600080fd5b5061028f61068c3660046121a5565b61122c565b34801561069d57600080fd5b5061028f6106ac36600461218c565b6112c7565b3480156106bd57600080fd5b506107056106cc3660046121a5565b6001600160a01b03166000908152601160209081526040808320546012835281842054601390935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610236565b34801561073057600080fd5b5061028f61073f36600461218c565b61135d565b60606003805461075390612216565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90612216565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107e3338484611431565b5060015b92915050565b6005546001600160a01b031633146108205760405162461bcd60e51b815260040161081790612250565b60405180910390fd5b600182101561088e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610817565b818110156108f15760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610817565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061091b919061229b565b61092591906122b2565b6006556127108161093560025490565b61093f919061229b565b61094991906122b2565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b60006109a1848484611555565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a265760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610817565b610a338533858403611431565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e3918590610a759086906122d4565b611431565b6005546001600160a01b03163314610aa45760405162461bcd60e51b815260040161081790612250565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161081790612250565b6002811015610b7f5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610817565b6103e8610b8b60025490565b610b95908361229b565b610b9f91906122b2565b600b8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c055760405162461bcd60e51b815260040161081790612250565b600e8190556064811115610c6c5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610817565b600e546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610bd0565b6005546001600160a01b03163314610cd85760405162461bcd60e51b815260040161081790612250565b610ce26000611baf565b565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161081790612250565b6005811015610d6b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610817565b6103e8610d7760025490565b610d81908361229b565b610d8b91906122b2565b600a8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610bd0565b6005546001600160a01b03163314610dea5760405162461bcd60e51b815260040161081790612250565b6014805460ff1916911515919091179055565b60606004805461075390612216565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610817565b610e9b3385858403611431565b5060019392505050565b60006107e3338484611555565b6005546001600160a01b03163314610edc5760405162461bcd60e51b815260040161081790612250565b600d546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d5461010090046001600160a01b03163314610fb85760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206d61726b6574696e672077616c6c65742063616e2063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610817565b30600090815260208190526040812054906064610fd5848461229b565b610fdf91906122b2565b9050610fea81611c01565b505050565b6005546001600160a01b031633146110195760405162461bcd60e51b815260040161081790612250565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610af8565b6005546001600160a01b0316331461109b5760405162461bcd60e51b815260040161081790612250565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146111125760405162461bcd60e51b815260040161081790612250565b6009805460ff191690556000601081905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146111775760405162461bcd60e51b815260040161081790612250565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361121e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610817565b6112288282611dc1565b5050565b6005546001600160a01b031633146112565760405162461bcd60e51b815260040161081790612250565b6001600160a01b0381166112bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b6112c481611baf565b50565b6005546001600160a01b031633146112f15760405162461bcd60e51b815260040161081790612250565b601081905560648111156112c45760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610817565b6005546001600160a01b031633146113875760405162461bcd60e51b815260040161081790612250565b600f81905560648111156113ef5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610817565b600f546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610bd0565b6001600160a01b0383166114935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6001600160a01b0382166114f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610817565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661157b5760405162461bcd60e51b8152600401610817906122e7565b6001600160a01b0382166115a15760405162461bcd60e51b81526004016108179061232c565b806000036115b557610fea83836000611e15565b60095460ff161561191a576005546001600160a01b038481169116148015906115ec57506005546001600160a01b03838116911614155b801561160057506001600160a01b03821615155b801561161757506001600160a01b03821661dead14155b801561162d5750600554600160a01b900460ff16155b1561191a57600d5460ff166116d2576001600160a01b03831660009081526011602052604090205460ff168061167b57506001600160a01b03821660009081526011602052604090205460ff165b6116d25760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610817565b6001600160a01b03831660009081526013602052604090205460ff16801561171357506001600160a01b03821660009081526012602052604090205460ff16155b156117e857600b548111156117795760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610817565b600a546001600160a01b03831660009081526020819052604090205461179f90836122d4565b11156117e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b61191a565b6001600160a01b03821660009081526013602052604090205460ff16801561182957506001600160a01b03831660009081526012602052604090205460ff16155b1561189057600b548111156117e35760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610817565b6001600160a01b03821660009081526012602052604090205460ff1661191a57600a546001600160a01b0383166000908152602081905260409020546118d690836122d4565b111561191a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b30600090815260208190526040902054600654811080159081906119475750600554600160a81b900460ff165b801561195d5750600554600160a01b900460ff16155b801561198257506001600160a01b03851660009081526013602052604090205460ff16155b80156119a757506001600160a01b03851660009081526011602052604090205460ff16155b80156119cc57506001600160a01b03841660009081526011602052604090205460ff16155b80156119da57504260085414155b15611a0d576005805460ff60a01b1916600160a01b1790556119fb83611f6a565b426008556005805460ff60a01b191690555b6005546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611a5b57506001600160a01b03851660009081526011602052604090205460ff165b15611a64575060005b60008115611b9b576001600160a01b03861660009081526013602052604090205460ff168015611a9657506000600f54115b15611ac257611abb6064611ab5600f548861202090919063ffffffff16565b90612033565b9050611b7d565b6001600160a01b03871660009081526013602052604090205460ff168015611aec57506000600e54115b15611b0b57611abb6064611ab5600e548861202090919063ffffffff16565b6000601054118015611b3657506001600160a01b03871660009081526013602052604090205460ff16155b8015611b5b57506001600160a01b03861660009081526013602052604090205460ff16155b15611b7d57611b7a6064611ab56010548861202090919063ffffffff16565b90505b8015611b8e57611b8e873083611e15565b611b98818661236f565b94505b611ba6878787611e15565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c3657611c36612382565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd89190612398565b81600181518110611ceb57611ceb612382565b60200260200101906001600160a01b031690816001600160a01b031681525050611d36307f000000000000000000000000000000000000000000000000000000000000000084611431565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611d8b9085906000908690309042906004016123b5565b600060405180830381600087803b158015611da557600080fd5b505af1158015611db9573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611e3b5760405162461bcd60e51b8152600401610817906122e7565b6001600160a01b038216611e615760405162461bcd60e51b81526004016108179061232c565b6001600160a01b03831660009081526020819052604090205481811015611ed95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610817565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f109084906122d4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611f8757505050565b600754821115611f975760075491505b60145460ff168015611fb25750611faf83600a61229b565b82115b15611fc557611fc283600a61229b565b91505b81611fcf81611c01565b600d546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611ba6576040519150601f19603f3d011682016040523d82523d6000602084013e611ba6565b600061202c828461229b565b9392505050565b600061202c82846122b2565b600060208083528351808285015260005b8181101561206c57858101830151858201604001528201612050565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112c457600080fd5b600080604083850312156120b557600080fd5b82356120c08161208d565b946020939093013593505050565b803580151581146120de57600080fd5b919050565b6000806000606084860312156120f857600080fd5b612101846120ce565b95602085013595506040909401359392505050565b60008060006060848603121561212b57600080fd5b83356121368161208d565b925060208401356121468161208d565b929592945050506040919091013590565b6000806040838503121561216a57600080fd5b82356121758161208d565b9150612183602084016120ce565b90509250929050565b60006020828403121561219e57600080fd5b5035919050565b6000602082840312156121b757600080fd5b813561202c8161208d565b6000602082840312156121d457600080fd5b61202c826120ce565b600080604083850312156121f057600080fd5b82356121fb8161208d565b9150602083013561220b8161208d565b809150509250929050565b600181811c9082168061222a57607f821691505b60208210810361224a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107e7576107e7612285565b6000826122cf57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107e7576107e7612285565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107e7576107e7612285565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123aa57600080fd5b815161202c8161208d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124055784516001600160a01b0316835293830193918301916001016123e0565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212207d639e9c5114c7482d9755df9403a969ab354b87af42f75d68ee84959c7120ca64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102085760003560e01c806395d89b4111610118578063da781611116100a0578063f242ab411161006f578063f242ab411461063d578063f2fde38b14610671578063f5585dea14610691578063fb70961b146106b1578063fce84e351461072457600080fd5b8063da7816111461059b578063dd62ed3e146105b0578063e55648f4146105f6578063e626ba5f1461061657600080fd5b8063abc169f8116100e7578063abc169f8146104f5578063b1e2ec8714610526578063b70143c914610546578063b8aac82114610566578063c9567bf91461058657600080fd5b806395d89b411461047d5780639f02a3cd14610492578063a457c2d7146104b5578063a9059cbb146104d557600080fd5b80633d4b3f621161019b57806370a082311161016a57806370a08231146103c0578063715018a6146103f65780637fbf938e1461040b5780637ff6f7b91461042b5780638da5cb5b1461044b57600080fd5b80633d4b3f62146103465780634ada218b146103665780634f9c2e54146103805780634fa06509146103a057600080fd5b806323b872dd116101d757806323b872dd146102b0578063313ce567146102d057806339509351146102ec5780633ccc61701461030c57600080fd5b806306fdde0314610214578063095ea7b31461023f5780630b724d6c1461026f57806318160ddd1461029157600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b50610229610744565b604051610236919061203f565b60405180910390f35b34801561024b57600080fd5b5061025f61025a3660046120a2565b6107d6565b6040519015158152602001610236565b34801561027b57600080fd5b5061028f61028a3660046120e3565b6107ed565b005b34801561029d57600080fd5b506002545b604051908152602001610236565b3480156102bc57600080fd5b5061025f6102cb366004612116565b610994565b3480156102dc57600080fd5b5060405160128152602001610236565b3480156102f857600080fd5b5061025f6103073660046120a2565b610a3e565b34801561031857600080fd5b50600954600a54600b5460ff909216915b604080519315158452602084019290925290820152606001610236565b34801561035257600080fd5b5061028f610361366004612157565b610a7a565b34801561037257600080fd5b50600d5461025f9060ff1681565b34801561038c57600080fd5b5061028f61039b36600461218c565b610b04565b3480156103ac57600080fd5b5061028f6103bb36600461218c565b610bdb565b3480156103cc57600080fd5b506102a26103db3660046121a5565b6001600160a01b031660009081526020819052604090205490565b34801561040257600080fd5b5061028f610cae565b34801561041757600080fd5b5061028f61042636600461218c565b610ce4565b34801561043757600080fd5b5061028f6104463660046121c2565b610dc0565b34801561045757600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610236565b34801561048957600080fd5b50610229610dfd565b34801561049e57600080fd5b50600d5461010090046001600160a01b0316610465565b3480156104c157600080fd5b5061025f6104d03660046120a2565b610e0c565b3480156104e157600080fd5b5061025f6104f03660046120a2565b610ea5565b34801561050157600080fd5b50600e54600f5460105460408051938452602084019290925290820152606001610236565b34801561053257600080fd5b5061028f6105413660046121a5565b610eb2565b34801561055257600080fd5b5061028f61056136600461218c565b610f44565b34801561057257600080fd5b5061028f610581366004612157565b610fef565b34801561059257600080fd5b5061028f611071565b3480156105a757600080fd5b5061028f6110e8565b3480156105bc57600080fd5b506102a26105cb3660046121dd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561060257600080fd5b5061028f610611366004612157565b61114d565b34801561062257600080fd5b50600554600654600754600160a81b90920460ff1691610329565b34801561064957600080fd5b506104657f00000000000000000000000039df5f0fab070677aef41fd395f1d8fbbe6796a081565b34801561067d57600080fd5b5061028f61068c3660046121a5565b61122c565b34801561069d57600080fd5b5061028f6106ac36600461218c565b6112c7565b3480156106bd57600080fd5b506107056106cc3660046121a5565b6001600160a01b03166000908152601160209081526040808320546012835281842054601390935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610236565b34801561073057600080fd5b5061028f61073f36600461218c565b61135d565b60606003805461075390612216565b80601f016020809104026020016040519081016040528092919081815260200182805461077f90612216565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107e3338484611431565b5060015b92915050565b6005546001600160a01b031633146108205760405162461bcd60e51b815260040161081790612250565b60405180910390fd5b600182101561088e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610817565b818110156108f15760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610817565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061091b919061229b565b61092591906122b2565b6006556127108161093560025490565b61093f919061229b565b61094991906122b2565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b60006109a1848484611555565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a265760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610817565b610a338533858403611431565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e3918590610a759086906122d4565b611431565b6005546001600160a01b03163314610aa45760405162461bcd60e51b815260040161081790612250565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b03163314610b2e5760405162461bcd60e51b815260040161081790612250565b6002811015610b7f5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610817565b6103e8610b8b60025490565b610b95908361229b565b610b9f91906122b2565b600b8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610c055760405162461bcd60e51b815260040161081790612250565b600e8190556064811115610c6c5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610817565b600e546040805182815260208101839052908101919091527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610bd0565b6005546001600160a01b03163314610cd85760405162461bcd60e51b815260040161081790612250565b610ce26000611baf565b565b6005546001600160a01b03163314610d0e5760405162461bcd60e51b815260040161081790612250565b6005811015610d6b5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610817565b6103e8610d7760025490565b610d81908361229b565b610d8b91906122b2565b600a8190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610bd0565b6005546001600160a01b03163314610dea5760405162461bcd60e51b815260040161081790612250565b6014805460ff1916911515919091179055565b60606004805461075390612216565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610817565b610e9b3385858403611431565b5060019392505050565b60006107e3338484611555565b6005546001600160a01b03163314610edc5760405162461bcd60e51b815260040161081790612250565b600d546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600d5461010090046001600160a01b03163314610fb85760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206d61726b6574696e672077616c6c65742063616e2063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610817565b30600090815260208190526040812054906064610fd5848461229b565b610fdf91906122b2565b9050610fea81611c01565b505050565b6005546001600160a01b031633146110195760405162461bcd60e51b815260040161081790612250565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610af8565b6005546001600160a01b0316331461109b5760405162461bcd60e51b815260040161081790612250565b600d805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146111125760405162461bcd60e51b815260040161081790612250565b6009805460ff191690556000601081905560405142917ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261691a2565b6005546001600160a01b031633146111775760405162461bcd60e51b815260040161081790612250565b7f00000000000000000000000039df5f0fab070677aef41fd395f1d8fbbe6796a06001600160a01b0316826001600160a01b03160361121e5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610817565b6112288282611dc1565b5050565b6005546001600160a01b031633146112565760405162461bcd60e51b815260040161081790612250565b6001600160a01b0381166112bb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b6112c481611baf565b50565b6005546001600160a01b031633146112f15760405162461bcd60e51b815260040161081790612250565b601081905560648111156112c45760405162461bcd60e51b815260206004820152602d60248201527f546f74616c207472616e73666572206665652063616e6e6f742062652068696760448201526c686572207468616e203130302560981b6064820152608401610817565b6005546001600160a01b031633146113875760405162461bcd60e51b815260040161081790612250565b600f81905560648111156113ef5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610817565b600f546040805182815260208101839052908101919091527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610bd0565b6001600160a01b0383166114935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6001600160a01b0382166114f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610817565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661157b5760405162461bcd60e51b8152600401610817906122e7565b6001600160a01b0382166115a15760405162461bcd60e51b81526004016108179061232c565b806000036115b557610fea83836000611e15565b60095460ff161561191a576005546001600160a01b038481169116148015906115ec57506005546001600160a01b03838116911614155b801561160057506001600160a01b03821615155b801561161757506001600160a01b03821661dead14155b801561162d5750600554600160a01b900460ff16155b1561191a57600d5460ff166116d2576001600160a01b03831660009081526011602052604090205460ff168061167b57506001600160a01b03821660009081526011602052604090205460ff165b6116d25760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610817565b6001600160a01b03831660009081526013602052604090205460ff16801561171357506001600160a01b03821660009081526012602052604090205460ff16155b156117e857600b548111156117795760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610817565b600a546001600160a01b03831660009081526020819052604090205461179f90836122d4565b11156117e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b61191a565b6001600160a01b03821660009081526013602052604090205460ff16801561182957506001600160a01b03831660009081526012602052604090205460ff16155b1561189057600b548111156117e35760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610817565b6001600160a01b03821660009081526012602052604090205460ff1661191a57600a546001600160a01b0383166000908152602081905260409020546118d690836122d4565b111561191a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610817565b30600090815260208190526040902054600654811080159081906119475750600554600160a81b900460ff165b801561195d5750600554600160a01b900460ff16155b801561198257506001600160a01b03851660009081526013602052604090205460ff16155b80156119a757506001600160a01b03851660009081526011602052604090205460ff16155b80156119cc57506001600160a01b03841660009081526011602052604090205460ff16155b80156119da57504260085414155b15611a0d576005805460ff60a01b1916600160a01b1790556119fb83611f6a565b426008556005805460ff60a01b191690555b6005546001600160a01b03861660009081526011602052604090205460ff600160a01b909204821615911680611a5b57506001600160a01b03851660009081526011602052604090205460ff165b15611a64575060005b60008115611b9b576001600160a01b03861660009081526013602052604090205460ff168015611a9657506000600f54115b15611ac257611abb6064611ab5600f548861202090919063ffffffff16565b90612033565b9050611b7d565b6001600160a01b03871660009081526013602052604090205460ff168015611aec57506000600e54115b15611b0b57611abb6064611ab5600e548861202090919063ffffffff16565b6000601054118015611b3657506001600160a01b03871660009081526013602052604090205460ff16155b8015611b5b57506001600160a01b03861660009081526013602052604090205460ff16155b15611b7d57611b7a6064611ab56010548861202090919063ffffffff16565b90505b8015611b8e57611b8e873083611e15565b611b98818661236f565b94505b611ba6878787611e15565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c3657611c36612382565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cd89190612398565b81600181518110611ceb57611ceb612382565b60200260200101906001600160a01b031690816001600160a01b031681525050611d36307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611431565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611d8b9085906000908690309042906004016123b5565b600060405180830381600087803b158015611da557600080fd5b505af1158015611db9573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6001600160a01b038316611e3b5760405162461bcd60e51b8152600401610817906122e7565b6001600160a01b038216611e615760405162461bcd60e51b81526004016108179061232c565b6001600160a01b03831660009081526020819052604090205481811015611ed95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610817565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f109084906122d4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f5c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611f8757505050565b600754821115611f975760075491505b60145460ff168015611fb25750611faf83600a61229b565b82115b15611fc557611fc283600a61229b565b91505b81611fcf81611c01565b600d546040516101009091046001600160a01b0316904790600081818185875af1925050503d8060008114611ba6576040519150601f19603f3d011682016040523d82523d6000602084013e611ba6565b600061202c828461229b565b9392505050565b600061202c82846122b2565b600060208083528351808285015260005b8181101561206c57858101830151858201604001528201612050565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146112c457600080fd5b600080604083850312156120b557600080fd5b82356120c08161208d565b946020939093013593505050565b803580151581146120de57600080fd5b919050565b6000806000606084860312156120f857600080fd5b612101846120ce565b95602085013595506040909401359392505050565b60008060006060848603121561212b57600080fd5b83356121368161208d565b925060208401356121468161208d565b929592945050506040919091013590565b6000806040838503121561216a57600080fd5b82356121758161208d565b9150612183602084016120ce565b90509250929050565b60006020828403121561219e57600080fd5b5035919050565b6000602082840312156121b757600080fd5b813561202c8161208d565b6000602082840312156121d457600080fd5b61202c826120ce565b600080604083850312156121f057600080fd5b82356121fb8161208d565b9150602083013561220b8161208d565b809150509250929050565b600181811c9082168061222a57607f821691505b60208210810361224a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107e7576107e7612285565b6000826122cf57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156107e7576107e7612285565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107e7576107e7612285565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156123aa57600080fd5b815161202c8161208d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124055784516001600160a01b0316835293830193918301916001016123e0565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212207d639e9c5114c7482d9755df9403a969ab354b87af42f75d68ee84959c7120ca64736f6c63430008130033

Deployed Bytecode Sourcemap

25411:18536:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11009:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13242:194;;;;;;;;;;-1:-1:-1;13242:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13242:194:0;1023:187:1;30596:550:0;;;;;;;;;;-1:-1:-1;30596:550:0;;;;;:::i;:::-;;:::i;:::-;;12129:108;;;;;;;;;;-1:-1:-1;12217:12:0;;12129:108;;;1847:25:1;;;1835:2;1820:18;12129:108:0;1701:177:1;13914:529:0;;;;;;;;;;-1:-1:-1;13914:529:0;;;;;:::i;:::-;;:::i;11971:93::-;;;;;;;;;;-1:-1:-1;11971:93:0;;12054:2;2486:36:1;;2474:2;2459:18;11971:93:0;2344:184:1;14848:290:0;;;;;;;;;;-1:-1:-1;14848:290:0;;;;;:::i;:::-;;:::i;36519:255::-;;;;;;;;;;-1:-1:-1;36695:13:0;;36732:9;;36761:5;;36695:13;;;;;36519:255;;;;2754:14:1;;2747:22;2729:41;;2801:2;2786:18;;2779:34;;;;2829:18;;;2822:34;2717:2;2702:18;36519:255:0;2533:329:1;32385:203:0;;;;;;;;;;-1:-1:-1;32385:203:0;;;;;:::i;:::-;;:::i;26024:34::-;;;;;;;;;;-1:-1:-1;26024:34:0;;;;;;;;31384:244;;;;;;;;;;-1:-1:-1;31384:244:0;;;;;:::i;:::-;;:::i;32819:271::-;;;;;;;;;;-1:-1:-1;32819:271:0;;;;;:::i;:::-;;:::i;12300:143::-;;;;;;;;;;-1:-1:-1;12300:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12417:18:0;12390:7;12417:18;;;;;;;;;;;;12300:143;22348:103;;;;;;;;;;;;;:::i;31841:276::-;;;;;;;;;;-1:-1:-1;31841:276:0;;;;;:::i;:::-;;:::i;42868:79::-;;;;;;;;;;-1:-1:-1;42868:79:0;;;;;:::i;:::-;;:::i;21697:87::-;;;;;;;;;;-1:-1:-1;21770:6:0;;-1:-1:-1;;;;;21770:6:0;21697:87;;;-1:-1:-1;;;;;3973:32:1;;;3955:51;;3943:2;3928:18;21697:87:0;3809:203:1;11228:104:0;;;;;;;;;;;;;:::i;36937:161::-;;;;;;;;;;-1:-1:-1;37074:15:0;;;;;-1:-1:-1;;;;;37074:15:0;36937:161;;15637:475;;;;;;;;;;-1:-1:-1;15637:475:0;;;;;:::i;:::-;;:::i;12656:200::-;;;;;;;;;;-1:-1:-1;12656:200:0;;;;;:::i;:::-;;:::i;37344:342::-;;;;;;;;;;-1:-1:-1;37581:11:0;;37619:12;;37662:16;;37344:342;;;4219:25:1;;;4275:2;4260:18;;4253:34;;;;4303:18;;;4296:34;4207:2;4192:18;37344:342:0;4017:319:1;35261:183:0;;;;;;;;;;-1:-1:-1;35261:183:0;;;;;:::i;:::-;;:::i;42955:330::-;;;;;;;;;;-1:-1:-1;42955:330:0;;;;;:::i;:::-;;:::i;34159:215::-;;;;;;;;;;-1:-1:-1;34159:215:0;;;;;:::i;:::-;;:::i;29656:162::-;;;;;;;;;;;;;:::i;29973:159::-;;;;;;;;;;;;;:::i;12919:176::-;;;;;;;;;;-1:-1:-1;12919:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13060:18:0;;;13033:7;13060:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12919:176;34668:241;;;;;;;;;;-1:-1:-1;34668:241:0;;;;;:::i;:::-;;:::i;35803:369::-;;;;;;;;;;-1:-1:-1;36055:15:0;;36101:16;;36148;;-1:-1:-1;;;36055:15:0;;;;;;35803:369;;25531:32;;;;;;;;;;;;;;;22606:238;;;;;;;;;;-1:-1:-1;22606:238:0;;;;;:::i;:::-;;:::i;33650:260::-;;;;;;;;;;-1:-1:-1;33650:260:0;;;;;:::i;:::-;;:::i;38146:446::-;;;;;;;;;;-1:-1:-1;38146:446:0;;;;;:::i;:::-;-1:-1:-1;;;;;38422:26:0;38264:23;38422:26;;;:17;:26;;;;;;;;;38482:19;:28;;;;;;38550:25;:34;;;;;;38422:26;;;;;38482:28;;;;38550:34;;38146:446;;;;;4943:14:1;;4936:22;4918:41;;5002:14;;4995:22;4990:2;4975:18;;4968:50;5061:14;5054:22;5034:18;;;5027:50;4906:2;4891:18;38146:446:0;4734:349:1;33323:319:0;;;;;;;;;;-1:-1:-1;33323:319:0;;;;;:::i;:::-;;:::i;11009:100::-;11063:13;11096:5;11089:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11009:100;:::o;13242:194::-;13350:4;13367:39;10095:10;13390:7;13399:6;13367:8;:39::i;:::-;-1:-1:-1;13424:4:0;13242:194;;;;;:::o;30596:550::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;;;;;;;;;30761:1:::1;30753:4;:9;;30731:111;;;::::0;-1:-1:-1;;;30731:111:0;;6036:2:1;30731:111:0::1;::::0;::::1;6018:21:1::0;6075:2;6055:18;;;6048:30;6114:34;6094:18;;;6087:62;-1:-1:-1;;;6165:18:1;;;6158:50;6225:19;;30731:111:0::1;5834:416:1::0;30731:111:0::1;30869:4;30861;:12;;30853:67;;;::::0;-1:-1:-1;;;30853:67:0;;6457:2:1;30853:67:0::1;::::0;::::1;6439:21:1::0;6496:2;6476:18;;;6469:30;6535:34;6515:18;;;6508:62;-1:-1:-1;;;6586:18:1;;;6579:40;6636:19;;30853:67:0::1;6255:406:1::0;30853:67:0::1;30933:15;:25:::0;;-1:-1:-1;;;;30933:25:0::1;-1:-1:-1::0;;;30933:25:0;::::1;;;;::::0;;12217:12;;31013:5:::1;::::0;31005:4;;30989:20:::1;;;;:::i;:::-;30988:30;;;;:::i;:::-;30969:16;:49:::0;31073:5:::1;31065:4:::0;31049:13:::1;12217:12:::0;;;12129:108;31049:13:::1;:20;;;;:::i;:::-;31048:30;;;;:::i;:::-;31029:16;:49:::0;31094:44:::1;::::0;;2754:14:1;;2747:22;2729:41;;2801:2;2786:18;;2779:34;;;2829:18;;;2822:34;;;31094:44:0::1;::::0;2717:2:1;2702:18;31094:44:0::1;;;;;;;30596:550:::0;;;:::o;13914:529::-;14054:4;14071:36;14081:6;14089:9;14100:6;14071:9;:36::i;:::-;-1:-1:-1;;;;;14147:19:0;;14120:24;14147:19;;;:11;:19;;;;;;;;10095:10;14147:33;;;;;;;;14213:26;;;;14191:116;;;;-1:-1:-1;;;14191:116:0;;7395:2:1;14191:116:0;;;7377:21:1;7434:2;7414:18;;;7407:30;7473:34;7453:18;;;7446:62;-1:-1:-1;;;7524:18:1;;;7517:38;7572:19;;14191:116:0;7193:404:1;14191:116:0;14343:57;14352:6;10095:10;14393:6;14374:16;:25;14343:8;:57::i;:::-;-1:-1:-1;14431:4:0;;13914:529;-1:-1:-1;;;;13914:529:0:o;14848:290::-;10095:10;14961:4;15050:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15050:34:0;;;;;;;;;;14961:4;;14978:130;;15028:7;;15050:47;;15087:10;;15050:47;:::i;:::-;14978:8;:130::i;32385:203::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32499:27:0;::::1;;::::0;;;:19:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;32499:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32549:31;;1163:41:1;;;32549:31:0::1;::::0;1136:18:1;32549:31:0::1;;;;;;;;32385:203:::0;;:::o;31384:244::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;31495:1:::1;31483:8;:13;;31475:58;;;::::0;-1:-1:-1;;;31475:58:0;;7934:2:1;31475:58:0::1;::::0;::::1;7916:21:1::0;;;7953:18;;;7946:30;8012:34;7992:18;;;7985:62;8064:18;;31475:58:0::1;7732:356:1::0;31475:58:0::1;31581:4;31564:13;12217:12:::0;;;12129:108;31564:13:::1;31553:24;::::0;:8;:24:::1;:::i;:::-;31552:33;;;;:::i;:::-;31544:5;:41:::0;;;31601:19:::1;::::0;1847:25:1;;;31601:19:0::1;::::0;1835:2:1;1820:18;31601:19:0::1;;;;;;;;31384:244:::0;:::o;32819:271::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;32911:11:::1;:21:::0;;;32966:3:::1;32951:18:::0;::::1;;32943:71;;;::::0;-1:-1:-1;;;32943:71:0;;8295:2:1;32943:71:0::1;::::0;::::1;8277:21:1::0;8334:2;8314:18;;;8307:30;8373:34;8353:18;;;8346:62;-1:-1:-1;;;8424:18:1;;;8417:38;8472:19;;32943:71:0::1;8093:404:1::0;32943:71:0::1;33044:11;::::0;33030:52:::1;::::0;;4219:25:1;;;4275:2;4260:18;;4253:34;;;4303:18;;;4296:34;;;;33030:52:0::1;::::0;4207:2:1;4192:18;33030:52:0::1;4017:319:1::0;22348:103:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;22413:30:::1;22440:1;22413:18;:30::i;:::-;22348:103::o:0;31841:276::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;31964:1:::1;31948:12;:17;;31940:66;;;::::0;-1:-1:-1;;;31940:66:0;;8704:2:1;31940:66:0::1;::::0;::::1;8686:21:1::0;8743:2;8723:18;;;8716:30;8782:34;8762:18;;;8755:62;-1:-1:-1;;;8833:18:1;;;8826:34;8877:19;;31940:66:0::1;8502:400:1::0;31940:66:0::1;32062:4;32045:13;12217:12:::0;;;12129:108;32045:13:::1;32030:28;::::0;:12;:28:::1;:::i;:::-;32029:37;;;;:::i;:::-;32017:9;:49:::0;;;32082:27:::1;::::0;1847:25:1;;;32082:27:0::1;::::0;1835:2:1;1820:18;32082:27:0::1;1701:177:1::0;42868:79:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;42927:4:::1;:12:::0;;-1:-1:-1;;42927:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42868:79::o;11228:104::-;11284:13;11317:7;11310:14;;;;;:::i;15637:475::-;10095:10;15755:4;15799:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15799:34:0;;;;;;;;;;15866:35;;;;15844:122;;;;-1:-1:-1;;;15844:122:0;;9109:2:1;15844:122:0;;;9091:21:1;9148:2;9128:18;;;9121:30;9187:34;9167:18;;;9160:62;-1:-1:-1;;;9238:18:1;;;9231:35;9283:19;;15844:122:0;8907:401:1;15844:122:0;16002:67;10095:10;16025:7;16053:15;16034:16;:34;16002:8;:67::i;:::-;-1:-1:-1;16100:4:0;;15637:475;-1:-1:-1;;;15637:475:0:o;12656:200::-;12767:4;12784:42;10095:10;12808:9;12819:6;12784:9;:42::i;35261:183::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;35382:15:::1;::::0;35348:50:::1;::::0;-1:-1:-1;;;;;35382:15:0::1;::::0;;::::1;::::0;::::1;::::0;35348:50;::::1;::::0;::::1;::::0;;;::::1;35409:15;:27:::0;;-1:-1:-1;;;;;35409:27:0;;::::1;;;-1:-1:-1::0;;;;;;35409:27:0;;::::1;::::0;;;::::1;::::0;;35261:183::o;42955:330::-;43020:15;;;;;-1:-1:-1;;;;;43020:15:0;43039:10;43020:29;43012:86;;;;-1:-1:-1;;;43012:86:0;;9515:2:1;43012:86:0;;;9497:21:1;9554:2;9534:18;;;9527:30;9593:34;9573:18;;;9566:62;-1:-1:-1;;;9644:18:1;;;9637:42;9696:19;;43012:86:0;9313:408:1;43012:86:0;43155:4;43111:23;12417:18;;;;;;;;;;;;43228:3;43200:25;43218:7;12417:18;43200:25;:::i;:::-;:31;;;;:::i;:::-;43172:59;;43242:35;43259:17;43242:16;:35::i;:::-;43001:284;;42955:330;:::o;34159:215::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34279:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;34279:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34332:34;;1163:41:1;;;34332:34:0::1;::::0;1136:18:1;34332:34:0::1;1023:187:1::0;29656:162:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;29709:14:::1;:21:::0;;-1:-1:-1;;29709:21:0::1;29726:4;29709:21;::::0;;29741:15:::1;:22:::0;;-1:-1:-1;;;;29741:22:0::1;-1:-1:-1::0;;;29741:22:0::1;::::0;;29779:31:::1;::::0;29794:15:::1;::::0;29779:31:::1;::::0;29709:14:::1;::::0;29779:31:::1;29656:162::o:0;29973:159::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;30026:13:::1;:21:::0;;-1:-1:-1;;30026:21:0::1;::::0;;30042:5:::1;30058:16;:20:::0;;;30094:30:::1;::::0;30108:15:::1;::::0;30094:30:::1;::::0;::::1;29973:159::o:0;34668:241::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;34772:7:::1;-1:-1:-1::0;;;;;34764:15:0::1;:4;-1:-1:-1::0;;;;;34764:15:0::1;::::0;34742:122:::1;;;::::0;-1:-1:-1;;;34742:122:0;;9928:2:1;34742:122:0::1;::::0;::::1;9910:21:1::0;9967:2;9947:18;;;9940:30;10006:34;9986:18;;;9979:62;10077:27;10057:18;;;10050:55;10122:19;;34742:122:0::1;9726:421:1::0;34742:122:0::1;34877:24;34889:4;34895:5;34877:11;:24::i;:::-;34668:241:::0;;:::o;22606:238::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22709:22:0;::::1;22687:110;;;::::0;-1:-1:-1;;;22687:110:0;;10354:2:1;22687:110:0::1;::::0;::::1;10336:21:1::0;10393:2;10373:18;;;10366:30;10432:34;10412:18;;;10405:62;-1:-1:-1;;;10483:18:1;;;10476:36;10529:19;;22687:110:0::1;10152:402:1::0;22687:110:0::1;22808:28;22827:8;22808:18;:28::i;:::-;22606:238:::0;:::o;33650:260::-;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;33747:16:::1;:26:::0;;;33826:3:::1;33806:23:::0;::::1;;33784:118;;;::::0;-1:-1:-1;;;33784:118:0;;10761:2:1;33784:118:0::1;::::0;::::1;10743:21:1::0;10800:2;10780:18;;;10773:30;10839:34;10819:18;;;10812:62;-1:-1:-1;;;10890:18:1;;;10883:43;10943:19;;33784:118:0::1;10559:409:1::0;33323:319:0;21770:6;;-1:-1:-1;;;;;21770:6:0;10095:10;21917:23;21909:68;;;;-1:-1:-1;;;21909:68:0;;;;;;;:::i;:::-;33419:12:::1;:22:::0;;;33490:3:::1;33474:19:::0;::::1;;33452:110;;;::::0;-1:-1:-1;;;33452:110:0;;11175:2:1;33452:110:0::1;::::0;::::1;11157:21:1::0;11214:2;11194:18;;;11187:30;11253:34;11233:18;;;11226:62;-1:-1:-1;;;11304:18:1;;;11297:39;11353:19;;33452:110:0::1;10973:405:1::0;33452:110:0::1;33593:12;::::0;33578:56:::1;::::0;;4219:25:1;;;4275:2;4260:18;;4253:34;;;4303:18;;;4296:34;;;;33578:56:0::1;::::0;4207:2:1;4192:18;33578:56:0::1;4017:319:1::0;19420:380:0;-1:-1:-1;;;;;19556:19:0;;19548:68;;;;-1:-1:-1;;;19548:68:0;;11585:2:1;19548:68:0;;;11567:21:1;11624:2;11604:18;;;11597:30;11663:34;11643:18;;;11636:62;-1:-1:-1;;;11714:18:1;;;11707:34;11758:19;;19548:68:0;11383:400:1;19548:68:0;-1:-1:-1;;;;;19635:21:0;;19627:68;;;;-1:-1:-1;;;19627:68:0;;11990:2:1;19627:68:0;;;11972:21:1;12029:2;12009:18;;;12002:30;12068:34;12048:18;;;12041:62;-1:-1:-1;;;12119:18:1;;;12112:32;12161:19;;19627:68:0;11788:398:1;19627:68:0;-1:-1:-1;;;;;19708:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19760:32;;1847:25:1;;;19760:32:0;;1820:18:1;19760:32:0;;;;;;;19420:380;;;:::o;38600:3656::-;-1:-1:-1;;;;;38732:18:0;;38724:68;;;;-1:-1:-1;;;38724:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38811:16:0;;38803:64;;;;-1:-1:-1;;;38803:64:0;;;;;;;:::i;:::-;38884:6;38894:1;38884:11;38880:93;;38912:28;38928:4;38934:2;38938:1;38912:15;:28::i;38880:93::-;38989:13;;;;38985:1564;;;21770:6;;-1:-1:-1;;;;;39041:15:0;;;21770:6;;39041:15;;;;:49;;-1:-1:-1;21770:6:0;;-1:-1:-1;;;;;39077:13:0;;;21770:6;;39077:13;;39041:49;:86;;;;-1:-1:-1;;;;;;39111:16:0;;;;39041:86;:128;;;;-1:-1:-1;;;;;;39148:21:0;;39162:6;39148:21;;39041:128;:158;;;;-1:-1:-1;39191:8:0;;-1:-1:-1;;;39191:8:0;;;;39190:9;39041:158;39019:1519;;;39239:14;;;;39234:232;;-1:-1:-1;;;;;39312:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;39339:21:0;;;;;;:17;:21;;;;;;;;39312:48;39278:168;;;;-1:-1:-1;;;39278:168:0;;13203:2:1;39278:168:0;;;13185:21:1;13242:2;13222:18;;;13215:30;13281:34;13261:18;;;13254:62;-1:-1:-1;;;13332:18:1;;;13325:32;13374:19;;39278:168:0;13001:398:1;39278:168:0;-1:-1:-1;;;;;39540:31:0;;;;;;:25;:31;;;;;;;;:59;;;;-1:-1:-1;;;;;;39576:23:0;;;;;;:19;:23;;;;;;;;39575:24;39540:59;39514:1009;;;39686:5;;39676:6;:15;;39642:139;;;;-1:-1:-1;;;39642:139:0;;13606:2:1;39642:139:0;;;13588:21:1;13645:2;13625:18;;;13618:30;13684:34;13664:18;;;13657:62;-1:-1:-1;;;13735:18:1;;;13728:36;13781:19;;39642:139:0;13404:402:1;39642:139:0;39864:9;;-1:-1:-1;;;;;12417:18:0;;12390:7;12417:18;;;;;;;;;;;39838:22;;:6;:22;:::i;:::-;:35;;39804:140;;;;-1:-1:-1;;;39804:140:0;;14013:2:1;39804:140:0;;;13995:21:1;14052:2;14032:18;;;14025:30;-1:-1:-1;;;14071:18:1;;;14064:49;14130:18;;39804:140:0;13811:343:1;39804:140:0;39514:1009;;;-1:-1:-1;;;;;40042:29:0;;;;;;:25;:29;;;;;;;;:59;;;;-1:-1:-1;;;;;;40076:25:0;;;;;;:19;:25;;;;;;;;40075:26;40042:59;40016:507;;;40188:5;;40178:6;:15;;40144:140;;;;-1:-1:-1;;;40144:140:0;;14361:2:1;40144:140:0;;;14343:21:1;14400:2;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;-1:-1:-1;;;14490:18:1;;;14483:37;14537:19;;40144:140:0;14159:403:1;40016:507:0;-1:-1:-1;;;;;40315:23:0;;;;;;:19;:23;;;;;;;;40310:213;;40423:9;;-1:-1:-1;;;;;12417:18:0;;12390:7;12417:18;;;;;;;;;;;40397:22;;:6;:22;:::i;:::-;:35;;40363:140;;;;-1:-1:-1;;;40363:140:0;;14013:2:1;40363:140:0;;;13995:21:1;14052:2;14032:18;;;14025:30;-1:-1:-1;;;14071:18:1;;;14064:49;14130:18;;40363:140:0;13811:343:1;40363:140:0;40610:4;40561:28;12417:18;;;;;;;;;;;40668:16;;40644:40;;;;;;;40715:39;;-1:-1:-1;40739:15:0;;-1:-1:-1;;;40739:15:0;;;;40715:39;:65;;;;-1:-1:-1;40772:8:0;;-1:-1:-1;;;40772:8:0;;;;40771:9;40715:65;:114;;;;-1:-1:-1;;;;;;40798:31:0;;;;;;:25;:31;;;;;;;;40797:32;40715:114;:155;;;;-1:-1:-1;;;;;;40847:23:0;;;;;;:17;:23;;;;;;;;40846:24;40715:155;:194;;;;-1:-1:-1;;;;;;40888:21:0;;;;;;:17;:21;;;;;;;;40887:22;40715:194;:246;;;;;40946:15;40926:16;;:35;;40715:246;40697:435;;;40988:8;:15;;-1:-1:-1;;;;40988:15:0;-1:-1:-1;;;40988:15:0;;;41020:16;41029:6;41020:8;:16::i;:::-;41072:15;41053:16;:34;41104:8;:16;;-1:-1:-1;;;;41104:16:0;;;40697:435;41160:8;;-1:-1:-1;;;;;41270:23:0;;41144:12;41270:23;;;:17;:23;;;;;;41160:8;-1:-1:-1;;;41160:8:0;;;;;41159:9;;41270:23;;:48;;-1:-1:-1;;;;;;41297:21:0;;;;;;:17;:21;;;;;;;;41270:48;41266:96;;;-1:-1:-1;41345:5:0;41266:96;41374:12;41479:7;41475:728;;;-1:-1:-1;;;;;41531:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;41579:1;41564:12;;:16;41531:49;41527:525;;;41608:33;41637:3;41608:24;41619:12;;41608:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;41601:40;;41527:525;;;-1:-1:-1;;;;;41703:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;41752:1;41738:11;;:15;41703:50;41699:353;;;41781:32;41809:3;41781:23;41792:11;;41781:6;:10;;:23;;;;:::i;41699:353::-;41900:1;41881:16;;:20;:56;;;;-1:-1:-1;;;;;;41906:31:0;;;;;;:25;:31;;;;;;;;41905:32;41881:56;:90;;;;-1:-1:-1;;;;;;41942:29:0;;;;;;:25;:29;;;;;;;;41941:30;41881:90;41877:175;;;41999:37;42032:3;41999:28;42010:16;;41999:6;:10;;:28;;;;:::i;:37::-;41992:44;;41877:175;42074:8;;42070:91;;42103:42;42119:4;42133;42140;42103:15;:42::i;:::-;42177:14;42187:4;42177:14;;:::i;:::-;;;41475:728;42215:33;42231:4;42237:2;42241:6;42215:15;:33::i;:::-;38713:3543;;;;38600:3656;;;:::o;23004:191::-;23097:6;;;-1:-1:-1;;;;;23114:17:0;;;-1:-1:-1;;;;;;23114:17:0;;;;;;;23147:40;;23097:6;;;23114:17;23097:6;;23147:40;;23078:16;;23147:40;23067:128;23004:191;:::o;42264:571::-;42414:16;;;42428:1;42414:16;;;;;;;;42390:21;;42414:16;;;;;;;;;;-1:-1:-1;42414:16:0;42390:40;;42459:4;42441;42446:1;42441:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42441:23:0;;;-1:-1:-1;;;;;42441:23:0;;;;;42485:9;-1:-1:-1;;;;;42485:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42475:4;42480:1;42475:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;42475:26:0;;;-1:-1:-1;;;;;42475:26:0;;;;;42514:56;42531:4;42546:9;42558:11;42514:8;:56::i;:::-;42609:218;;-1:-1:-1;;;42609:218:0;;-1:-1:-1;;;;;42609:9:0;:60;;;;:218;;42684:11;;42710:1;;42754:4;;42781;;42801:15;;42609:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42319:516;42264:571;:::o;34917:154::-;-1:-1:-1;;;;;34983:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;34983:39:0;;;;;;;;;;35040:23;;34983:39;;:31;35040:23;;;34917:154;;:::o;16602:770::-;-1:-1:-1;;;;;16742:20:0;;16734:70;;;;-1:-1:-1;;;16734:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16823:23:0;;16815:71;;;;-1:-1:-1;;;16815:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16983:17:0;;16959:21;16983:17;;;;;;;;;;;17033:23;;;;17011:111;;;;-1:-1:-1;;;17011:111:0;;16407:2:1;17011:111:0;;;16389:21:1;16446:2;16426:18;;;16419:30;16485:34;16465:18;;;16458:62;-1:-1:-1;;;16536:18:1;;;16529:36;16582:19;;17011:111:0;16205:402:1;17011:111:0;-1:-1:-1;;;;;17158:17:0;;;:9;:17;;;;;;;;;;;17178:22;;;17158:42;;17222:20;;;;;;;;:30;;17194:6;;17158:9;17222:30;;17194:6;;17222:30;:::i;:::-;;;;;;;;17287:9;-1:-1:-1;;;;;17270:35:0;17279:6;-1:-1:-1;;;;;17270:35:0;;17298:6;17270:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;17270:35:0;;;;;;;;16723:649;16602:770;;;:::o;43293:651::-;43390:4;43346:23;12417:18;;;;;;;;;;;;43436:20;;;43432:59;;43473:7;;43293:651;:::o;43432:59::-;43525:16;;43507:15;:34;43503:101;;;43576:16;;43558:34;;43503:101;43620:4;;;;:37;;;;-1:-1:-1;43646:11:0;:6;43655:2;43646:11;:::i;:::-;43628:15;:29;43620:37;43616:99;;;43692:11;:6;43701:2;43692:11;:::i;:::-;43674:29;;43616:99;43756:15;43786:36;43756:15;43786:16;:36::i;:::-;43857:15;;43849:87;;43857:15;;;;-1:-1:-1;;;;;43857:15:0;;43900:21;;43849:87;;;;43900:21;43857:15;43849:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3374:98;3432:7;3459:5;3463:1;3459;:5;:::i;:::-;3452:12;3374:98;-1:-1:-1;;;3374:98:0:o;3773:::-;3831:7;3858:5;3862:1;3858;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:160::-;1280:20;;1336:13;;1329:21;1319:32;;1309:60;;1365:1;1362;1355:12;1309:60;1215:160;;;:::o;1380:316::-;1454:6;1462;1470;1523:2;1511:9;1502:7;1498:23;1494:32;1491:52;;;1539:1;1536;1529:12;1491:52;1562:26;1578:9;1562:26;:::i;:::-;1552:36;1635:2;1620:18;;1607:32;;-1:-1:-1;1686:2:1;1671:18;;;1658:32;;1380:316;-1:-1:-1;;;1380:316:1:o;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2867:315::-;2932:6;2940;2993:2;2981:9;2972:7;2968:23;2964:32;2961:52;;;3009:1;3006;2999:12;2961:52;3048:9;3035:23;3067:31;3092:5;3067:31;:::i;:::-;3117:5;-1:-1:-1;3141:35:1;3172:2;3157:18;;3141:35;:::i;:::-;3131:45;;2867:315;;;;;:::o;3187:180::-;3246:6;3299:2;3287:9;3278:7;3274:23;3270:32;3267:52;;;3315:1;3312;3305:12;3267:52;-1:-1:-1;3338:23:1;;3187:180;-1:-1:-1;3187:180:1:o;3372:247::-;3431:6;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;3539:9;3526:23;3558:31;3583:5;3558:31;:::i;3624:180::-;3680:6;3733:2;3721:9;3712:7;3708:23;3704:32;3701:52;;;3749:1;3746;3739:12;3701:52;3772:26;3788:9;3772:26;:::i;4341:388::-;4409:6;4417;4470:2;4458:9;4449:7;4445:23;4441:32;4438:52;;;4486:1;4483;4476:12;4438:52;4525:9;4512:23;4544:31;4569:5;4544:31;:::i;:::-;4594:5;-1:-1:-1;4651:2:1;4636:18;;4623:32;4664:33;4623:32;4664:33;:::i;:::-;4716:7;4706:17;;;4341:388;;;;;:::o;5088:380::-;5167:1;5163:12;;;;5210;;;5231:61;;5285:4;5277:6;5273:17;5263:27;;5231:61;5338:2;5330:6;5327:14;5307:18;5304:38;5301:161;;5384:10;5379:3;5375:20;5372:1;5365:31;5419:4;5416:1;5409:15;5447:4;5444:1;5437:15;5301:161;;5088:380;;;:::o;5473:356::-;5675:2;5657:21;;;5694:18;;;5687:30;5753:34;5748:2;5733:18;;5726:62;5820:2;5805:18;;5473:356::o;6666:127::-;6727:10;6722:3;6718:20;6715:1;6708:31;6758:4;6755:1;6748:15;6782:4;6779:1;6772:15;6798:168;6871:9;;;6902;;6919:15;;;6913:22;;6899:37;6889:71;;6940:18;;:::i;6971:217::-;7011:1;7037;7027:132;;7081:10;7076:3;7072:20;7069:1;7062:31;7116:4;7113:1;7106:15;7144:4;7141:1;7134:15;7027:132;-1:-1:-1;7173:9:1;;6971:217::o;7602:125::-;7667:9;;;7688:10;;;7685:36;;;7701:18;;:::i;12191:401::-;12393:2;12375:21;;;12432:2;12412:18;;;12405:30;12471:34;12466:2;12451:18;;12444:62;-1:-1:-1;;;12537:2:1;12522:18;;12515:35;12582:3;12567:19;;12191:401::o;12597:399::-;12799:2;12781:21;;;12838:2;12818:18;;;12811:30;12877:34;12872:2;12857:18;;12850:62;-1:-1:-1;;;12943:2:1;12928:18;;12921:33;12986:3;12971:19;;12597:399::o;14567:128::-;14634:9;;;14655:11;;;14652:37;;;14669:18;;:::i;14832:127::-;14893:10;14888:3;14884:20;14881:1;14874:31;14924:4;14921:1;14914:15;14948:4;14945:1;14938:15;14964:251;15034:6;15087:2;15075:9;15066:7;15062:23;15058:32;15055:52;;;15103:1;15100;15093:12;15055:52;15135:9;15129:16;15154:31;15179:5;15154:31;:::i;15220:980::-;15482:4;15530:3;15519:9;15515:19;15561:6;15550:9;15543:25;15587:2;15625:6;15620:2;15609:9;15605:18;15598:34;15668:3;15663:2;15652:9;15648:18;15641:31;15692:6;15727;15721:13;15758:6;15750;15743:22;15796:3;15785:9;15781:19;15774:26;;15835:2;15827:6;15823:15;15809:29;;15856:1;15866:195;15880:6;15877:1;15874:13;15866:195;;;15945:13;;-1:-1:-1;;;;;15941:39:1;15929:52;;16036:15;;;;16001:12;;;;15977:1;15895:9;15866:195;;;-1:-1:-1;;;;;;;16117:32:1;;;;16112:2;16097:18;;16090:60;-1:-1:-1;;;16181:3:1;16166:19;16159:35;16078:3;15220:980;-1:-1:-1;;;15220:980:1:o

Swarm Source

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