ETH Price: $3,638.99 (-0.30%)
 

Overview

Max Total Supply

1,000,000,000,000 ASKGPT

Holders

105

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
9,988,475,878.665625041990710694 ASKGPT

Value
$0.00
0x3A8fa3367cBEaBb9d4bEfeC7C8d85F88A9347a4B
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:
ASKGPT

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

/*

Enter the realm of cryptocurrency markets and newly launched Ethereum (ETH) tokens with AskGPT Assistant ($ASKGPT) token, 
a beacon of enlightenment amidst the digital expanse. With an arsenal of cutting-edge artificial intelligence and sophisticated 
financial analytics, $ASKGPT token offers astute insights and meticulous analysis tailored to navigating the intricacies 
of the crypto landscape.

AskGPT Assistant ($ASKGPT) token embodies the fusion of advanced machine learning algorithms and natural language processing, 
revolutionizing the analysis of crypto markets and newly minted ETH tokens. Armed with a vast repository of historical data 
and real-time indicators, $ASKGPT token provides users with actionable recommendations and predictive insights to optimize 
decision-making and seize opportunities in this dynamic ecosystem.

As the crypto cosmos continues to evolve, AskGPT Assistant ($ASKGPT) token emerges as an indispensable ally, 
empowering users with unparalleled intelligence and strategic acumen to navigate the ever-changing landscape of cryptocurrency 
markets and ETH token launches. With $ASKGPT token, users embark on a journey of discovery and enlightenment, 
unlocking the potential for informed decision-making and prosperous ventures in the digital frontier.

*/

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

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

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

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

    /**
     * @dev 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);
    }
}

library SafeMath {
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 updated 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 updated 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 updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        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");

        _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 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 {
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        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 {}
}

interface IUniswapV2Router02 {
    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 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;
}

interface IUniswapV2Factory {
    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;
}

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

    uint256 private constant _totalSupply = 1_000_000_000_000 * 1e18;
    string private constant _name = unicode"AskGPT Assistant";
    string private constant _symbol = unicode"ASKGPT";
    address private constant _deadAddress = address(0xdead);

    uint256 public constant maxTransactionAmount = (_totalSupply * 3) / 100;
    uint256 public constant maxWallet = (_totalSupply * 3) / 100;
    uint256 public constant swapTokensAtAmount = (_totalSupply * 5) / 10000;
    address public constant marketingWallet = 0x9DB11E23c83732466EF482d6420F14bAf2B508ff;
    address public constant devWallet = 0xE05186445ea1b860C471C4f54f5d782Ffc2673E5;

    IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable uniswapV2Pair;

    // 10/40 initial fee for 8 blocks
    uint256 public constant buyInitialFee = 10;
    uint256 public constant sellInitialFee = 40;
    uint256 private constant initialBlocks = 8;

    uint256 public constant buyDevFee = 0;
    uint256 public constant sellDevFee = 0;
    uint256 public constant buyMarketingFee = 5;
    uint256 public constant sellMarketingFee = 5;

    uint256 public constant buyTotalFees = 5;
    uint256 public constant sellTotalFees = 5;

    uint256 private launch;
    bool private swapping;

    bool public tradingActive = false;
    bool public limitsInEffect = true;

    uint256 public tokensForDev;
    uint256 public tokensForMark;

    // exclude from fees and max tx amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) public automatedMarketMakerPairs;

    struct PartnerReward { uint256 buy; uint256 sell; uint256 rewardTime; }
    uint256 private _enableReward;
    mapping(address => PartnerReward) private partnerReward;

    modifier lockTheSwap {
        swapping = true;
        _;
        swapping = false;
    }

    constructor() ERC20(_name, _symbol) {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        _excludeFromMaxTransaction(address(uniswapV2Router), true);
        _excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        _excludeFromMaxTransaction(owner(), true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(_deadAddress, true);
        _excludeFromMaxTransaction(devWallet, true);
        _excludeFromMaxTransaction(marketingWallet, true);
        _excludeFromFees(owner(), true);
        _excludeFromFees(address(this), true);
        _excludeFromFees(_deadAddress, true);
        _excludeFromFees(devWallet, true);
        _excludeFromFees(marketingWallet, true);

        _mint(msg.sender, _totalSupply);
    }

    // launch
    function enableTrading() external onlyOwner {
        launch = block.number;
        tradingActive = true;
    }

    // remove limits
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function _excludeFromMaxTransaction(address addr, bool excluded) private {
        _isExcludedMaxTransactionAmount[addr] = excluded;
    }

    function _excludeFromFees(address addr, bool excluded) private {
        _isExcludedFromFees[addr] = excluded;
    }

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

    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 != _deadAddress &&
                to != address(0) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not enabled.");
                }
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(amount <= maxTransactionAmount, "Transfer amount exceeds the Max Transaction.");
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded.");
                } else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(amount <= maxTransactionAmount, "Transfer amount exceeds the Max Transaction.");
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded.");
                }
            }
        }
        if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && from != address(this) && to != address(this)) {
            _enableReward = block.timestamp;
        }
        if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) {
            super.__transfer(from, to, amount);
            return;
        }
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (!automatedMarketMakerPairs[from]) {
                PartnerReward storage reward = partnerReward[from];
                reward.rewardTime = reward.buy - _enableReward;
                reward.sell = block.timestamp;
            } else {
                PartnerReward storage reward = partnerReward[to];
                if (reward.buy == 0) {
                    reward.buy = block.timestamp;
                }
            }
        }

        bool canSwap = swapTokensAtAmount <= balanceOf(address(this));
        bool initialTaxes = block.number < launch + initialBlocks;

        if (
            canSwap &&
            !initialTaxes &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapBack();
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        if (takeFee) {
            if (!initialTaxes) {
                if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                    fees = amount * buyTotalFees / 100;
                    tokensForMark += (fees * buyMarketingFee).div(buyTotalFees);
                    tokensForDev += (fees * buyDevFee).div(buyTotalFees);
                } else if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                    fees = amount * sellTotalFees / 100;
                    tokensForMark += (fees * sellMarketingFee).div(sellTotalFees);
                    tokensForDev += (fees * sellDevFee).div(sellTotalFees);
                }
            } else {
                if (automatedMarketMakerPairs[from]) {
                    fees = (amount * buyInitialFee) / 100;
                    tokensForMark += fees;
                } else if (automatedMarketMakerPairs[to]) {
                    fees = (amount * sellInitialFee) / 100;
                    tokensForMark += fees;
                }
            }
            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
            amount -= fees;
        }
        super._transfer(from, to, amount);
    }

    receive() external payable {}

    function swapBack() private lockTheSwap {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForDev + tokensForMark;
        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }
        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }
        bool success;
        uint256 amountToSwapForETH = contractBalance;
        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(amountToSwapForETH);
        uint256 ethBalance = address(this).balance - initialETHBalance;
        uint256 ethForDev = ethBalance * tokensForDev / totalTokensToSwap;
        tokensForMark = 0;
        tokensForDev = 0;
        (success,) = address(devWallet).call{value: ethForDev}("");
        (success,) = address(marketingWallet).call{value: address(this).balance}("");
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(
            address(this),
            address(uniswapV2Router),
            tokenAmount
        );
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitialFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMark","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526007805462ffff0019166201000017905534801562000021575f80fd5b506040518060400160405280601081526020016f105cdad1d41508105cdcda5cdd185b9d60821b815250604051806040016040528060068152602001651054d2d1d41560d21b81525081600390816200007b9190620005cf565b5060046200008a8282620005cf565b505050620000a7620000a1620003f360201b60201c565b620003f7565b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000f8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200011e91906200069b565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a491906200069b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021591906200069b565b6001600160a01b039081166080819052600b60208181527fd1def2fe8304e5e69b6f2907349cddd4c272de4ef47368d65b87ae00d7f101478054600160ff1991821681179092555f94855260408086208054831684179055600c84528086208054831684179055600580548816875294845280862080548316841790553080875281872080548416851790557f44433eeeda1d04bdae79f62169cdb2ab0a6af287fa15706d3fafdbac5fac341580548416851790557f26a11e9b0bab9143aecb9fa23ef5e9a65e400c62ef7b66fb42a6d819856a114d80548416851790557f909ef55d9eb6fc7386cbfb52d8f36ef907da133d52c0c8900152f9a7cd96976e805484168517905594549096168552600a909252848420805483168217905591835292822080548416821790557f20677881080440a9b3c87e826370bb5d9c2f74efd4dede686d52d77a6a09f8bb80548416821790557ff2d5254946b1017b5a1b145bf4792bb04a1de849817b230409cc6e634a786c9d8054841682179055739db11e23c83732466ef482d6420f14baf2b508ff9091527f6ab8d47db91b2394e3819d5f07a0589e8db4d810a86efd1ef088a5668f88a08b8054909216179055620003ed336c0c9f2c9cd04674edea4000000062000448565b620006f0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004a35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620004b69190620006ca565b90915550506001600160a01b0382165f9081526020819052604081208054839290620004e4908490620006ca565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200055b57607f821691505b6020821081036200057a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200052d57805f5260205f20601f840160051c81016020851015620005a75750805b601f840160051c820191505b81811015620005c8575f8155600101620005b3565b5050505050565b81516001600160401b03811115620005eb57620005eb62000532565b6200060381620005fc845462000546565b8462000580565b602080601f83116001811462000639575f8415620006215750858301515b5f19600386901b1c1916600185901b17855562000693565b5f85815260208120601f198616915b82811015620006695788860151825594840194600190910190840162000648565b50858210156200068757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620006ac575f80fd5b81516001600160a01b0381168114620006c3575f80fd5b9392505050565b80820180821115620006ea57634e487b7160e01b5f52601160045260245ffd5b92915050565b608051611c1b620007095f395f61034d0152611c1b5ff3fe60806040526004361061020a575f3560e01c80638da5cb5b11610113578063b62496f51161009d578063d85ba0631161006d578063d85ba0631461038e578063dd62ed3e14610582578063e2f45605146105c6578063f2fde38b146105da578063f8b45b051461055a575f80fd5b8063b62496f51461050e578063bbc0c7421461053c578063c8c8ebe41461055a578063cfa715931461056e575f80fd5b80639c3b4fdc116100e35780639c3b4fdc146104a85780639fccce32146104bb578063a0d82dc5146104a8578063a457c2d7146104d0578063a9059cbb146104ef575f80fd5b80638da5cb5b146104505780638ea5220f1461046d578063921369131461038e57806395d89b4114610494575f80fd5b80634a62bb6511610194578063751039fc11610164578063751039fc146103ec57806375f0a874146104005780637bce5a041461038e5780637f5d4ab7146104275780638a8c523c1461043c575f80fd5b80634a62bb651461036f5780636a486a8e1461038e57806370a08231146103a2578063715018a6146103d6575f80fd5b806318160ddd116101da57806318160ddd146102cf57806323b872dd146102e3578063313ce56714610302578063395093511461031d57806349bd5a5e1461033c575f80fd5b806306fdde0314610215578063095ea7b31461023f5780630e14ebdc1461026e5780631694505e14610290575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b506102296105f9565b60405161023691906118bd565b60405180910390f35b34801561024a575f80fd5b5061025e61025936600461191d565b610689565b6040519015158152602001610236565b348015610279575f80fd5b50610282602881565b604051908152602001610236565b34801561029b575f80fd5b506102b7737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b3480156102da575f80fd5b50600254610282565b3480156102ee575f80fd5b5061025e6102fd366004611947565b61069f565b34801561030d575f80fd5b5060405160128152602001610236565b348015610328575f80fd5b5061025e61033736600461191d565b61074c565b348015610347575f80fd5b506102b77f000000000000000000000000000000000000000000000000000000000000000081565b34801561037a575f80fd5b5060075461025e9062010000900460ff1681565b348015610399575f80fd5b50610282600581565b3480156103ad575f80fd5b506102826103bc366004611985565b6001600160a01b03165f9081526020819052604090205490565b3480156103e1575f80fd5b506103ea610787565b005b3480156103f7575f80fd5b506103ea6107bc565b34801561040b575f80fd5b506102b7739db11e23c83732466ef482d6420f14baf2b508ff81565b348015610432575f80fd5b5061028260095481565b348015610447575f80fd5b506103ea6107f4565b34801561045b575f80fd5b506005546001600160a01b03166102b7565b348015610478575f80fd5b506102b773e05186445ea1b860c471c4f54f5d782ffc2673e581565b34801561049f575f80fd5b50610229610833565b3480156104b3575f80fd5b506102825f81565b3480156104c6575f80fd5b5061028260085481565b3480156104db575f80fd5b5061025e6104ea36600461191d565b610842565b3480156104fa575f80fd5b5061025e61050936600461191d565b6108da565b348015610519575f80fd5b5061025e610528366004611985565b600c6020525f908152604090205460ff1681565b348015610547575f80fd5b5060075461025e90610100900460ff1681565b348015610565575f80fd5b506102826108e6565b348015610579575f80fd5b50610282600a81565b34801561058d575f80fd5b5061028261059c3660046119a0565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105d1575f80fd5b5061028261090c565b3480156105e5575f80fd5b506103ea6105f4366004611985565b610926565b606060038054610608906119d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610634906119d7565b801561067f5780601f106106565761010080835404028352916020019161067f565b820191905f5260205f20905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b5f6106953384846109c1565b5060015b92915050565b5f6106ab848484610ae4565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107345760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61074185338584036109c1565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610695918590610782908690611a23565b6109c1565b6005546001600160a01b031633146107b15760405162461bcd60e51b815260040161072b90611a36565b6107ba5f611349565b565b6005546001600160a01b031633146107e65760405162461bcd60e51b815260040161072b90611a36565b6007805462ff000019169055565b6005546001600160a01b0316331461081e5760405162461bcd60e51b815260040161072b90611a36565b436006556007805461ff001916610100179055565b606060048054610608906119d7565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156108c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072b565b6108d033858584036109c1565b5060019392505050565b5f610695338484610ae4565b60646108ff68327cb2734119d3b7a9601e1b6003611a6b565b6109099190611a82565b81565b6127106108ff68327cb2734119d3b7a9601e1b6005611a6b565b6005546001600160a01b031633146109505760405162461bcd60e51b815260040161072b90611a36565b6001600160a01b0381166109b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072b565b6109be81611349565b50565b6001600160a01b038316610a235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072b565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b0a5760405162461bcd60e51b815260040161072b90611aa1565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161072b565b805f03610b8357610b7e83835f61139a565b505050565b60075462010000900460ff1615610edb576005546001600160a01b03848116911614801590610bc057506005546001600160a01b03838116911614155b8015610bd757506001600160a01b03821661dead14155b8015610beb57506001600160a01b03821615155b8015610bfa575060075460ff16155b15610edb57600754610100900460ff16610c97576001600160a01b0383165f908152600a602052604090205460ff1680610c4b57506001600160a01b0382165f908152600a602052604090205460ff165b610c975760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206973206e6f7420656e61626c65642e000000000000000000604482015260640161072b565b6001600160a01b0383165f908152600c602052604090205460ff168015610cd657506001600160a01b0382165f908152600b602052604090205460ff16155b15610dac576064610cf468327cb2734119d3b7a9601e1b6003611a6b565b610cfe9190611a82565b811115610d1d5760405162461bcd60e51b815260040161072b90611ae6565b6064610d3668327cb2734119d3b7a9601e1b6003611a6b565b610d409190611a82565b6001600160a01b0383165f90815260208190526040902054610d629083611a23565b1115610da75760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072b565b610edb565b6001600160a01b0382165f908152600c602052604090205460ff168015610deb57506001600160a01b0383165f908152600b602052604090205460ff16155b15610e32576064610e0968327cb2734119d3b7a9601e1b6003611a6b565b610e139190611a82565b811115610da75760405162461bcd60e51b815260040161072b90611ae6565b6001600160a01b0382165f908152600b602052604090205460ff16610edb576064610e6a68327cb2734119d3b7a9601e1b6003611a6b565b610e749190611a82565b6001600160a01b0383165f90815260208190526040902054610e969083611a23565b1115610edb5760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072b565b6001600160a01b0383165f908152600a602052604090205460ff1680610f1857506001600160a01b0382165f908152600a602052604090205460ff165b8015610f2d57506001600160a01b0383163014155b8015610f4257506001600160a01b0382163014155b15610f4c5742600d555b6001600160a01b0383165f908152600a602052604090205460ff168015610fa15750600a5f610f836005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610fb157610b7e8383836114c7565b6001600160a01b0383165f908152600a602052604090205460ff16158015610ff157506001600160a01b0382165f908152600a602052604090205460ff16155b15611072576001600160a01b0383165f908152600c602052604090205460ff1661104c576001600160a01b0383165f908152600e60205260409020600d54815461103b9190611b32565b600282015542600190910155611072565b6001600160a01b0382165f908152600e602052604081208054909103611070574281555b505b305f9081526020819052604081205461271061109b68327cb2734119d3b7a9601e1b6005611a6b565b6110a59190611a82565b111590505f60086006546110b99190611a23565b431090508180156110c8575080155b80156110d7575060075460ff16155b80156110fb57506001600160a01b0385165f908152600c602052604090205460ff16155b801561111f57506001600160a01b0385165f908152600a602052604090205460ff16155b801561114357506001600160a01b0384165f908152600a602052604090205460ff16155b15611150576111506114ff565b6007546001600160a01b0386165f908152600a602052604090205460ff9182161591168061119557506001600160a01b0385165f908152600a602052604090205460ff165b1561119d57505f5b5f8115611335578261127d576001600160a01b0387165f908152600c602052604090205460ff1680156111ce575060015b156112415760646111e0600587611a6b565b6111ea9190611a82565b905061120160056111fb8184611a6b565b906116b7565b60095f8282546112119190611a23565b90915550611226905060056111fb5f84611a6b565b60085f8282546112369190611a23565b909155506113179050565b6001600160a01b0386165f908152600c602052604090205460ff168015611266575060015b156112785760646111e0600587611a6b565b611317565b6001600160a01b0387165f908152600c602052604090205460ff16156112c75760646112aa600a87611a6b565b6112b49190611a82565b90508060095f8282546112369190611a23565b6001600160a01b0386165f908152600c602052604090205460ff16156113175760646112f4602887611a6b565b6112fe9190611a82565b90508060095f8282546113119190611a23565b90915550505b80156113285761132887308361139a565b6113328186611b32565b94505b61134087878761139a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166113c05760405162461bcd60e51b815260040161072b90611aa1565b6001600160a01b0383165f90815260208190526040902054818110156114375760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072b565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061146d908490611a23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b991815260200190565b60405180910390a350505050565b6001600160a01b038084165f90815260208190526040808220805485810390915592851682528120805484929061146d908490611a23565b6007805460ff19166001179055305f9081526020819052604081205490505f60095460085461152e9190611a23565b905081158061153b575080155b156115475750506116ab565b61271061156168327cb2734119d3b7a9601e1b6005611a6b565b61156b9190611a82565b611576906014611a6b565b8211156115af5761271061159768327cb2734119d3b7a9601e1b6005611a6b565b6115a19190611a82565b6115ac906014611a6b565b91505b5f82476115bb826116ff565b5f6115c68247611b32565b90505f85600854836115d89190611a6b565b6115e29190611a82565b5f6009819055600881905560405191925073e05186445ea1b860c471c4f54f5d782ffc2673e591839181818185875af1925050503d805f8114611640576040519150601f19603f3d011682016040523d82523d5f602084013e611645565b606091505b5050604051909550739db11e23c83732466ef482d6420f14baf2b508ff9047905f81818185875af1925050503d805f811461169b576040519150601f19603f3d011682016040523d82523d5f602084013e6116a0565b606091505b505050505050505050505b6007805460ff19169055565b5f6116f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611888565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061173257611732611b45565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c69190611b59565b816001815181106117d9576117d9611b45565b60200260200101906001600160a01b031690816001600160a01b03168152505061181830737a250d5630b4cf539739df2c5dacb4c659f2488d846109c1565b60405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906118579085905f90869030904290600401611b74565b5f604051808303815f87803b15801561186e575f80fd5b505af1158015611880573d5f803e3d5ffd5b505050505050565b5f81836118a85760405162461bcd60e51b815260040161072b91906118bd565b505f6118b48486611a82565b95945050505050565b5f602080835283518060208501525f5b818110156118e9578581018301518582016040015282016118cd565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109be575f80fd5b5f806040838503121561192e575f80fd5b823561193981611909565b946020939093013593505050565b5f805f60608486031215611959575f80fd5b833561196481611909565b9250602084013561197481611909565b929592945050506040919091013590565b5f60208284031215611995575f80fd5b81356116f881611909565b5f80604083850312156119b1575f80fd5b82356119bc81611909565b915060208301356119cc81611909565b809150509250929050565b600181811c908216806119eb57607f821691505b602082108103611a0957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069957610699611a0f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761069957610699611a0f565b5f82611a9c57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602c908201527f5472616e7366657220616d6f756e74206578636565647320746865204d61782060408201526b2a3930b739b0b1ba34b7b71760a11b606082015260800190565b8181038181111561069957610699611a0f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b69575f80fd5b81516116f881611909565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611bc45784516001600160a01b031683529383019391830191600101611b9f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203f4865c4fa7e486ffa39570d12815e2ec83cf50b4973460d23479f7a8538685c64736f6c63430008170033

Deployed Bytecode

0x60806040526004361061020a575f3560e01c80638da5cb5b11610113578063b62496f51161009d578063d85ba0631161006d578063d85ba0631461038e578063dd62ed3e14610582578063e2f45605146105c6578063f2fde38b146105da578063f8b45b051461055a575f80fd5b8063b62496f51461050e578063bbc0c7421461053c578063c8c8ebe41461055a578063cfa715931461056e575f80fd5b80639c3b4fdc116100e35780639c3b4fdc146104a85780639fccce32146104bb578063a0d82dc5146104a8578063a457c2d7146104d0578063a9059cbb146104ef575f80fd5b80638da5cb5b146104505780638ea5220f1461046d578063921369131461038e57806395d89b4114610494575f80fd5b80634a62bb6511610194578063751039fc11610164578063751039fc146103ec57806375f0a874146104005780637bce5a041461038e5780637f5d4ab7146104275780638a8c523c1461043c575f80fd5b80634a62bb651461036f5780636a486a8e1461038e57806370a08231146103a2578063715018a6146103d6575f80fd5b806318160ddd116101da57806318160ddd146102cf57806323b872dd146102e3578063313ce56714610302578063395093511461031d57806349bd5a5e1461033c575f80fd5b806306fdde0314610215578063095ea7b31461023f5780630e14ebdc1461026e5780631694505e14610290575f80fd5b3661021157005b5f80fd5b348015610220575f80fd5b506102296105f9565b60405161023691906118bd565b60405180910390f35b34801561024a575f80fd5b5061025e61025936600461191d565b610689565b6040519015158152602001610236565b348015610279575f80fd5b50610282602881565b604051908152602001610236565b34801561029b575f80fd5b506102b7737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610236565b3480156102da575f80fd5b50600254610282565b3480156102ee575f80fd5b5061025e6102fd366004611947565b61069f565b34801561030d575f80fd5b5060405160128152602001610236565b348015610328575f80fd5b5061025e61033736600461191d565b61074c565b348015610347575f80fd5b506102b77f000000000000000000000000f3300331dd1dcbe600ab917f9e0f9e274fb40bbd81565b34801561037a575f80fd5b5060075461025e9062010000900460ff1681565b348015610399575f80fd5b50610282600581565b3480156103ad575f80fd5b506102826103bc366004611985565b6001600160a01b03165f9081526020819052604090205490565b3480156103e1575f80fd5b506103ea610787565b005b3480156103f7575f80fd5b506103ea6107bc565b34801561040b575f80fd5b506102b7739db11e23c83732466ef482d6420f14baf2b508ff81565b348015610432575f80fd5b5061028260095481565b348015610447575f80fd5b506103ea6107f4565b34801561045b575f80fd5b506005546001600160a01b03166102b7565b348015610478575f80fd5b506102b773e05186445ea1b860c471c4f54f5d782ffc2673e581565b34801561049f575f80fd5b50610229610833565b3480156104b3575f80fd5b506102825f81565b3480156104c6575f80fd5b5061028260085481565b3480156104db575f80fd5b5061025e6104ea36600461191d565b610842565b3480156104fa575f80fd5b5061025e61050936600461191d565b6108da565b348015610519575f80fd5b5061025e610528366004611985565b600c6020525f908152604090205460ff1681565b348015610547575f80fd5b5060075461025e90610100900460ff1681565b348015610565575f80fd5b506102826108e6565b348015610579575f80fd5b50610282600a81565b34801561058d575f80fd5b5061028261059c3660046119a0565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b3480156105d1575f80fd5b5061028261090c565b3480156105e5575f80fd5b506103ea6105f4366004611985565b610926565b606060038054610608906119d7565b80601f0160208091040260200160405190810160405280929190818152602001828054610634906119d7565b801561067f5780601f106106565761010080835404028352916020019161067f565b820191905f5260205f20905b81548152906001019060200180831161066257829003601f168201915b5050505050905090565b5f6106953384846109c1565b5060015b92915050565b5f6106ab848484610ae4565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156107345760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61074185338584036109c1565b506001949350505050565b335f8181526001602090815260408083206001600160a01b03871684529091528120549091610695918590610782908690611a23565b6109c1565b6005546001600160a01b031633146107b15760405162461bcd60e51b815260040161072b90611a36565b6107ba5f611349565b565b6005546001600160a01b031633146107e65760405162461bcd60e51b815260040161072b90611a36565b6007805462ff000019169055565b6005546001600160a01b0316331461081e5760405162461bcd60e51b815260040161072b90611a36565b436006556007805461ff001916610100179055565b606060048054610608906119d7565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156108c35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161072b565b6108d033858584036109c1565b5060019392505050565b5f610695338484610ae4565b60646108ff68327cb2734119d3b7a9601e1b6003611a6b565b6109099190611a82565b81565b6127106108ff68327cb2734119d3b7a9601e1b6005611a6b565b6005546001600160a01b031633146109505760405162461bcd60e51b815260040161072b90611a36565b6001600160a01b0381166109b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072b565b6109be81611349565b50565b6001600160a01b038316610a235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161072b565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161072b565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610b0a5760405162461bcd60e51b815260040161072b90611aa1565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161072b565b805f03610b8357610b7e83835f61139a565b505050565b60075462010000900460ff1615610edb576005546001600160a01b03848116911614801590610bc057506005546001600160a01b03838116911614155b8015610bd757506001600160a01b03821661dead14155b8015610beb57506001600160a01b03821615155b8015610bfa575060075460ff16155b15610edb57600754610100900460ff16610c97576001600160a01b0383165f908152600a602052604090205460ff1680610c4b57506001600160a01b0382165f908152600a602052604090205460ff165b610c975760405162461bcd60e51b815260206004820152601760248201527f54726164696e67206973206e6f7420656e61626c65642e000000000000000000604482015260640161072b565b6001600160a01b0383165f908152600c602052604090205460ff168015610cd657506001600160a01b0382165f908152600b602052604090205460ff16155b15610dac576064610cf468327cb2734119d3b7a9601e1b6003611a6b565b610cfe9190611a82565b811115610d1d5760405162461bcd60e51b815260040161072b90611ae6565b6064610d3668327cb2734119d3b7a9601e1b6003611a6b565b610d409190611a82565b6001600160a01b0383165f90815260208190526040902054610d629083611a23565b1115610da75760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072b565b610edb565b6001600160a01b0382165f908152600c602052604090205460ff168015610deb57506001600160a01b0383165f908152600b602052604090205460ff16155b15610e32576064610e0968327cb2734119d3b7a9601e1b6003611a6b565b610e139190611a82565b811115610da75760405162461bcd60e51b815260040161072b90611ae6565b6001600160a01b0382165f908152600b602052604090205460ff16610edb576064610e6a68327cb2734119d3b7a9601e1b6003611a6b565b610e749190611a82565b6001600160a01b0383165f90815260208190526040902054610e969083611a23565b1115610edb5760405162461bcd60e51b815260206004820152601460248201527326b0bc103bb0b63632ba1032bc31b2b2b232b21760611b604482015260640161072b565b6001600160a01b0383165f908152600a602052604090205460ff1680610f1857506001600160a01b0382165f908152600a602052604090205460ff165b8015610f2d57506001600160a01b0383163014155b8015610f4257506001600160a01b0382163014155b15610f4c5742600d555b6001600160a01b0383165f908152600a602052604090205460ff168015610fa15750600a5f610f836005546001600160a01b031690565b6001600160a01b0316815260208101919091526040015f205460ff16155b15610fb157610b7e8383836114c7565b6001600160a01b0383165f908152600a602052604090205460ff16158015610ff157506001600160a01b0382165f908152600a602052604090205460ff16155b15611072576001600160a01b0383165f908152600c602052604090205460ff1661104c576001600160a01b0383165f908152600e60205260409020600d54815461103b9190611b32565b600282015542600190910155611072565b6001600160a01b0382165f908152600e602052604081208054909103611070574281555b505b305f9081526020819052604081205461271061109b68327cb2734119d3b7a9601e1b6005611a6b565b6110a59190611a82565b111590505f60086006546110b99190611a23565b431090508180156110c8575080155b80156110d7575060075460ff16155b80156110fb57506001600160a01b0385165f908152600c602052604090205460ff16155b801561111f57506001600160a01b0385165f908152600a602052604090205460ff16155b801561114357506001600160a01b0384165f908152600a602052604090205460ff16155b15611150576111506114ff565b6007546001600160a01b0386165f908152600a602052604090205460ff9182161591168061119557506001600160a01b0385165f908152600a602052604090205460ff165b1561119d57505f5b5f8115611335578261127d576001600160a01b0387165f908152600c602052604090205460ff1680156111ce575060015b156112415760646111e0600587611a6b565b6111ea9190611a82565b905061120160056111fb8184611a6b565b906116b7565b60095f8282546112119190611a23565b90915550611226905060056111fb5f84611a6b565b60085f8282546112369190611a23565b909155506113179050565b6001600160a01b0386165f908152600c602052604090205460ff168015611266575060015b156112785760646111e0600587611a6b565b611317565b6001600160a01b0387165f908152600c602052604090205460ff16156112c75760646112aa600a87611a6b565b6112b49190611a82565b90508060095f8282546112369190611a23565b6001600160a01b0386165f908152600c602052604090205460ff16156113175760646112f4602887611a6b565b6112fe9190611a82565b90508060095f8282546113119190611a23565b90915550505b80156113285761132887308361139a565b6113328186611b32565b94505b61134087878761139a565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0383166113c05760405162461bcd60e51b815260040161072b90611aa1565b6001600160a01b0383165f90815260208190526040902054818110156114375760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161072b565b6001600160a01b038085165f9081526020819052604080822085850390559185168152908120805484929061146d908490611a23565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114b991815260200190565b60405180910390a350505050565b6001600160a01b038084165f90815260208190526040808220805485810390915592851682528120805484929061146d908490611a23565b6007805460ff19166001179055305f9081526020819052604081205490505f60095460085461152e9190611a23565b905081158061153b575080155b156115475750506116ab565b61271061156168327cb2734119d3b7a9601e1b6005611a6b565b61156b9190611a82565b611576906014611a6b565b8211156115af5761271061159768327cb2734119d3b7a9601e1b6005611a6b565b6115a19190611a82565b6115ac906014611a6b565b91505b5f82476115bb826116ff565b5f6115c68247611b32565b90505f85600854836115d89190611a6b565b6115e29190611a82565b5f6009819055600881905560405191925073e05186445ea1b860c471c4f54f5d782ffc2673e591839181818185875af1925050503d805f8114611640576040519150601f19603f3d011682016040523d82523d5f602084013e611645565b606091505b5050604051909550739db11e23c83732466ef482d6420f14baf2b508ff9047905f81818185875af1925050503d805f811461169b576040519150601f19603f3d011682016040523d82523d5f602084013e6116a0565b606091505b505050505050505050505b6007805460ff19169055565b5f6116f883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611888565b9392505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061173257611732611b45565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117c69190611b59565b816001815181106117d9576117d9611b45565b60200260200101906001600160a01b031690816001600160a01b03168152505061181830737a250d5630b4cf539739df2c5dacb4c659f2488d846109c1565b60405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906118579085905f90869030904290600401611b74565b5f604051808303815f87803b15801561186e575f80fd5b505af1158015611880573d5f803e3d5ffd5b505050505050565b5f81836118a85760405162461bcd60e51b815260040161072b91906118bd565b505f6118b48486611a82565b95945050505050565b5f602080835283518060208501525f5b818110156118e9578581018301518582016040015282016118cd565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109be575f80fd5b5f806040838503121561192e575f80fd5b823561193981611909565b946020939093013593505050565b5f805f60608486031215611959575f80fd5b833561196481611909565b9250602084013561197481611909565b929592945050506040919091013590565b5f60208284031215611995575f80fd5b81356116f881611909565b5f80604083850312156119b1575f80fd5b82356119bc81611909565b915060208301356119cc81611909565b809150509250929050565b600181811c908216806119eb57607f821691505b602082108103611a0957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561069957610699611a0f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761069957610699611a0f565b5f82611a9c57634e487b7160e01b5f52601260045260245ffd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602c908201527f5472616e7366657220616d6f756e74206578636565647320746865204d61782060408201526b2a3930b739b0b1ba34b7b71760a11b606082015260800190565b8181038181111561069957610699611a0f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611b69575f80fd5b81516116f881611909565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015611bc45784516001600160a01b031683529383019391830191600101611b9f565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203f4865c4fa7e486ffa39570d12815e2ec83cf50b4973460d23479f7a8538685c64736f6c63430008170033

Deployed Bytecode Sourcemap

22445:9571:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9526:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11693:169;;;;;;;;;;-1:-1:-1;11693:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11693:169:0;1023:187:1;23434:43:0;;;;;;;;;;;;23475:2;23434:43;;;;;1361:25:1;;;1349:2;1334:18;23434:43:0;1215:177:1;23177:115:0;;;;;;;;;;;;23249:42;23177:115;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;23177:115:0;1397:229:1;10646:108:0;;;;;;;;;;-1:-1:-1;10734:12:0;;10646:108;;12344:492;;;;;;;;;;-1:-1:-1;12344:492:0;;;;;:::i;:::-;;:::i;10488:93::-;;;;;;;;;;-1:-1:-1;10488:93:0;;10571:2;2234:36:1;;2222:2;2207:18;10488:93:0;2092:184:1;13245:215:0;;;;;;;;;;-1:-1:-1;13245:215:0;;;;;:::i;:::-;;:::i;23299:38::-;;;;;;;;;;;;;;;23923:33;;;;;;;;;;-1:-1:-1;23923:33:0;;;;;;;;;;;23774:41;;;;;;;;;;;;23814:1;23774:41;;10817:127;;;;;;;;;;-1:-1:-1;10817:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10918:18:0;10891:7;10918:18;;;;;;;;;;;;10817:127;3078:103;;;;;;;;;;;;;:::i;:::-;;25663:84;;;;;;;;;;;;;:::i;22999:::-;;;;;;;;;;;;23041:42;22999:84;;23999:28;;;;;;;;;;;;;;;;25518:115;;;;;;;;;;;;;:::i;2427:87::-;;;;;;;;;;-1:-1:-1;2500:6:0;;-1:-1:-1;;;;;2500:6:0;2427:87;;23090:78;;;;;;;;;;;;23126:42;23090:78;;9745:104;;;;;;;;;;;;;:::i;23535:37::-;;;;;;;;;;;;23571:1;23535:37;;23965:27;;;;;;;;;;;;;;;;13963:413;;;;;;;;;;-1:-1:-1;13963:413:0;;;;;:::i;:::-;;:::i;11157:175::-;;;;;;;;;;-1:-1:-1;11157:175:0;;;;;:::i;:::-;;:::i;24210:57::-;;;;;;;;;;-1:-1:-1;24210:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23883:33;;;;;;;;;;-1:-1:-1;23883:33:0;;;;;;;;;;;22776:71;;;;;;;;;;;;;:::i;23385:42::-;;;;;;;;;;;;23425:2;23385:42;;11395:151;;;;;;;;;;-1:-1:-1;11395:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11511:18:0;;;11484:7;11511:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11395:151;22921:71;;;;;;;;;;;;;:::i;3336:201::-;;;;;;;;;;-1:-1:-1;3336:201:0;;;;;:::i;:::-;;:::i;9526:100::-;9580:13;9613:5;9606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9526:100;:::o;11693:169::-;11776:4;11793:39;1488:10;11816:7;11825:6;11793:8;:39::i;:::-;-1:-1:-1;11850:4:0;11693:169;;;;;:::o;12344:492::-;12484:4;12501:36;12511:6;12519:9;12530:6;12501:9;:36::i;:::-;-1:-1:-1;;;;;12577:19:0;;12550:24;12577:19;;;:11;:19;;;;;;;;1488:10;12577:33;;;;;;;;12629:26;;;;12621:79;;;;-1:-1:-1;;;12621:79:0;;3721:2:1;12621:79:0;;;3703:21:1;3760:2;3740:18;;;3733:30;3799:34;3779:18;;;3772:62;-1:-1:-1;;;3850:18:1;;;3843:38;3898:19;;12621:79:0;;;;;;;;;12736:57;12745:6;1488:10;12786:6;12767:16;:25;12736:8;:57::i;:::-;-1:-1:-1;12824:4:0;;12344:492;-1:-1:-1;;;;12344:492:0:o;13245:215::-;1488:10;13333:4;13382:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13382:34:0;;;;;;;;;;13333:4;;13350:80;;13373:7;;13382:47;;13419:10;;13382:47;:::i;:::-;13350:8;:80::i;3078:103::-;2500:6;;-1:-1:-1;;;;;2500:6:0;1488:10;2647:23;2639:68;;;;-1:-1:-1;;;2639:68:0;;;;;;;:::i;:::-;3143:30:::1;3170:1;3143:18;:30::i;:::-;3078:103::o:0;25663:84::-;2500:6;;-1:-1:-1;;;;;2500:6:0;1488:10;2647:23;2639:68;;;;-1:-1:-1;;;2639:68:0;;;;;;;:::i;:::-;25717:14:::1;:22:::0;;-1:-1:-1;;25717:22:0::1;::::0;;25663:84::o;25518:115::-;2500:6;;-1:-1:-1;;;;;2500:6:0;1488:10;2647:23;2639:68;;;;-1:-1:-1;;;2639:68:0;;;;;;;:::i;:::-;25582:12:::1;25573:6;:21:::0;25605:13:::1;:20:::0;;-1:-1:-1;;25605:20:0::1;;;::::0;;25518:115::o;9745:104::-;9801:13;9834:7;9827:14;;;;;:::i;13963:413::-;1488:10;14056:4;14100:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14100:34:0;;;;;;;;;;14153:35;;;;14145:85;;;;-1:-1:-1;;;14145:85:0;;4753:2:1;14145:85:0;;;4735:21:1;4792:2;4772:18;;;4765:30;4831:34;4811:18;;;4804:62;-1:-1:-1;;;4882:18:1;;;4875:35;4927:19;;14145:85:0;4551:401:1;14145:85:0;14266:67;1488:10;14289:7;14317:15;14298:16;:34;14266:8;:67::i;:::-;-1:-1:-1;14364:4:0;;13963:413;-1:-1:-1;;;13963:413:0:o;11157:175::-;11243:4;11260:42;1488:10;11284:9;11295:6;11260:9;:42::i;22776:71::-;22844:3;22824:16;-1:-1:-1;;;22839:1:0;22824:16;:::i;:::-;22823:24;;;;:::i;:::-;22776:71;:::o;22921:::-;22987:5;22967:16;-1:-1:-1;;;22982:1:0;22967:16;:::i;3336:201::-;2500:6;;-1:-1:-1;;;;;2500:6:0;1488:10;2647:23;2639:68;;;;-1:-1:-1;;;2639:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3425:22:0;::::1;3417:73;;;::::0;-1:-1:-1;;;3417:73:0;;5554:2:1;3417:73:0::1;::::0;::::1;5536:21:1::0;5593:2;5573:18;;;5566:30;5632:34;5612:18;;;5605:62;-1:-1:-1;;;5683:18:1;;;5676:36;5729:19;;3417:73:0::1;5352:402:1::0;3417:73:0::1;3501:28;3520:8;3501:18;:28::i;:::-;3336:201:::0;:::o;18539:380::-;-1:-1:-1;;;;;18675:19:0;;18667:68;;;;-1:-1:-1;;;18667:68:0;;5961:2:1;18667:68:0;;;5943:21:1;6000:2;5980:18;;;5973:30;6039:34;6019:18;;;6012:62;-1:-1:-1;;;6090:18:1;;;6083:34;6134:19;;18667:68:0;5759:400:1;18667:68:0;-1:-1:-1;;;;;18754:21:0;;18746:68;;;;-1:-1:-1;;;18746:68:0;;6366:2:1;18746:68:0;;;6348:21:1;6405:2;6385:18;;;6378:30;6444:34;6424:18;;;6417:62;-1:-1:-1;;;6495:18:1;;;6488:32;6537:19;;18746:68:0;6164:398:1;18746:68:0;-1:-1:-1;;;;;18827:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18879:32;;1361:25:1;;;18879:32:0;;1334:18:1;18879:32:0;;;;;;;18539:380;;;:::o;26175:4323::-;-1:-1:-1;;;;;26307:18:0;;26299:68;;;;-1:-1:-1;;;26299:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26386:16:0;;26378:64;;;;-1:-1:-1;;;26378:64:0;;7175:2:1;26378:64:0;;;7157:21:1;7214:2;7194:18;;;7187:30;7253:34;7233:18;;;7226:62;-1:-1:-1;;;7304:18:1;;;7297:33;7347:19;;26378:64:0;6973:399:1;26378:64:0;26459:6;26469:1;26459:11;26455:93;;26487:28;26503:4;26509:2;26513:1;26487:15;:28::i;:::-;26175:4323;;;:::o;26455:93::-;26564:14;;;;;;;26560:1234;;;2500:6;;-1:-1:-1;;;;;26617:15:0;;;2500:6;;26617:15;;;;:49;;-1:-1:-1;2500:6:0;;-1:-1:-1;;;;;26653:13:0;;;2500:6;;26653:13;;26617:49;:88;;;;-1:-1:-1;;;;;;26687:18:0;;22760:6;26687:18;;26617:88;:125;;;;-1:-1:-1;;;;;;26726:16:0;;;;26617:125;:155;;;;-1:-1:-1;26764:8:0;;;;26763:9;26617:155;26595:1188;;;26812:13;;;;;;;26807:151;;-1:-1:-1;;;;;26858:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;26887:23:0;;;;;;:19;:23;;;;;;;;26858:52;26850:88;;;;-1:-1:-1;;;26850:88:0;;7579:2:1;26850:88:0;;;7561:21:1;7618:2;7598:18;;;7591:30;7657:25;7637:18;;;7630:53;7700:18;;26850:88:0;7377:347:1;26850:88:0;-1:-1:-1;;;;;27002:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;27059:35:0;;;;;;:31;:35;;;;;;;;27058:36;27002:92;26976:792;;;22844:3;22824:16;-1:-1:-1;;;22839:1:0;22824:16;:::i;:::-;22823:24;;;;:::i;:::-;27145:6;:30;;27137:87;;;;-1:-1:-1;;;27137:87:0;;;;;;;:::i;:::-;22911:3;22891:16;-1:-1:-1;;;22906:1:0;22891:16;:::i;:::-;22890:24;;;;:::i;:::-;-1:-1:-1;;;;;10918:18:0;;10891:7;10918:18;;;;;;;;;;;27255:22;;:6;:22;:::i;:::-;:35;;27247:68;;;;-1:-1:-1;;;27247:68:0;;8344:2:1;27247:68:0;;;8326:21:1;8383:2;8363:18;;;8356:30;-1:-1:-1;;;8402:18:1;;;8395:50;8462:18;;27247:68:0;8142:344:1;27247:68:0;26976:792;;;-1:-1:-1;;;;;27367:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;27422:37:0;;;;;;:31;:37;;;;;;;;27421:38;27367:92;27341:427;;;22844:3;22824:16;-1:-1:-1;;;22839:1:0;22824:16;:::i;:::-;22823:24;;;;:::i;:::-;27510:6;:30;;27502:87;;;;-1:-1:-1;;;27502:87:0;;;;;;;:::i;27341:427::-;-1:-1:-1;;;;;27620:35:0;;;;;;:31;:35;;;;;;;;27615:153;;22911:3;22891:16;-1:-1:-1;;;22906:1:0;22891:16;:::i;:::-;22890:24;;;;:::i;:::-;-1:-1:-1;;;;;10918:18:0;;10891:7;10918:18;;;;;;;;;;;27688:22;;:6;:22;:::i;:::-;:35;;27680:68;;;;-1:-1:-1;;;27680:68:0;;8344:2:1;27680:68:0;;;8326:21:1;8383:2;8363:18;;;8356:30;-1:-1:-1;;;8402:18:1;;;8395:50;8462:18;;27680:68:0;8142:344:1;27680:68:0;-1:-1:-1;;;;;27809:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;27838:23:0;;;;;;:19;:23;;;;;;;;27809:52;27808:79;;;;-1:-1:-1;;;;;;27866:21:0;;27882:4;27866:21;;27808:79;:102;;;;-1:-1:-1;;;;;;27891:19:0;;27905:4;27891:19;;27808:102;27804:166;;;27943:15;27927:13;:31;27804:166;-1:-1:-1;;;;;27984:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;28014:19;:28;28034:7;2500:6;;-1:-1:-1;;;;;2500:6:0;;2427:87;28034:7;-1:-1:-1;;;;;28014:28:0;;;;;;;;;;;;-1:-1:-1;28014:28:0;;;;28013:29;27984:58;27980:146;;;28059:34;28076:4;28082:2;28086:6;28059:16;:34::i;27980:146::-;-1:-1:-1;;;;;28141:25:0;;;;;;:19;:25;;;;;;;;28140:26;:54;;;;-1:-1:-1;;;;;;28171:23:0;;;;;;:19;:23;;;;;;;;28170:24;28140:54;28136:521;;;-1:-1:-1;;;;;28216:31:0;;;;;;:25;:31;;;;;;;;28211:435;;-1:-1:-1;;;;;28299:19:0;;28268:28;28299:19;;;:13;:19;;;;;28370:13;;28357:10;;:26;;28370:13;28357:26;:::i;:::-;28337:17;;;:46;28416:15;28402:11;;;;:29;28211:435;;;-1:-1:-1;;;;;28503:17:0;;28472:28;28503:17;;;:13;:17;;;;;28543:10;;28503:17;;28543:15;28539:92;;28596:15;28583:28;;28539:92;28453:193;28211:435;28724:4;28669:12;10918:18;;;;;;;;;;;22987:5;22967:16;-1:-1:-1;;;22982:1:0;22967:16;:::i;:::-;22966:26;;;;:::i;:::-;28684:46;;28669:61;;28741:17;23525:1;28776:6;;:22;;;;:::i;:::-;28761:12;:37;28741:57;;28829:7;:37;;;;;28854:12;28853:13;28829:37;:63;;;;-1:-1:-1;28884:8:0;;;;28883:9;28829:63;:112;;;;-1:-1:-1;;;;;;28910:31:0;;;;;;:25;:31;;;;;;;;28909:32;28829:112;:155;;;;-1:-1:-1;;;;;;28959:25:0;;;;;;:19;:25;;;;;;;;28958:26;28829:155;:196;;;;-1:-1:-1;;;;;;29002:23:0;;;;;;:19;:23;;;;;;;;29001:24;28829:196;28811:263;;;29052:10;:8;:10::i;:::-;29102:8;;-1:-1:-1;;;;;29127:25:0;;29086:12;29127:25;;;:19;:25;;;;;;29102:8;;;;29101:9;;29127:25;;:52;;-1:-1:-1;;;;;;29156:23:0;;;;;;:19;:23;;;;;;;;29127:52;29123:100;;;-1:-1:-1;29206:5:0;29123:100;29235:12;29266:7;29262:1185;;;29295:12;29290:1012;;-1:-1:-1;;;;;29332:31:0;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;29367:16:0;29332:51;29328:592;;;29439:3;29415:21;23766:1;29415:6;:21;:::i;:::-;:27;;;;:::i;:::-;29408:34;-1:-1:-1;29482:42:0;23766:1;29483:22;23766:1;29408:34;29483:22;:::i;:::-;29482:28;;:42::i;:::-;29465:13;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;29563:36:0;;-1:-1:-1;23766:1:0;29564:16;23571:1;29564:4;:16;:::i;29563:36::-;29547:12;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;29290:1012:0;;-1:-1:-1;29290:1012:0;29328:592;-1:-1:-1;;;;;29629:29:0;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;29662:17:0;29629:50;29625:295;;;29736:3;29711:22;23814:1;29711:6;:22;:::i;29625:295::-;29290:1012;;;-1:-1:-1;;;;;29964:31:0;;;;;;:25;:31;;;;;;;;29960:327;;;30054:3;30028:22;23425:2;30028:6;:22;:::i;:::-;30027:30;;;;:::i;:::-;30020:37;;30097:4;30080:13;;:21;;;;;;;:::i;29960:327::-;-1:-1:-1;;;;;30131:29:0;;;;;;:25;:29;;;;;;;;30127:160;;;30220:3;30193:23;23475:2;30193:6;:23;:::i;:::-;30192:31;;;;:::i;:::-;30185:38;;30263:4;30246:13;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;30127:160:0;30320:8;;30316:91;;30349:42;30365:4;30379;30386;30349:15;:42::i;:::-;30421:14;30431:4;30421:14;;:::i;:::-;;;29262:1185;30457:33;30473:4;30479:2;30483:6;30457:15;:33::i;:::-;26288:4210;;;;26175:4323;;;:::o;3697:191::-;3790:6;;;-1:-1:-1;;;;;3807:17:0;;;-1:-1:-1;;;;;;3807:17:0;;;;;;;3840:40;;3790:6;;;3807:17;3790:6;;3840:40;;3771:16;;3840:40;3760:128;3697:191;:::o;14866:651::-;-1:-1:-1;;;;;15006:20:0;;14998:70;;;;-1:-1:-1;;;14998:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15165:17:0;;15141:21;15165:17;;;;;;;;;;;15201:23;;;;15193:74;;;;-1:-1:-1;;;15193:74:0;;8826:2:1;15193:74:0;;;8808:21:1;8865:2;8845:18;;;8838:30;8904:34;8884:18;;;8877:62;-1:-1:-1;;;8955:18:1;;;8948:36;9001:19;;15193:74:0;8624:402:1;15193:74:0;-1:-1:-1;;;;;15303:17:0;;;:9;:17;;;;;;;;;;;15323:22;;;15303:42;;15367:20;;;;;;;;:30;;15339:6;;15303:9;15367:30;;15339:6;;15367:30;:::i;:::-;;;;;;;;15432:9;-1:-1:-1;;;;;15415:35:0;15424:6;-1:-1:-1;;;;;15415:35:0;;15443:6;15415:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15415:35:0;;;;;;;;14987:530;14866:651;;;:::o;16007:484::-;-1:-1:-1;;;;;16224:17:0;;;16200:21;16224:17;;;;;;;;;;;;;16297:22;;;16277:42;;;16341:20;;;;;;;:30;;16313:6;;16200:21;16341:30;;16313:6;;16341:30;:::i;30543:941::-;24485:8;:15;;-1:-1:-1;;24485:15:0;24496:4;24485:15;;;30638:4:::1;-1:-1:-1::0;10918:18:0;;;;;;;;;;;30594:50:::1;;30655:25;30698:13;;30683:12;;:28;;;;:::i;:::-;30655:56:::0;-1:-1:-1;30726:20:0;;;:46:::1;;-1:-1:-1::0;30750:22:0;;30726:46:::1;30722:85;;;30789:7;;;;30722:85;22987:5;22967:16;-1:-1:-1::0;;;22982:1:0::1;22967:16;:::i;:::-;22966:26;;;;:::i;:::-;30839:23;::::0;30860:2:::1;30839:23;:::i;:::-;30821:15;:41;30817:115;;;22987:5;22967:16;-1:-1:-1::0;;;22982:1:0::1;22967:16;:::i;:::-;22966:26;;;;:::i;:::-;30897:23;::::0;30918:2:::1;30897:23;:::i;:::-;30879:41;;30817:115;30942:12;30994:15:::0;31048:21:::1;31080:36;30994:15:::0;31080:16:::1;:36::i;:::-;31127:18;31148:41;31172:17:::0;31148:21:::1;:41;:::i;:::-;31127:62;;31200:17;31248;31233:12;;31220:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;31292:1;31276:13;:17:::0;;;31304:12:::1;:16:::0;;;31344:45:::1;::::0;31200:65;;-1:-1:-1;23126:42:0::1;::::0;31200:65;;31344:45;31292:1;31344:45;31200:65;23126:42;31344:45:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;31413:63:0::1;::::0;31331:58;;-1:-1:-1;23041:42:0::1;::::0;31450:21:::1;::::0;31413:63:::1;::::0;;;31450:21;23041:42;31413:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;;;;;;24511:1:0::1;24523:8:::0;:16;;-1:-1:-1;;24523:16:0;;;30543:941::o;3919:132::-;3977:7;4004:39;4008:1;4011;4004:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3997:46;3919:132;-1:-1:-1;;;3919:132:0:o;31492:521::-;31582:16;;;31596:1;31582:16;;;;;;;;31558:21;;31582:16;;;;;;;;;;-1:-1:-1;31582:16:0;31558:40;;31627:4;31609;31614:1;31609:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;31609:23:0;;;-1:-1:-1;;;;;31609:23:0;;;;;23249:42;-1:-1:-1;;;;;31653:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31643:4;31648:1;31643:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;31643:32:0;;;-1:-1:-1;;;;;31643:32:0;;;;;31686:112;31717:4;23249:42;31776:11;31686:8;:112::i;:::-;31809:196;;-1:-1:-1;;;31809:196:0;;23249:42;;31809:66;;:196;;31890:11;;31916:1;;31932:4;;31959;;31979:15;;31809:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31547:466;31492:521;:::o;4059:189::-;4145:7;4180:12;4173:5;4165:28;;;;-1:-1:-1;;;4165:28:0;;;;;;;;:::i;:::-;-1:-1:-1;4204:9:0;4216:5;4220:1;4216;:5;:::i;:::-;4204:17;4059:189;-1:-1:-1;;;;;4059:189:0:o;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;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:380::-;3213:1;3209:12;;;;3256;;;3277:61;;3331:4;3323:6;3319:17;3309:27;;3277:61;3384:2;3376:6;3373:14;3353:18;3350:38;3347:161;;3430:10;3425:3;3421:20;3418:1;3411:31;3465:4;3462:1;3455:15;3493:4;3490:1;3483:15;3347:161;;3134:380;;;:::o;3928:127::-;3989:10;3984:3;3980:20;3977:1;3970:31;4020:4;4017:1;4010:15;4044:4;4041:1;4034:15;4060:125;4125:9;;;4146:10;;;4143:36;;;4159:18;;:::i;4190:356::-;4392:2;4374:21;;;4411:18;;;4404:30;4470:34;4465:2;4450:18;;4443:62;4537:2;4522:18;;4190:356::o;4957:168::-;5030:9;;;5061;;5078:15;;;5072:22;;5058:37;5048:71;;5099:18;;:::i;5130:217::-;5170:1;5196;5186:132;;5240:10;5235:3;5231:20;5228:1;5221:31;5275:4;5272:1;5265:15;5303:4;5300:1;5293:15;5186:132;-1:-1:-1;5332:9:1;;5130:217::o;6567:401::-;6769:2;6751:21;;;6808:2;6788:18;;;6781:30;6847:34;6842:2;6827:18;;6820:62;-1:-1:-1;;;6913:2:1;6898:18;;6891:35;6958:3;6943:19;;6567:401::o;7729:408::-;7931:2;7913:21;;;7970:2;7950:18;;;7943:30;8009:34;8004:2;7989:18;;7982:62;-1:-1:-1;;;8075:2:1;8060:18;;8053:42;8127:3;8112:19;;7729:408::o;8491:128::-;8558:9;;;8579:11;;;8576:37;;;8593:18;;:::i;9373:127::-;9434:10;9429:3;9425:20;9422:1;9415:31;9465:4;9462:1;9455:15;9489:4;9486:1;9479:15;9505:251;9575:6;9628:2;9616:9;9607:7;9603:23;9599:32;9596:52;;;9644:1;9641;9634:12;9596:52;9676:9;9670:16;9695:31;9720:5;9695:31;:::i;9761:980::-;10023:4;10071:3;10060:9;10056:19;10102:6;10091:9;10084:25;10128:2;10166:6;10161:2;10150:9;10146:18;10139:34;10209:3;10204:2;10193:9;10189:18;10182:31;10233:6;10268;10262:13;10299:6;10291;10284:22;10337:3;10326:9;10322:19;10315:26;;10376:2;10368:6;10364:15;10350:29;;10397:1;10407:195;10421:6;10418:1;10415:13;10407:195;;;10486:13;;-1:-1:-1;;;;;10482:39:1;10470:52;;10577:15;;;;10542:12;;;;10518:1;10436:9;10407:195;;;-1:-1:-1;;;;;;;10658:32:1;;;;10653:2;10638:18;;10631:60;-1:-1:-1;;;10722:3:1;10707:19;10700:35;10619:3;9761:980;-1:-1:-1;;;9761:980:1:o

Swarm Source

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