ETH Price: $2,523.92 (-0.02%)

Token

GrokChain (GROKC)
 

Overview

Max Total Supply

1,000,000,000,000,000,000,000,000,000 GROKC

Holders

83

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
5,265,352,257,495,751,269,230,427 GROKC

Value
$0.00
0xc18a728ef6502d023d3c53048337de67b055b239
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:
GrokChain

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 2023-11-28
*/

/*
 * SPDX-License-Identifier: MIT
 *  https://grokchain.finance
 *  https://t.me/GrokGRC20
 *  https://twitter.com/Grok_Grc20
*/

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 GrokChain is ERC20, Ownable {
    using SafeMath for uint256;

    IDexRouter private immutable uniRouter;
    address public immutable mainPair;

    // Swapback
    bool private swapping;

    bool private swapbEnabled = false;
    uint256 private minSwapback;
    uint256 private maxSwapback;

    //Anti-whale
    bool private limitsInEffect = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _lastTransfer;

    bool public grokLive = false;

    // Fee receivers
    address private marketingWallet;
    address private devWallet;

    uint256 private totalBuyFee;
    uint256 private buyMarketingFee;
    uint256 private buyTeamFee;

    uint256 private totalSellFee;
    uint256 private sellMarketingFee;
    uint256 private sellTeamFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForTeam;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    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 SetAutomatedMarketMakerPair(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 minSwapback,
        uint256 maxSwapback
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

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

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

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMarketingFee,
        uint256 buyTeamFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMarketingFee,
        uint256 sellTeamFee
    );

    constructor() ERC20("GrokChain", "GROKC") {
        IDexRouter _uniRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        setLimitsExempt(address(_uniRouter), true);
        uniRouter = _uniRouter;

        mainPair = IDexFactory(_uniRouter.factory()).createPair(
            address(this),
            _uniRouter.WETH()
        );
        setLimitsExempt(address(mainPair), true);
        _setAsPair(address(mainPair), true);

        uint256 _buyMarketingFee = 20;
        uint256 _buyTeamFee = 5;

        uint256 _sellMarketingFee = 55;
        uint256 _sellTeamFee = 15;

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

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

        minSwapback = (totalSupply * 1) / 1000;
        maxSwapback = (totalSupply * 1) / 100;

        buyMarketingFee = _buyMarketingFee;
        buyTeamFee = _buyTeamFee;
        totalBuyFee = buyMarketingFee + buyTeamFee;

        sellMarketingFee = _sellMarketingFee;
        sellTeamFee = _sellTeamFee;
        totalSellFee = sellMarketingFee + sellTeamFee;

        marketingWallet = address(0x1A60f38D4cf8d8EcF749136F030d9A8672029338);
        devWallet = address(msg.sender);

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

        setLimitsExempt(msg.sender, true);
        setLimitsExempt(address(this), true);
        setLimitsExempt(address(0xdead), 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);
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbEnabled  if swapback is enabled
     * @return  _minSwapback  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _maxSwapback  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackValues()
        external
        view
        returns (
            bool _swapbEnabled,
            uint256 _minSwapback,
            uint256 _maxSwapback
        )
    {
        _swapbEnabled = swapbEnabled;
        _minSwapback = minSwapback;
        _maxSwapback = maxSwapback;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet infoLimits 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 txLimitValues()
        external
        view
        returns (
            bool _limitsInEffect,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

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

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMarketingFee The fee for buys that gets sent to marketing
     * @return _buyTeamFee The fee for buys that gets sent to dev
     * @return _totalSellFee The total fee for sells
     * @return _sellMarketingFee The fee for sells that gets sent to marketing
     * @return _sellTeamFee The fee for sells that gets sent to dev
     */
    function tradingFeeValues()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMarketingFee,
            uint256 _buyTeamFee,
            uint256 _totalSellFee,
            uint256 _sellMarketingFee,
            uint256 _sellTeamFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMarketingFee = buyMarketingFee;
        _buyTeamFee = buyTeamFee;
        _totalSellFee = totalSellFee;
        _sellMarketingFee = sellMarketingFee;
        _sellTeamFee = sellTeamFee;
    }

    /**
     * @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  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function addressPermissions(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    receive() external payable {}

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

    /**
     * @notice Removes the max wallet and max transaction infoLimits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled 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 setSwapBack(
        bool _enabled,
        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");

        swapbEnabled = _enabled;
        minSwapback = (totalSupply() * _min) / 10000;
        maxSwapback = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _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 newNum Base 1000, so 1% = 10
     */
    function setMaxTx(uint256 newNum) external onlyOwner {
        require(newNum >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newNum * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

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

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx infoLimits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function setLimitsExempt(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[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 _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function setFeesBuy(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyTeamFee = _devFee;
        totalBuyFee = buyMarketingFee + buyTeamFee;
        require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(totalBuyFee, buyMarketingFee, buyTeamFee);
    }

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

    /**
     * @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 setFeeExempt(address account, bool excluded) public onlyOwner {
        isFeeExempt[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 {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAsPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != mainPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAsPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    /**
     * @notice Sets the dev wallet
     * @dev onlyOwner.
     * Emits an {DevWalletUpdated} event
     * @param newWallet The new dev wallet
     */
    function setTeamWallet(address newWallet) external onlyOwner {
        emit DevWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    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 (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!grokLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minSwapback;

        if (
            canSwap &&
            swapbEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !isFeeExempt[from] &&
            !isFeeExempt[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (isFeeExempt[from] || isFeeExempt[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] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(100);
                tokensForTeam += (fees * sellTeamFee) / totalSellFee;
                tokensForMarketing += (fees * sellMarketingFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(100);
                tokensForTeam += (fees * buyTeamFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMarketingFee) / totalBuyFee;
            }

            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] = uniRouter.WETH();

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

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


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

        if (contractBalance == 0) {
            return;
        }

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

        uint256 amountToSwapForETH = contractBalance;

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForTeam = 0;

        (success, ) = address(devWallet).call{value: ethForTeam}("");

        (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":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyTeamFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevWalletUpdated","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":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellTeamFee","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":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"minSwapback","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSwapback","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":"_target","type":"address"}],"name":"addressPermissions","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"grokChainLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"grokLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverWallets","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAsPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeesSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setLimitsExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackValues","outputs":[{"internalType":"bool","name":"_swapbEnabled","type":"bool"},{"internalType":"uint256","name":"_minSwapback","type":"uint256"},{"internalType":"uint256","name":"_maxSwapback","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingFeeValues","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyTeamFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellTeamFee","type":"uint256"}],"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":"txLimitValues","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805460ff19908116600117909155600c805490911690553480156200003757600080fd5b506040518060400160405280600981526020016823b937b5a1b430b4b760b91b8152506040518060400160405280600581526020016447524f4b4360d81b815250816003908162000089919062000833565b50600462000098828262000833565b505050620000b5620000af620003e860201b60201c565b620003ec565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d78160016200043e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000122573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001489190620008ff565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000196573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bc9190620008ff565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002309190620008ff565b6001600160a01b031660a08190526200024b9060016200043e565b60a0516200025b906001620004ed565b601460056037600f6000620002736012600a62000a46565b6200028390633b9aca0062000a57565b90506103e86200029582600a62000a57565b620002a1919062000a71565b600a9081556103e890620002b790839062000a57565b620002c3919062000a71565b6009556103e8620002d682600162000a57565b620002e2919062000a71565b6006556064620002f482600162000a57565b62000300919062000a71565b600755600f859055601084905562000319848662000a94565b600e556012839055601382905562000332828462000a94565b601155600c8054610100600160a81b031916741a60f38d4cf8d8ecf749136f030d9a867202933800179055600d8054336001600160a01b031990911681179091556200038090600162000541565b6200038d30600162000541565b6200039c61dead600162000541565b620003a93360016200043e565b620003b63060016200043e565b620003c561dead60016200043e565b620003d033620005e5565b620003dc3382620006a5565b50505050505062000aaa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200048d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f2383398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200058c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f23833981519152604482015260640162000484565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101620004e1565b6005546001600160a01b03163314620006305760405162461bcd60e51b8152602060048201819052602482015260008051602062002f23833981519152604482015260640162000484565b6001600160a01b038116620006975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000484565b620006a281620003ec565b50565b6001600160a01b038216620006fd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000484565b806002600082825462000711919062000a94565b90915550506001600160a01b038216600090815260208190526040812080548392906200074090849062000a94565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007ba57607f821691505b602082108103620007db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200078a57600081815260208120601f850160051c810160208610156200080a5750805b601f850160051c820191505b818110156200082b5782815560010162000816565b505050505050565b81516001600160401b038111156200084f576200084f6200078f565b6200086781620008608454620007a5565b84620007e1565b602080601f8311600181146200089f5760008415620008865750858301515b600019600386901b1c1916600185901b1785556200082b565b600085815260208120601f198616915b82811015620008d057888601518255948401946001909101908401620008af565b5085821015620008ef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200091257600080fd5b81516001600160a01b03811681146200092a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009885781600019048211156200096c576200096c62000931565b808516156200097a57918102915b93841c93908002906200094c565b509250929050565b600082620009a15750600162000a40565b81620009b05750600062000a40565b8160018114620009c95760028114620009d457620009f4565b600191505062000a40565b60ff841115620009e857620009e862000931565b50506001821b62000a40565b5060208310610133831016604e8410600b841016171562000a19575081810a62000a40565b62000a25838362000947565b806000190482111562000a3c5762000a3c62000931565b0290505b92915050565b60006200092a60ff84168362000990565b808202811582820484141762000a405762000a4062000931565b60008262000a8f57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a405762000a4062000931565b60805160a05161243e62000ae5600039600081816104af01526111fc015260008181611ea501528181611f5e0152611f9a015261243e6000f3fe6080604052600436106101f25760003560e01c806377b5312c1161010d578063a457c2d7116100a0578063c40b793b1161006f578063c40b793b14610609578063cb9dfa551461067c578063dd62ed3e1461069c578063ee87ee07146106e2578063f2fde38b1461070257600080fd5b8063a457c2d714610594578063a9059cbb146105b4578063bab57cf4146105d4578063bc337182146105e957600080fd5b80638da5cb5b116100dc5780638da5cb5b146105215780638ebfc7961461053f57806395d89b411461055f5780639fe640941461057457600080fd5b806377b5312c1461042a5780637bb929591461045157806385af30c51461049d57806386a50d96146104e957600080fd5b8063511b2f4b116101855780635d098b38116101545780635d098b38146103aa57806370a08231146103ca578063715018a614610400578063751039fc1461041557600080fd5b8063511b2f4b1461031657806352d6585814610330578063533a2abb146103505780635d0044ca1461038a57600080fd5b806323b872dd116101c157806323b872dd1461029a578063313ce567146102ba57806339509351146102d657806348e21833146102f657600080fd5b806306fdde03146101fe578063095ea7b3146102295780631525ff7d1461025957806318160ddd1461027b57600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610722565b604051610220919061201a565b60405180910390f35b34801561023557600080fd5b5061024961024436600461207d565b6107b4565b6040519015158152602001610220565b34801561026557600080fd5b506102796102743660046120a9565b6107cb565b005b34801561028757600080fd5b506002545b604051908152602001610220565b3480156102a657600080fd5b506102496102b53660046120c6565b61085b565b3480156102c657600080fd5b5060405160128152602001610220565b3480156102e257600080fd5b506102496102f136600461207d565b610905565b34801561030257600080fd5b5061027961031136600461211c565b610941565b34801561032257600080fd5b50600c546102499060ff1681565b34801561033c57600080fd5b5061027961034b366004612151565b6109cb565b34801561035c57600080fd5b50600854600954600a5460ff909216915b604080519315158452602084019290925290820152606001610220565b34801561039657600080fd5b506102796103a5366004612173565b610abd565b3480156103b657600080fd5b506102796103c53660046120a9565b610ba0565b3480156103d657600080fd5b5061028c6103e53660046120a9565b6001600160a01b031660009081526020819052604090205490565b34801561040c57600080fd5b50610279610c32565b34801561042157600080fd5b50610279610c68565b34801561043657600080fd5b50600554600654600754600160a81b90920460ff169161036d565b34801561045d57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c001610220565b3480156104a957600080fd5b506104d17f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610220565b3480156104f557600080fd5b50600c54600d54604080516101009093046001600160a01b039081168452909116602083015201610220565b34801561052d57600080fd5b506005546001600160a01b03166104d1565b34801561054b57600080fd5b5061027961055a36600461211c565b610cc9565b34801561056b57600080fd5b50610213610d4b565b34801561058057600080fd5b5061027961058f366004612151565b610d5a565b3480156105a057600080fd5b506102496105af36600461207d565b610e45565b3480156105c057600080fd5b506102496105cf36600461207d565b610ede565b3480156105e057600080fd5b50610279610eeb565b3480156105f557600080fd5b50610279610604366004612173565b610f62565b34801561061557600080fd5b5061065d6106243660046120a9565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610220565b34801561068857600080fd5b5061027961069736600461218c565b611032565b3480156106a857600080fd5b5061028c6106b73660046121bf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ee57600080fd5b506102796106fd36600461211c565b6111d0565b34801561070e57600080fd5b5061027961071d3660046120a9565b6112af565b606060038054610731906121f8565b80601f016020809104026020016040519081016040528092919081815260200182805461075d906121f8565b80156107aa5780601f1061077f576101008083540402835291602001916107aa565b820191906000526020600020905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b60006107c133848461134a565b5060015b92915050565b6005546001600160a01b031633146107fe5760405162461bcd60e51b81526004016107f590612232565b60405180910390fd5b600d546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600061086884848461146e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108ed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f5565b6108fa853385840361134a565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c191859061093c90869061227d565b61134a565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107f590612232565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b031633146109f55760405162461bcd60e51b81526004016107f590612232565b600f8290556010819055610a09818361227d565b600e81905560641015610a6f5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b60648201526084016107f5565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610ae75760405162461bcd60e51b81526004016107f590612232565b6005811015610b445760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107f5565b6103e8610b5060025490565b610b5a9083612290565b610b6491906122a7565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610bca5760405162461bcd60e51b81526004016107f590612232565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610c5c5760405162461bcd60e51b81526004016107f590612232565b610c666000611b0e565b565b6005546001600160a01b03163314610c925760405162461bcd60e51b81526004016107f590612232565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610cf35760405162461bcd60e51b81526004016107f590612232565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016109bf565b606060048054610731906121f8565b6005546001600160a01b03163314610d845760405162461bcd60e51b81526004016107f590612232565b60128290556013819055610d98818361227d565b601181905560641015610dff5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b60648201526084016107f5565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610ab1565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ec75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f5565b610ed4338585840361134a565b5060019392505050565b60006107c133848461146e565b6005546001600160a01b03163314610f155760405162461bcd60e51b81526004016107f590612232565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610f8c5760405162461bcd60e51b81526004016107f590612232565b6002811015610fdd5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e322560448201526064016107f5565b6103e8610fe960025490565b610ff39083612290565b610ffd91906122a7565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610b95565b6005546001600160a01b0316331461105c5760405162461bcd60e51b81526004016107f590612232565b60018210156110ca5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b60648201526084016107f5565b8181101561112d5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b60648201526084016107f5565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906111579190612290565b61116191906122a7565b6006556127108161117160025490565b61117b9190612290565b61118591906122a7565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146111fa5760405162461bcd60e51b81526004016107f590612232565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036112a15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107f5565b6112ab8282611b60565b5050565b6005546001600160a01b031633146112d95760405162461bcd60e51b81526004016107f590612232565b6001600160a01b03811661133e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f5565b61134781611b0e565b50565b6001600160a01b0383166113ac5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f5565b6001600160a01b03821661140d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114945760405162461bcd60e51b81526004016107f5906122c9565b6001600160a01b0382166114ba5760405162461bcd60e51b81526004016107f59061230e565b806000036114d3576114ce83836000611bb4565b505050565b60085460ff1615611838576005546001600160a01b0384811691161480159061150a57506005546001600160a01b03838116911614155b801561151e57506001600160a01b03821615155b801561153557506001600160a01b03821661dead14155b801561154b5750600554600160a01b900460ff16155b1561183857600c5460ff166115f0576001600160a01b03831660009081526016602052604090205460ff168061159957506001600160a01b03821660009081526016602052604090205460ff165b6115f05760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b60648201526084016107f5565b6001600160a01b03831660009081526018602052604090205460ff16801561163157506001600160a01b03821660009081526017602052604090205460ff16155b1561170657600a548111156116975760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b60648201526084016107f5565b6009546001600160a01b0383166000908152602081905260409020546116bd908361227d565b11156117015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f5565b611838565b6001600160a01b03821660009081526018602052604090205460ff16801561174757506001600160a01b03831660009081526017602052604090205460ff16155b156117ae57600a548111156117015760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b60648201526084016107f5565b6001600160a01b03821660009081526017602052604090205460ff16611838576009546001600160a01b0383166000908152602081905260409020546117f4908361227d565b11156118385760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f5565b30600090815260208190526040902054600654811080159081906118655750600554600160a81b900460ff165b801561187b5750600554600160a01b900460ff16155b80156118a057506001600160a01b03851660009081526018602052604090205460ff16155b80156118c557506001600160a01b03851660009081526016602052604090205460ff16155b80156118ea57506001600160a01b03841660009081526016602052604090205460ff16155b15611918576005805460ff60a01b1916600160a01b17905561190a611d09565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168061196657506001600160a01b03851660009081526016602052604090205460ff165b1561196f575060005b60008115611afa576001600160a01b03861660009081526018602052604090205460ff1680156119a157506000601154115b15611a2f576119c660646119c060115488611e2f90919063ffffffff16565b90611e42565b9050601154601354826119d99190612290565b6119e391906122a7565b601560008282546119f4919061227d565b9091555050601154601254611a099083612290565b611a1391906122a7565b60146000828254611a24919061227d565b90915550611adc9050565b6001600160a01b03871660009081526018602052604090205460ff168015611a5957506000600e54115b15611adc57611a7860646119c0600e5488611e2f90919063ffffffff16565b9050600e5460105482611a8b9190612290565b611a9591906122a7565b60156000828254611aa6919061227d565b9091555050600e54600f54611abb9083612290565b611ac591906122a7565b60146000828254611ad6919061227d565b90915550505b8015611aed57611aed873083611bb4565b611af78186612351565b94505b611b05878787611bb4565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611bda5760405162461bcd60e51b81526004016107f5906122c9565b6001600160a01b038216611c005760405162461bcd60e51b81526004016107f59061230e565b6001600160a01b03831660009081526020819052604090205481811015611c785760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611caf90849061227d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cfb91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d2857505050565b600754831115611d385760075492505b8247611d4382611e4e565b6000611d4f478361200e565b90506000611d6c866119c060155485611e2f90919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611dc4576040519150601f19603f3d011682016040523d82523d6000602084013e611dc9565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611e1e576040519150601f19603f3d011682016040523d82523d6000602084013e611e23565b606091505b50505050505050505050565b6000611e3b8284612290565b9392505050565b6000611e3b82846122a7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e8357611e83612364565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f25919061237a565b81600181518110611f3857611f38612364565b60200260200101906001600160a01b031690816001600160a01b031681525050611f83307f00000000000000000000000000000000000000000000000000000000000000008461134a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611fd8908590600090869030904290600401612397565b600060405180830381600087803b158015611ff257600080fd5b505af1158015612006573d6000803e3d6000fd5b505050505050565b6000611e3b8284612351565b600060208083528351808285015260005b818110156120475785810183015185820160400152820161202b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461134757600080fd5b6000806040838503121561209057600080fd5b823561209b81612068565b946020939093013593505050565b6000602082840312156120bb57600080fd5b8135611e3b81612068565b6000806000606084860312156120db57600080fd5b83356120e681612068565b925060208401356120f681612068565b929592945050506040919091013590565b8035801515811461211757600080fd5b919050565b6000806040838503121561212f57600080fd5b823561213a81612068565b915061214860208401612107565b90509250929050565b6000806040838503121561216457600080fd5b50508035926020909101359150565b60006020828403121561218557600080fd5b5035919050565b6000806000606084860312156121a157600080fd5b6121aa84612107565b95602085013595506040909401359392505050565b600080604083850312156121d257600080fd5b82356121dd81612068565b915060208301356121ed81612068565b809150509250929050565b600181811c9082168061220c57607f821691505b60208210810361222c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c5576107c5612267565b80820281158282048414176107c5576107c5612267565b6000826122c457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107c5576107c5612267565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561238c57600080fd5b8151611e3b81612068565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123e75784516001600160a01b0316835293830193918301916001016123c2565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122062051829370ccaada48bbaa35a5fb12a55762ecd0702e597143beac639e3815664736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101f25760003560e01c806377b5312c1161010d578063a457c2d7116100a0578063c40b793b1161006f578063c40b793b14610609578063cb9dfa551461067c578063dd62ed3e1461069c578063ee87ee07146106e2578063f2fde38b1461070257600080fd5b8063a457c2d714610594578063a9059cbb146105b4578063bab57cf4146105d4578063bc337182146105e957600080fd5b80638da5cb5b116100dc5780638da5cb5b146105215780638ebfc7961461053f57806395d89b411461055f5780639fe640941461057457600080fd5b806377b5312c1461042a5780637bb929591461045157806385af30c51461049d57806386a50d96146104e957600080fd5b8063511b2f4b116101855780635d098b38116101545780635d098b38146103aa57806370a08231146103ca578063715018a614610400578063751039fc1461041557600080fd5b8063511b2f4b1461031657806352d6585814610330578063533a2abb146103505780635d0044ca1461038a57600080fd5b806323b872dd116101c157806323b872dd1461029a578063313ce567146102ba57806339509351146102d657806348e21833146102f657600080fd5b806306fdde03146101fe578063095ea7b3146102295780631525ff7d1461025957806318160ddd1461027b57600080fd5b366101f957005b600080fd5b34801561020a57600080fd5b50610213610722565b604051610220919061201a565b60405180910390f35b34801561023557600080fd5b5061024961024436600461207d565b6107b4565b6040519015158152602001610220565b34801561026557600080fd5b506102796102743660046120a9565b6107cb565b005b34801561028757600080fd5b506002545b604051908152602001610220565b3480156102a657600080fd5b506102496102b53660046120c6565b61085b565b3480156102c657600080fd5b5060405160128152602001610220565b3480156102e257600080fd5b506102496102f136600461207d565b610905565b34801561030257600080fd5b5061027961031136600461211c565b610941565b34801561032257600080fd5b50600c546102499060ff1681565b34801561033c57600080fd5b5061027961034b366004612151565b6109cb565b34801561035c57600080fd5b50600854600954600a5460ff909216915b604080519315158452602084019290925290820152606001610220565b34801561039657600080fd5b506102796103a5366004612173565b610abd565b3480156103b657600080fd5b506102796103c53660046120a9565b610ba0565b3480156103d657600080fd5b5061028c6103e53660046120a9565b6001600160a01b031660009081526020819052604090205490565b34801561040c57600080fd5b50610279610c32565b34801561042157600080fd5b50610279610c68565b34801561043657600080fd5b50600554600654600754600160a81b90920460ff169161036d565b34801561045d57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c001610220565b3480156104a957600080fd5b506104d17f00000000000000000000000026dae0dafd4fef254e59330642a4a6b19846132881565b6040516001600160a01b039091168152602001610220565b3480156104f557600080fd5b50600c54600d54604080516101009093046001600160a01b039081168452909116602083015201610220565b34801561052d57600080fd5b506005546001600160a01b03166104d1565b34801561054b57600080fd5b5061027961055a36600461211c565b610cc9565b34801561056b57600080fd5b50610213610d4b565b34801561058057600080fd5b5061027961058f366004612151565b610d5a565b3480156105a057600080fd5b506102496105af36600461207d565b610e45565b3480156105c057600080fd5b506102496105cf36600461207d565b610ede565b3480156105e057600080fd5b50610279610eeb565b3480156105f557600080fd5b50610279610604366004612173565b610f62565b34801561061557600080fd5b5061065d6106243660046120a9565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b6040805193151584529115156020840152151590820152606001610220565b34801561068857600080fd5b5061027961069736600461218c565b611032565b3480156106a857600080fd5b5061028c6106b73660046121bf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106ee57600080fd5b506102796106fd36600461211c565b6111d0565b34801561070e57600080fd5b5061027961071d3660046120a9565b6112af565b606060038054610731906121f8565b80601f016020809104026020016040519081016040528092919081815260200182805461075d906121f8565b80156107aa5780601f1061077f576101008083540402835291602001916107aa565b820191906000526020600020905b81548152906001019060200180831161078d57829003601f168201915b5050505050905090565b60006107c133848461134a565b5060015b92915050565b6005546001600160a01b031633146107fe5760405162461bcd60e51b81526004016107f590612232565b60405180910390fd5b600d546040516001600160a01b03918216918316907f0db17895a9d092fb3ca24d626f2150dd80c185b0706b36f1040ee239f56cb87190600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600061086884848461146e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108ed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107f5565b6108fa853385840361134a565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107c191859061093c90869061227d565b61134a565b6005546001600160a01b0316331461096b5760405162461bcd60e51b81526004016107f590612232565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6005546001600160a01b031633146109f55760405162461bcd60e51b81526004016107f590612232565b600f8290556010819055610a09818361227d565b600e81905560641015610a6f5760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b60648201526084016107f5565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610ae75760405162461bcd60e51b81526004016107f590612232565b6005811015610b445760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107f5565b6103e8610b5060025490565b610b5a9083612290565b610b6491906122a7565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610bca5760405162461bcd60e51b81526004016107f590612232565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610c5c5760405162461bcd60e51b81526004016107f590612232565b610c666000611b0e565b565b6005546001600160a01b03163314610c925760405162461bcd60e51b81526004016107f590612232565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610cf35760405162461bcd60e51b81526004016107f590612232565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016109bf565b606060048054610731906121f8565b6005546001600160a01b03163314610d845760405162461bcd60e51b81526004016107f590612232565b60128290556013819055610d98818361227d565b601181905560641015610dff5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b60648201526084016107f5565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610ab1565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ec75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107f5565b610ed4338585840361134a565b5060019392505050565b60006107c133848461146e565b6005546001600160a01b03163314610f155760405162461bcd60e51b81526004016107f590612232565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b03163314610f8c5760405162461bcd60e51b81526004016107f590612232565b6002811015610fdd5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e322560448201526064016107f5565b6103e8610fe960025490565b610ff39083612290565b610ffd91906122a7565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610b95565b6005546001600160a01b0316331461105c5760405162461bcd60e51b81526004016107f590612232565b60018210156110ca5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b60648201526084016107f5565b8181101561112d5760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b60648201526084016107f5565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906111579190612290565b61116191906122a7565b6006556127108161117160025490565b61117b9190612290565b61118591906122a7565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146111fa5760405162461bcd60e51b81526004016107f590612232565b7f00000000000000000000000026dae0dafd4fef254e59330642a4a6b1984613286001600160a01b0316826001600160a01b0316036112a15760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016107f5565b6112ab8282611b60565b5050565b6005546001600160a01b031633146112d95760405162461bcd60e51b81526004016107f590612232565b6001600160a01b03811661133e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f5565b61134781611b0e565b50565b6001600160a01b0383166113ac5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107f5565b6001600160a01b03821661140d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114945760405162461bcd60e51b81526004016107f5906122c9565b6001600160a01b0382166114ba5760405162461bcd60e51b81526004016107f59061230e565b806000036114d3576114ce83836000611bb4565b505050565b60085460ff1615611838576005546001600160a01b0384811691161480159061150a57506005546001600160a01b03838116911614155b801561151e57506001600160a01b03821615155b801561153557506001600160a01b03821661dead14155b801561154b5750600554600160a01b900460ff16155b1561183857600c5460ff166115f0576001600160a01b03831660009081526016602052604090205460ff168061159957506001600160a01b03821660009081526016602052604090205460ff165b6115f05760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b60648201526084016107f5565b6001600160a01b03831660009081526018602052604090205460ff16801561163157506001600160a01b03821660009081526017602052604090205460ff16155b1561170657600a548111156116975760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b60648201526084016107f5565b6009546001600160a01b0383166000908152602081905260409020546116bd908361227d565b11156117015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f5565b611838565b6001600160a01b03821660009081526018602052604090205460ff16801561174757506001600160a01b03831660009081526017602052604090205460ff16155b156117ae57600a548111156117015760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b60648201526084016107f5565b6001600160a01b03821660009081526017602052604090205460ff16611838576009546001600160a01b0383166000908152602081905260409020546117f4908361227d565b11156118385760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107f5565b30600090815260208190526040902054600654811080159081906118655750600554600160a81b900460ff165b801561187b5750600554600160a01b900460ff16155b80156118a057506001600160a01b03851660009081526018602052604090205460ff16155b80156118c557506001600160a01b03851660009081526016602052604090205460ff16155b80156118ea57506001600160a01b03841660009081526016602052604090205460ff16155b15611918576005805460ff60a01b1916600160a01b17905561190a611d09565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168061196657506001600160a01b03851660009081526016602052604090205460ff165b1561196f575060005b60008115611afa576001600160a01b03861660009081526018602052604090205460ff1680156119a157506000601154115b15611a2f576119c660646119c060115488611e2f90919063ffffffff16565b90611e42565b9050601154601354826119d99190612290565b6119e391906122a7565b601560008282546119f4919061227d565b9091555050601154601254611a099083612290565b611a1391906122a7565b60146000828254611a24919061227d565b90915550611adc9050565b6001600160a01b03871660009081526018602052604090205460ff168015611a5957506000600e54115b15611adc57611a7860646119c0600e5488611e2f90919063ffffffff16565b9050600e5460105482611a8b9190612290565b611a9591906122a7565b60156000828254611aa6919061227d565b9091555050600e54600f54611abb9083612290565b611ac591906122a7565b60146000828254611ad6919061227d565b90915550505b8015611aed57611aed873083611bb4565b611af78186612351565b94505b611b05878787611bb4565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611bda5760405162461bcd60e51b81526004016107f5906122c9565b6001600160a01b038216611c005760405162461bcd60e51b81526004016107f59061230e565b6001600160a01b03831660009081526020819052604090205481811015611c785760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107f5565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611caf90849061227d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cfb91815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d2857505050565b600754831115611d385760075492505b8247611d4382611e4e565b6000611d4f478361200e565b90506000611d6c866119c060155485611e2f90919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611dc4576040519150601f19603f3d011682016040523d82523d6000602084013e611dc9565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611e1e576040519150601f19603f3d011682016040523d82523d6000602084013e611e23565b606091505b50505050505050505050565b6000611e3b8284612290565b9392505050565b6000611e3b82846122a7565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e8357611e83612364565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f25919061237a565b81600181518110611f3857611f38612364565b60200260200101906001600160a01b031690816001600160a01b031681525050611f83307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461134a565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611fd8908590600090869030904290600401612397565b600060405180830381600087803b158015611ff257600080fd5b505af1158015612006573d6000803e3d6000fd5b505050505050565b6000611e3b8284612351565b600060208083528351808285015260005b818110156120475785810183015185820160400152820161202b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461134757600080fd5b6000806040838503121561209057600080fd5b823561209b81612068565b946020939093013593505050565b6000602082840312156120bb57600080fd5b8135611e3b81612068565b6000806000606084860312156120db57600080fd5b83356120e681612068565b925060208401356120f681612068565b929592945050506040919091013590565b8035801515811461211757600080fd5b919050565b6000806040838503121561212f57600080fd5b823561213a81612068565b915061214860208401612107565b90509250929050565b6000806040838503121561216457600080fd5b50508035926020909101359150565b60006020828403121561218557600080fd5b5035919050565b6000806000606084860312156121a157600080fd5b6121aa84612107565b95602085013595506040909401359392505050565b600080604083850312156121d257600080fd5b82356121dd81612068565b915060208301356121ed81612068565b809150509250929050565b600181811c9082168061220c57607f821691505b60208210810361222c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156107c5576107c5612267565b80820281158282048414176107c5576107c5612267565b6000826122c457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107c5576107c5612267565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561238c57600080fd5b8151611e3b81612068565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156123e75784516001600160a01b0316835293830193918301916001016123c2565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122062051829370ccaada48bbaa35a5fb12a55762ecd0702e597143beac639e3815664736f6c63430008130033

Deployed Bytecode Sourcemap

25416:19600:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11014:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13247:194;;;;;;;;;;-1:-1:-1;13247:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13247:194:0;1023:187:1;39810:155:0;;;;;;;;;;-1:-1:-1;39810:155:0;;;;;:::i;:::-;;:::i;:::-;;12134:108;;;;;;;;;;-1:-1:-1;12222:12:0;;12134:108;;;1613:25:1;;;1601:2;1586:18;12134:108:0;1467:177:1;13919:529:0;;;;;;;;;;-1:-1:-1;13919:529:0;;;;;:::i;:::-;;:::i;29989:93::-;;;;;;;;;;-1:-1:-1;29989:93:0;;30072:2;2252:36:1;;2240:2;2225:18;29989:93:0;2110:184:1;14853:290:0;;;;;;;;;;-1:-1:-1;14853:290:0;;;;;:::i;:::-;;:::i;36499:190::-;;;;;;;;;;-1:-1:-1;36499:190:0;;;;;:::i;:::-;;:::i;25916:28::-;;;;;;;;;;-1:-1:-1;25916:28:0;;;;;;;;36976:391;;;;;;;;;;-1:-1:-1;36976:391:0;;;;;:::i;:::-;;:::i;31096:297::-;;;;;;;;;;-1:-1:-1;31313:14:0;;31351:9;;31380:5;;31313:14;;;;;31096:297;;;;3258:14:1;;3251:22;3233:41;;3305:2;3290:18;;3283:34;;;;3333:18;;;3326:34;3221:2;3206:18;31096:297:0;3037:329:1;35994:233:0;;;;;;;;;;-1:-1:-1;35994:233:0;;;;;:::i;:::-;;:::i;39460:178::-;;;;;;;;;;-1:-1:-1;39460:178:0;;;;;:::i;:::-;;:::i;12305:143::-;;;;;;;;;;-1:-1:-1;12305:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12422:18:0;12395:7;12422:18;;;;;;;;;;;;12305:143;22353:103;;;;;;;;;;;;;:::i;34211:130::-;;;;;;;;;;;;;:::i;30428:316::-;;;;;;;;;;-1:-1:-1;30650:12:0;;30688:11;;30725;;-1:-1:-1;;;30650:12:0;;;;;;30428:316;;32318:561;;;;;;;;;;-1:-1:-1;32657:11:0;;32698:15;;32738:10;;32775:12;;32818:16;;32860:11;;32318:561;;;3843:25:1;;;3899:2;3884:18;;3877:34;;;;3927:18;;;3920:34;;;;3985:2;3970:18;;3963:34;4028:3;4013:19;;4006:35;4072:3;4057:19;;4050:35;3830:3;3815:19;32318:561:0;3556:535:1;25540:33:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4260:32:1;;;4242:51;;4230:2;4215:18;25540:33:0;4096:203:1;31621:219:0;;;;;;;;;;-1:-1:-1;31805:15:0;;31822:9;;31621:219;;;31805:15;;;;-1:-1:-1;;;;;31805:15:0;;;4516:34:1;;31822:9:0;;;4581:2:1;4566:18;;4559:43;4451:18;31621:219:0;4304:304:1;21702:87:0;;;;;;;;;;-1:-1:-1;21775:6:0;;-1:-1:-1;;;;;21775:6:0;21702:87;;38345:171;;;;;;;;;;-1:-1:-1;38345:171:0;;;;;:::i;:::-;;:::i;11233:104::-;;;;;;;;;;;;;:::i;37656:440::-;;;;;;;;;;-1:-1:-1;37656:440:0;;;;;:::i;:::-;;:::i;15642:475::-;;;;;;;;;;-1:-1:-1;15642:475:0;;;;;:::i;:::-;;:::i;12661:200::-;;;;;;;;;;-1:-1:-1;12661:200:0;;;;;:::i;:::-;;:::i;33895:157::-;;;;;;;;;;;;;:::i;35574:213::-;;;;;;;;;;-1:-1:-1;35574:213:0;;;;;:::i;:::-;;:::i;33329:423::-;;;;;;;;;;-1:-1:-1;33329:423:0;;;;;:::i;:::-;-1:-1:-1;;;;;33596:20:0;33454:17;33596:20;;;:11;:20;;;;;;;;;33646:15;:24;;;;;;33710:25;:34;;;;;;33596:20;;;;;33646:24;;;;33710:34;;33329:423;;;;;4822:14:1;;4815:22;4797:41;;4881:14;;4874:22;4869:2;4854:18;;4847:50;4940:14;4933:22;4913:18;;;4906:50;4785:2;4770:18;33329:423:0;4613:349:1;34806:532:0;;;;;;;;;;-1:-1:-1;34806:532:0;;;;;:::i;:::-;;:::i;12924:176::-;;;;;;;;;;-1:-1:-1;12924:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13065:18:0;;;13038:7;13065:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12924:176;38827:265;;;;;;;;;;-1:-1:-1;38827:265:0;;;;;:::i;:::-;;:::i;22611:238::-;;;;;;;;;;-1:-1:-1;22611:238:0;;;;;:::i;:::-;;:::i;11014:100::-;11068:13;11101:5;11094:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11014:100;:::o;13247:194::-;13355:4;13372:39;10100:10;13395:7;13404:6;13372:8;:39::i;:::-;-1:-1:-1;13429:4:0;13247:194;;;;;:::o;39810:155::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;;;;;;;;;39915:9:::1;::::0;39887:38:::1;::::0;-1:-1:-1;;;;;39915:9:0;;::::1;::::0;39887:38;::::1;::::0;::::1;::::0;39915:9:::1;::::0;39887:38:::1;39936:9;:21:::0;;-1:-1:-1;;;;;;39936:21:0::1;-1:-1:-1::0;;;;;39936:21:0;;;::::1;::::0;;;::::1;::::0;;39810:155::o;13919:529::-;14059:4;14076:36;14086:6;14094:9;14105:6;14076:9;:36::i;:::-;-1:-1:-1;;;;;14152:19:0;;14125:24;14152:19;;;:11;:19;;;;;;;;10100:10;14152:33;;;;;;;;14218:26;;;;14196:116;;;;-1:-1:-1;;;14196:116:0;;6629:2:1;14196:116:0;;;6611:21:1;6668:2;6648:18;;;6641:30;6707:34;6687:18;;;6680:62;-1:-1:-1;;;6758:18:1;;;6751:38;6806:19;;14196:116:0;6427:404:1;14196:116:0;14348:57;14357:6;10100:10;14398:6;14379:16;:25;14348:8;:57::i;:::-;-1:-1:-1;14436:4:0;;13919:529;-1:-1:-1;;;;13919:529:0:o;14853:290::-;10100:10;14966:4;15055:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15055:34:0;;;;;;;;;;14966:4;;14983:130;;15033:7;;15055:47;;15092:10;;15055:47;:::i;:::-;14983:8;:130::i;36499:190::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36604:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;36604:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36650:31;;1163:41:1;;;36650:31:0::1;::::0;1136:18:1;36650:31:0::1;;;;;;;;36499:190:::0;;:::o;36976:391::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;37091:15:::1;:31:::0;;;37133:10:::1;:20:::0;;;37178:28:::1;37146:7:::0;37109:13;37178:28:::1;:::i;:::-;37164:11;:42:::0;;;37240:3:::1;-1:-1:-1::0;37225:18:0::1;37217:71;;;::::0;-1:-1:-1;;;37217:71:0;;7300:2:1;37217:71:0::1;::::0;::::1;7282:21:1::0;7339:2;7319:18;;;7312:30;7378:34;7358:18;;;7351:62;-1:-1:-1;;;7429:18:1;;;7422:38;7477:19;;37217:71:0::1;7098:404:1::0;37217:71:0::1;37318:11;::::0;37331:15:::1;::::0;37348:10:::1;::::0;37304:55:::1;::::0;;7709:25:1;;;7765:2;7750:18;;7743:34;;;;7793:18;;;7786:34;37304:55:0::1;::::0;7697:2:1;7682:18;37304:55:0::1;;;;;;;;36976:391:::0;;:::o;35994:233::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;36080:1:::1;36070:6;:11;;36062:60;;;::::0;-1:-1:-1;;;36062:60:0;;8033:2:1;36062:60:0::1;::::0;::::1;8015:21:1::0;8072:2;8052:18;;;8045:30;8111:34;8091:18;;;8084:62;-1:-1:-1;;;8162:18:1;;;8155:34;8206:19;;36062:60:0::1;7831:400:1::0;36062:60:0::1;36172:4;36155:13;12222:12:::0;;;12134:108;36155:13:::1;36146:22;::::0;:6;:22:::1;:::i;:::-;36145:31;;;;:::i;:::-;36133:9;:43:::0;;;36192:27:::1;::::0;1613:25:1;;;36192:27:0::1;::::0;1601:2:1;1586:18;36192:27:0::1;;;;;;;;35994:233:::0;:::o;39460:178::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;39576:15:::1;::::0;39542:50:::1;::::0;-1:-1:-1;;;;;39576:15:0::1;::::0;;::::1;::::0;::::1;::::0;39542:50;::::1;::::0;::::1;::::0;;;::::1;39603:15;:27:::0;;-1:-1:-1;;;;;39603:27:0;;::::1;;;-1:-1:-1::0;;;;;;39603:27:0;;::::1;::::0;;;::::1;::::0;;39460:178::o;22353:103::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;22418:30:::1;22445:1;22418:18;:30::i;:::-;22353:103::o:0;34211:130::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;34265:14:::1;:22:::0;;-1:-1:-1;;34265:22:0::1;::::0;;34303:30:::1;::::0;34317:15:::1;::::0;34303:30:::1;::::0;34282:5:::1;::::0;34303:30:::1;34211:130::o:0;38345:171::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38427:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;38427:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38474:34;;1163:41:1;;;38474:34:0::1;::::0;1136:18:1;38474:34:0::1;1023:187:1::0;11233:104:0;11289:13;11322:7;11315:14;;;;;:::i;37656:440::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;37772:16:::1;:32:::0;;;37815:11:::1;:21:::0;;;37862:30:::1;37829:7:::0;37791:13;37862:30:::1;:::i;:::-;37847:12;:45:::0;;;37941:3:::1;-1:-1:-1::0;37925:19:0::1;37903:110;;;::::0;-1:-1:-1;;;37903:110:0;;8833:2:1;37903:110:0::1;::::0;::::1;8815:21:1::0;8872:2;8852:18;;;8845:30;8911:34;8891:18;;;8884:62;-1:-1:-1;;;8962:18:1;;;8955:39;9011:19;;37903:110:0::1;8631:405:1::0;37903:110:0::1;38044:12;::::0;38058:16:::1;::::0;38076:11:::1;::::0;38029:59:::1;::::0;;7709:25:1;;;7765:2;7750:18;;7743:34;;;;7793:18;;;7786:34;38029:59:0::1;::::0;7697:2:1;7682:18;38029:59:0::1;7507:319:1::0;15642:475:0;10100:10;15760:4;15804:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15804:34:0;;;;;;;;;;15871:35;;;;15849:122;;;;-1:-1:-1;;;15849:122:0;;9243:2:1;15849:122:0;;;9225:21:1;9282:2;9262:18;;;9255:30;9321:34;9301:18;;;9294:62;-1:-1:-1;;;9372:18:1;;;9365:35;9417:19;;15849:122:0;9041:401:1;15849:122:0;16007:67;10100:10;16030:7;16058:15;16039:16;:34;16007:8;:67::i;:::-;-1:-1:-1;16105:4:0;;15642:475;-1:-1:-1;;;15642:475:0:o;12661:200::-;12772:4;12789:42;10100:10;12813:9;12824:6;12789:9;:42::i;33895:157::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;33952:8:::1;:15:::0;;-1:-1:-1;;33952:15:0::1;33963:4;33952:15;::::0;;33978:12:::1;:19:::0;;-1:-1:-1;;;;33978:19:0::1;-1:-1:-1::0;;;33978:19:0::1;::::0;;34013:31:::1;::::0;34028:15:::1;::::0;34013:31:::1;::::0;33952:8:::1;::::0;34013:31:::1;33895:157::o:0;35574:213::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;35656:1:::1;35646:6;:11;;35638:56;;;::::0;-1:-1:-1;;;35638:56:0;;9649:2:1;35638:56:0::1;::::0;::::1;9631:21:1::0;;;9668:18;;;9661:30;9727:34;9707:18;;;9700:62;9779:18;;35638:56:0::1;9447:356:1::0;35638:56:0::1;35740:4;35723:13;12222:12:::0;;;12134:108;35723:13:::1;35714:22;::::0;:6;:22:::1;:::i;:::-;35713:31;;;;:::i;:::-;35705:5;:39:::0;;;35760:19:::1;::::0;1613:25:1;;;35760:19:0::1;::::0;1601:2:1;1586:18;35760:19:0::1;1467:177:1::0;34806:532:0;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;34964:1:::1;34956:4;:9;;34934:111;;;::::0;-1:-1:-1;;;34934:111:0;;10010:2:1;34934:111:0::1;::::0;::::1;9992:21:1::0;10049:2;10029:18;;;10022:30;10088:34;10068:18;;;10061:62;-1:-1:-1;;;10139:18:1;;;10132:50;10199:19;;34934:111:0::1;9808:416:1::0;34934:111:0::1;35072:4;35064;:12;;35056:67;;;::::0;-1:-1:-1;;;35056:67:0;;10431:2:1;35056:67:0::1;::::0;::::1;10413:21:1::0;10470:2;10450:18;;;10443:30;10509:34;10489:18;;;10482:62;-1:-1:-1;;;10560:18:1;;;10553:40;10610:19;;35056:67:0::1;10229:406:1::0;35056:67:0::1;35136:12;:23:::0;;-1:-1:-1;;;;35136:23:0::1;-1:-1:-1::0;;;35136:23:0;::::1;;;;::::0;;12222:12;;35209:5:::1;::::0;35201:4;;35185:20:::1;;;;:::i;:::-;35184:30;;;;:::i;:::-;35170:11;:44:::0;35264:5:::1;35256:4:::0;35240:13:::1;12222:12:::0;;;12134:108;35240:13:::1;:20;;;;:::i;:::-;35239:30;;;;:::i;:::-;35225:11;:44:::0;35285:45:::1;::::0;;3258:14:1;;3251:22;3233:41;;3305:2;3290:18;;3283:34;;;3333:18;;;3326:34;;;35285:45:0::1;::::0;3221:2:1;3206:18;35285:45:0::1;;;;;;;34806:532:::0;;;:::o;38827:265::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;38955:8:::1;-1:-1:-1::0;;;;;38947:16:0::1;:4;-1:-1:-1::0;;;;;38947:16:0::1;::::0;38925:123:::1;;;::::0;-1:-1:-1;;;38925:123:0;;10842:2:1;38925:123:0::1;::::0;::::1;10824:21:1::0;10881:2;10861:18;;;10854:30;10920:34;10900:18;;;10893:62;10991:27;10971:18;;;10964:55;11036:19;;38925:123:0::1;10640:421:1::0;38925:123:0::1;39061:23;39072:4;39078:5;39061:10;:23::i;:::-;38827:265:::0;;:::o;22611:238::-;21775:6;;-1:-1:-1;;;;;21775:6:0;10100:10;21922:23;21914:68;;;;-1:-1:-1;;;21914:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22714:22:0;::::1;22692:110;;;::::0;-1:-1:-1;;;22692:110:0;;11268:2:1;22692:110:0::1;::::0;::::1;11250:21:1::0;11307:2;11287:18;;;11280:30;11346:34;11326:18;;;11319:62;-1:-1:-1;;;11397:18:1;;;11390:36;11443:19;;22692:110:0::1;11066:402:1::0;22692:110:0::1;22813:28;22832:8;22813:18;:28::i;:::-;22611:238:::0;:::o;19425:380::-;-1:-1:-1;;;;;19561:19:0;;19553:68;;;;-1:-1:-1;;;19553:68:0;;11675:2:1;19553:68:0;;;11657:21:1;11714:2;11694:18;;;11687:30;11753:34;11733:18;;;11726:62;-1:-1:-1;;;11804:18:1;;;11797:34;11848:19;;19553:68:0;11473:400:1;19553:68:0;-1:-1:-1;;;;;19640:21:0;;19632:68;;;;-1:-1:-1;;;19632:68:0;;12080:2:1;19632:68:0;;;12062:21:1;12119:2;12099:18;;;12092:30;12158:34;12138:18;;;12131:62;-1:-1:-1;;;12209:18:1;;;12202:32;12251:19;;19632:68:0;11878:398:1;19632:68:0;-1:-1:-1;;;;;19713:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19765:32;;1613:25:1;;;19765:32:0;;1586:18:1;19765:32:0;;;;;;;19425:380;;;:::o;39973:3521::-;-1:-1:-1;;;;;40105:18:0;;40097:68;;;;-1:-1:-1;;;40097:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40184:16:0;;40176:64;;;;-1:-1:-1;;;40176:64:0;;;;;;;:::i;:::-;40257:6;40267:1;40257:11;40253:93;;40285:28;40301:4;40307:2;40311:1;40285:15;:28::i;:::-;39973:3521;;;:::o;40253:93::-;40362:14;;;;40358:1495;;;21775:6;;-1:-1:-1;;;;;40415:15:0;;;21775:6;;40415:15;;;;:49;;-1:-1:-1;21775:6:0;;-1:-1:-1;;;;;40451:13:0;;;21775:6;;40451:13;;40415:49;:86;;;;-1:-1:-1;;;;;;40485:16:0;;;;40415:86;:128;;;;-1:-1:-1;;;;;;40522:21:0;;40536:6;40522:21;;40415:128;:158;;;;-1:-1:-1;40565:8:0;;-1:-1:-1;;;40565:8:0;;;;40564:9;40415:158;40393:1449;;;40613:8;;;;40608:214;;-1:-1:-1;;;;;40680:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;40701:15:0;;;;;;:11;:15;;;;;;;;40680:36;40646:156;;;;-1:-1:-1;;;40646:156:0;;13293:2:1;40646:156:0;;;13275:21:1;13332:2;13312:18;;;13305:30;13371:34;13351:18;;;13344:62;-1:-1:-1;;;13422:18:1;;;13415:32;13464:19;;40646:156:0;13091:398:1;40646:156:0;-1:-1:-1;;;;;40874:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;40910:19:0;;;;;;:15;:19;;;;;;;;40909:20;40874:55;40870:957;;;40998:5;;40988:6;:15;;40954:139;;;;-1:-1:-1;;;40954:139:0;;13696:2:1;40954:139:0;;;13678:21:1;13735:2;13715:18;;;13708:30;13774:34;13754:18;;;13747:62;-1:-1:-1;;;13825:18:1;;;13818:36;13871:19;;40954:139:0;13494:402:1;40954:139:0;41176:9;;-1:-1:-1;;;;;12422:18:0;;12395:7;12422:18;;;;;;;;;;;41150:22;;:6;:22;:::i;:::-;:35;;41116:140;;;;-1:-1:-1;;;41116:140:0;;14103:2:1;41116:140:0;;;14085:21:1;14142:2;14122:18;;;14115:30;-1:-1:-1;;;14161:18:1;;;14154:49;14220:18;;41116:140:0;13901:343:1;41116:140:0;40870:957;;;-1:-1:-1;;;;;41354:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;41388:21:0;;;;;;:15;:21;;;;;;;;41387:22;41354:55;41328:499;;;41496:5;;41486:6;:15;;41452:140;;;;-1:-1:-1;;;41452:140:0;;14451:2:1;41452:140:0;;;14433:21:1;14490:2;14470:18;;;14463:30;14529:34;14509:18;;;14502:62;-1:-1:-1;;;14580:18:1;;;14573:37;14627:19;;41452:140:0;14249:403:1;41328:499:0;-1:-1:-1;;;;;41623:19:0;;;;;;:15;:19;;;;;;;;41618:209;;41727:9;;-1:-1:-1;;;;;12422:18:0;;12395:7;12422:18;;;;;;;;;;;41701:22;;:6;:22;:::i;:::-;:35;;41667:140;;;;-1:-1:-1;;;41667:140:0;;14103:2:1;41667:140:0;;;14085:21:1;14142:2;14122:18;;;14115:30;-1:-1:-1;;;14161:18:1;;;14154:49;14220:18;;41667:140:0;13901:343:1;41667:140:0;41914:4;41865:28;12422:18;;;;;;;;;;;41972:11;;41948:35;;;;;;;42014:36;;-1:-1:-1;42038:12:0;;-1:-1:-1;;;42038:12:0;;;;42014:36;:62;;;;-1:-1:-1;42068:8:0;;-1:-1:-1;;;42068:8:0;;;;42067:9;42014:62;:111;;;;-1:-1:-1;;;;;;42094:31:0;;;;;;:25;:31;;;;;;;;42093:32;42014:111;:146;;;;-1:-1:-1;;;;;;42143:17:0;;;;;;:11;:17;;;;;;;;42142:18;42014:146;:179;;;;-1:-1:-1;;;;;;42178:15:0;;;;;;:11;:15;;;;;;;;42177:16;42014:179;41996:311;;;42220:8;:15;;-1:-1:-1;;;;42220:15:0;-1:-1:-1;;;42220:15:0;;;42252:10;:8;:10::i;:::-;42279:8;:16;;-1:-1:-1;;;;42279:16:0;;;41996:311;42335:8;;-1:-1:-1;;;;;42445:17:0;;42319:12;42445:17;;;:11;:17;;;;;;42335:8;-1:-1:-1;;;42335:8:0;;;;;42334:9;;42445:17;;:36;;-1:-1:-1;;;;;;42466:15:0;;;;;;:11;:15;;;;;;;;42445:36;42441:84;;;-1:-1:-1;42508:5:0;42441:84;42537:12;42642:7;42638:803;;;-1:-1:-1;;;;;42694:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;42742:1;42727:12;;:16;42694:49;42690:602;;;42771:33;42800:3;42771:24;42782:12;;42771:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;42764:40;;42863:12;;42848:11;;42841:4;:18;;;;:::i;:::-;42840:35;;;;:::i;:::-;42823:13;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;;42944:12:0;;42924:16;;42917:23;;:4;:23;:::i;:::-;42916:40;;;;:::i;:::-;42894:18;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;42690:602:0;;-1:-1:-1;42690:602:0;;-1:-1:-1;;;;;43018:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;43067:1;43053:11;;:15;43018:50;43014:278;;;43096:32;43124:3;43096:23;43107:11;;43096:6;:10;;:23;;;;:::i;:32::-;43089:39;;43186:11;;43172:10;;43165:4;:17;;;;:::i;:::-;43164:33;;;;:::i;:::-;43147:13;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;43265:11:0;;43246:15;;43239:22;;:4;:22;:::i;:::-;43238:38;;;;:::i;:::-;43216:18;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;;43014:278:0;43312:8;;43308:91;;43341:42;43357:4;43371;43378;43341:15;:42::i;:::-;43415:14;43425:4;43415:14;;:::i;:::-;;;42638:803;43453:33;43469:4;43475:2;43479:6;43453:15;:33::i;:::-;40086:3408;;;;39973:3521;;;:::o;23009:191::-;23102:6;;;-1:-1:-1;;;;;23119:17:0;;;-1:-1:-1;;;;;;23119:17:0;;;;;;;23152:40;;23102:6;;;23119:17;23102:6;;23152:40;;23083:16;;23152:40;23072:128;23009:191;:::o;39100:170::-;-1:-1:-1;;;;;39165:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39165:39:0;;;;;;;;;;39222:40;;39165:39;;:31;39222:40;;;39100:170;;:::o;16607:770::-;-1:-1:-1;;;;;16747:20:0;;16739:70;;;;-1:-1:-1;;;16739:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16828:23:0;;16820:71;;;;-1:-1:-1;;;16820:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16988:17:0;;16964:21;16988:17;;;;;;;;;;;17038:23;;;;17016:111;;;;-1:-1:-1;;;17016:111:0;;14992:2:1;17016:111:0;;;14974:21:1;15031:2;15011:18;;;15004:30;15070:34;15050:18;;;15043:62;-1:-1:-1;;;15121:18:1;;;15114:36;15167:19;;17016:111:0;14790:402:1;17016:111:0;-1:-1:-1;;;;;17163:17:0;;;:9;:17;;;;;;;;;;;17183:22;;;17163:42;;17227:20;;;;;;;;:30;;17199:6;;17163:9;17227:30;;17199:6;;17227:30;:::i;:::-;;;;;;;;17292:9;-1:-1:-1;;;;;17275:35:0;17284:6;-1:-1:-1;;;;;17275:35:0;;17303:6;17275:35;;;;1613:25:1;;1601:2;1586:18;;1467:177;17275:35:0;;;;;;;;16728:649;16607:770;;;:::o;44083:930::-;44166:4;44122:23;12422:18;;;;;;;;;;;;;;44266:20;;;44262:59;;44303:7;;;44083:930::o;44262:59::-;44355:11;;44337:15;:29;44333:91;;;44401:11;;44383:29;;44333:91;44465:15;44521:21;44555:36;44465:15;44555:16;:36::i;:::-;44604:18;44625:44;:21;44651:17;44625:25;:44::i;:::-;44604:65;;44682:18;44703:52;44737:17;44703:29;44718:13;;44703:10;:14;;:29;;;;:::i;:52::-;44789:1;44768:18;:22;;;44801:13;:17;;;44853:9;;44845:46;;44682:73;;-1:-1:-1;;;;;;44853:9:0;;44682:73;;44845:46;44789:1;44845:46;44682:73;44853:9;44845:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44926:15:0;;44918:87;;44831:60;;-1:-1:-1;44926:15:0;;;-1:-1:-1;;;;;44926:15:0;;44955:21;;44918:87;;;;44955:21;44926:15;44918:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;44083:930:0:o;3379:98::-;3437:7;3464:5;3468:1;3464;:5;:::i;:::-;3457:12;3379:98;-1:-1:-1;;;3379:98:0:o;3778:::-;3836:7;3863:5;3867:1;3863;:5;:::i;43502:571::-;43652:16;;;43666:1;43652:16;;;;;;;;43628:21;;43652:16;;;;;;;;;;-1:-1:-1;43652:16:0;43628:40;;43697:4;43679;43684:1;43679:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43679:23:0;;;-1:-1:-1;;;;;43679:23:0;;;;;43723:9;-1:-1:-1;;;;;43723:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43713:4;43718:1;43713:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;43713:26:0;;;-1:-1:-1;;;;;43713:26:0;;;;;43752:56;43769:4;43784:9;43796:11;43752:8;:56::i;:::-;43847:218;;-1:-1:-1;;;43847:218:0;;-1:-1:-1;;;;;43847:9:0;:60;;;;:218;;43922:11;;43948:1;;43992:4;;44019;;44039:15;;43847:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43557:516;43502:571;:::o;3022:98::-;3080:7;3107:5;3111:1;3107;: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:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2299:160::-;2364:20;;2420:13;;2413:21;2403:32;;2393:60;;2449:1;2446;2439:12;2393:60;2299:160;;;:::o;2464:315::-;2529:6;2537;2590:2;2578:9;2569:7;2565:23;2561:32;2558:52;;;2606:1;2603;2596:12;2558:52;2645:9;2632:23;2664:31;2689:5;2664:31;:::i;:::-;2714:5;-1:-1:-1;2738:35:1;2769:2;2754:18;;2738:35;:::i;:::-;2728:45;;2464:315;;;;;:::o;2784:248::-;2852:6;2860;2913:2;2901:9;2892:7;2888:23;2884:32;2881:52;;;2929:1;2926;2919:12;2881:52;-1:-1:-1;;2952:23:1;;;3022:2;3007:18;;;2994:32;;-1:-1:-1;2784:248:1:o;3371:180::-;3430:6;3483:2;3471:9;3462:7;3458:23;3454:32;3451:52;;;3499:1;3496;3489:12;3451:52;-1:-1:-1;3522:23:1;;3371:180;-1:-1:-1;3371:180:1:o;4967:316::-;5041:6;5049;5057;5110:2;5098:9;5089:7;5085:23;5081:32;5078:52;;;5126:1;5123;5116:12;5078:52;5149:26;5165:9;5149:26;:::i;:::-;5139:36;5222:2;5207:18;;5194:32;;-1:-1:-1;5273:2:1;5258:18;;;5245:32;;4967:316;-1:-1:-1;;;4967:316:1:o;5288:388::-;5356:6;5364;5417:2;5405:9;5396:7;5392:23;5388:32;5385:52;;;5433:1;5430;5423:12;5385:52;5472:9;5459:23;5491:31;5516:5;5491:31;:::i;:::-;5541:5;-1:-1:-1;5598:2:1;5583:18;;5570:32;5611:33;5570:32;5611:33;:::i;:::-;5663:7;5653:17;;;5288:388;;;;;:::o;5681:380::-;5760:1;5756:12;;;;5803;;;5824:61;;5878:4;5870:6;5866:17;5856:27;;5824:61;5931:2;5923:6;5920:14;5900:18;5897:38;5894:161;;5977:10;5972:3;5968:20;5965:1;5958:31;6012:4;6009:1;6002:15;6040:4;6037:1;6030:15;5894:161;;5681:380;;;:::o;6066:356::-;6268:2;6250:21;;;6287:18;;;6280:30;6346:34;6341:2;6326:18;;6319:62;6413:2;6398:18;;6066:356::o;6836:127::-;6897:10;6892:3;6888:20;6885:1;6878:31;6928:4;6925:1;6918:15;6952:4;6949:1;6942:15;6968:125;7033:9;;;7054:10;;;7051:36;;;7067:18;;:::i;8236:168::-;8309:9;;;8340;;8357:15;;;8351:22;;8337:37;8327:71;;8378:18;;:::i;8409:217::-;8449:1;8475;8465:132;;8519:10;8514:3;8510:20;8507:1;8500:31;8554:4;8551:1;8544:15;8582:4;8579:1;8572:15;8465:132;-1:-1:-1;8611:9:1;;8409:217::o;12281:401::-;12483:2;12465:21;;;12522:2;12502:18;;;12495:30;12561:34;12556:2;12541:18;;12534:62;-1:-1:-1;;;12627:2:1;12612:18;;12605:35;12672:3;12657:19;;12281:401::o;12687:399::-;12889:2;12871:21;;;12928:2;12908:18;;;12901:30;12967:34;12962:2;12947:18;;12940:62;-1:-1:-1;;;13033:2:1;13018:18;;13011:33;13076:3;13061:19;;12687:399::o;14657:128::-;14724:9;;;14745:11;;;14742:37;;;14759:18;;:::i;15539:127::-;15600:10;15595:3;15591:20;15588:1;15581:31;15631:4;15628:1;15621:15;15655:4;15652:1;15645:15;15671:251;15741:6;15794:2;15782:9;15773:7;15769:23;15765:32;15762:52;;;15810:1;15807;15800:12;15762:52;15842:9;15836:16;15861:31;15886:5;15861:31;:::i;15927:980::-;16189:4;16237:3;16226:9;16222:19;16268:6;16257:9;16250:25;16294:2;16332:6;16327:2;16316:9;16312:18;16305:34;16375:3;16370:2;16359:9;16355:18;16348:31;16399:6;16434;16428:13;16465:6;16457;16450:22;16503:3;16492:9;16488:19;16481:26;;16542:2;16534:6;16530:15;16516:29;;16563:1;16573:195;16587:6;16584:1;16581:13;16573:195;;;16652:13;;-1:-1:-1;;;;;16648:39:1;16636:52;;16743:15;;;;16708:12;;;;16684:1;16602:9;16573:195;;;-1:-1:-1;;;;;;;16824:32:1;;;;16819:2;16804:18;;16797:60;-1:-1:-1;;;16888:3:1;16873:19;16866:35;16785:3;15927:980;-1:-1:-1;;;15927:980:1:o

Swarm Source

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