ETH Price: $2,832.15 (-10.39%)
Gas: 10 Gwei

Token

illumineX Token (IX)
 

Overview

Max Total Supply

5,523,610.09289333 IX

Holders

381

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
892.266845224706074796 IX

Value
$0.00
0x45e82579792dddf08cb3a037086604c262d78065
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:
IXTokenV2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.22.2 https://hardhat.org

// SPDX-License-Identifier: BUSL-1.1 AND MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}


// File contracts/econ/IXTokenV2.sol

// Original license: SPDX_License_Identifier: BUSL-1.1
pragma solidity ^0.8.0;


interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

contract IXTokenV2 is ERC20, Ownable {
    mapping(address => bool) private _isExcludedFromFee;
    address payable private _taxWallet;

    uint256 public constant MAX_BUY_TAX = 2;
    uint256 public constant MAX_SELL_TAX = 2;

    uint256 public buyTax = MAX_BUY_TAX;
    uint256 public sellTax = MAX_SELL_TAX;

    uint256 public taxSwapThreshold = 100 ether;
    uint256 public maxTaxSwap = 100 ether;

    mapping(address => bool) public amms;

    IUniswapV2Router02 public uniswapV2Router;

    bool private inSwap = false;

    bool public tradingOpen;
    bool public swapEnabled;

    address public minter;

    event TaxUpdated(uint256 newBuyTax, uint256 newSellTax);

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

    constructor() ERC20("illumineX Token", "IX") {
        _taxWallet = payable(msg.sender);
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_taxWallet] = true;
    }

    function toggleAmm(address _amm) public onlyOwner {
        amms[_amm] = !amms[_amm];
    }

    function setMinter(address _minter) public onlyOwner {
        require(minter == address(0));
        minter = _minter;
    }

    function burn(uint256 amount) public {
        _burn(msg.sender, amount);
    }

    function mint(address to, uint256 amount) public {
        require(msg.sender == minter);
        _mint(to, amount);
    }

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

        uint256 fee = 0;

        if (amms[to] && from != address(this)) {
            fee = (amount * sellTax) / 100;
        } else if (amms[from] && to != address(this)) {
            fee = (amount * buyTax) / 100;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        if (!inSwap && amms[to] && swapEnabled && contractTokenBalance > taxSwapThreshold) {
            swapTokensForEth(min(contractTokenBalance, maxTaxSwap));

            uint256 contractETHBalance = address(this).balance;
            if (contractETHBalance > 0) {
                sendETHToFee(address(this).balance);
            }
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            fee = 0;
        }

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

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

    function min(uint256 a, uint256 b) private pure returns (uint256) {
        return (a > b) ? b : a;
    }

    function updateTax(uint256 newBuyTax, uint256 newSellTax) public onlyOwner {
        require(newBuyTax < MAX_BUY_TAX && newSellTax < MAX_SELL_TAX, "Tax too high");
        buyTax = newBuyTax;
        sellTax = newSellTax;

        emit TaxUpdated(newBuyTax, newSellTax);
    }

    function setAutoswapParams(uint256 _maxSwapTax, uint256 _swapThreshold) public onlyOwner {
        maxTaxSwap = _maxSwapTax;
        taxSwapThreshold = _swapThreshold;
    }

    function toggleSwapStatus() public onlyOwner {
        swapEnabled = !swapEnabled;
    }

    function toggleExcludeFromFee(address _user) public onlyOwner {
        _isExcludedFromFee[_user] = !_isExcludedFromFee[_user];
    }

    function setTaxWallet(address payable _newTaxWallet) public onlyOwner {
        _taxWallet = _newTaxWallet;
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        if (tokenAmount == 0 || !tradingOpen) {
            return;
        }

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

    function sendETHToFee(uint256 amount) private {
        _taxWallet.transfer(amount);
    }

    function enableTrading() public onlyOwner {
        require(!tradingOpen, "Trading has already started");

        address routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
        if (block.chainid == 56) {
            routerAddress = 0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F;
        }

        uniswapV2Router = IUniswapV2Router02(routerAddress);
        amms[IUniswapV2Factory(uniswapV2Router.factory()).getPair(address(this), uniswapV2Router.WETH())] = true;

        swapEnabled = true;
        tradingOpen = true;
    }

    receive() external payable {}

    function withdraw(address to, uint256 amount) public onlyOwner {
        _transfer(address(this), to, amount);
    }

    function swapBalanceToETH() public onlyOwner {
        uint256 tokenBalance = balanceOf(address(this));
        if (tokenBalance > 0) {
            swapTokensForEth(tokenBalance);
        }

        uint256 ethBalance = address(this).balance;
        if (ethBalance > 0) {
            sendETHToFee(ethBalance);
        }
    }
}

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":false,"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"TaxUpdated","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":[],"name":"MAX_BUY_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_TAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"amms","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","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":"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":"maxTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwapTax","type":"uint256"},{"internalType":"uint256","name":"_swapThreshold","type":"uint256"}],"name":"setAutoswapParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newTaxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBalanceToETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_amm","type":"address"}],"name":"toggleAmm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"toggleExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSwapStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526002600881905560095568056bc75e2d63100000600a819055600b55600d805460ff60a01b191690553480156200003a57600080fd5b506040518060400160405280600f81526020016e34b6363ab6b4b732ac102a37b5b2b760891b81525060405180604001604052806002815260200161092b60f31b81525081600390816200008f91906200023e565b5060046200009e82826200023e565b505050620000bb620000b56200014360201b60201c565b62000147565b600780546001600160a01b03191633179055600160066000620000e66005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260069093528183208054851660019081179091556007549091168352912080549092161790556200030a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001c457607f821691505b602082108103620001e557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023957600081815260208120601f850160051c81016020861015620002145750805b601f850160051c820191505b81811015620002355782815560010162000220565b5050505b505050565b81516001600160401b038111156200025a576200025a62000199565b62000272816200026b8454620001af565b84620001eb565b602080601f831160018114620002aa5760008415620002915750858301515b600019600386901b1c1916600185901b17855562000235565b600085815260208120601f198616915b82811015620002db57888601518255948401946001909101908401620002ba565b5085821015620002fa5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611a5f806200031a6000396000f3fe60806040526004361061021e5760003560e01c80636d0ef3a311610123578063aa6e3301116100ab578063ea414b281161006f578063ea414b28146105f5578063f2fde38b14610615578063f3fef3a314610635578063fca3b5aa14610655578063ffb54a991461067557600080fd5b8063aa6e33011461057f578063ba3f076e1461059f578063cc1776d3146105bf578063dd62ed3e146105d5578063e7cb0df9146103af57600080fd5b80638a8c523c116100f25780638a8c523c146104f75780638da5cb5b1461050c57806395d89b411461052a578063a457c2d71461053f578063a9059cbb1461055f57600080fd5b80636d0ef3a3146104765780636ddd17131461048b57806370a08231146104ac578063715018a6146104e257600080fd5b8063313ce567116101a657806342966c681161017557806342966c68146103e45780634f7041a5146104045780635e7b655c1461041a5780635f29a7481461043057806362997f8c1461046057600080fd5b8063313ce56714610373578063395093511461038f5780633de7f844146103af57806340c10f19146103c457600080fd5b806318160ddd116101ed57806318160ddd146102dd57806323b872dd146102fc5780632717653f1461031c5780632bfb8ce4146103335780632f37aa6d1461035357600080fd5b806306fdde031461022a5780630754617214610255578063095ea7b31461028d5780631694505e146102bd57600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f610696565b60405161024c91906116ed565b60405180910390f35b34801561026157600080fd5b50600e54610275906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b34801561029957600080fd5b506102ad6102a8366004611750565b610728565b604051901515815260200161024c565b3480156102c957600080fd5b50600d54610275906001600160a01b031681565b3480156102e957600080fd5b506002545b60405190815260200161024c565b34801561030857600080fd5b506102ad61031736600461177c565b610742565b34801561032857600080fd5b50610331610766565b005b34801561033f57600080fd5b5061033161034e3660046117bd565b61078f565b34801561035f57600080fd5b5061033161036e3660046117da565b6107c0565b34801561037f57600080fd5b506040516012815260200161024c565b34801561039b57600080fd5b506102ad6103aa366004611750565b61085f565b3480156103bb57600080fd5b506102ee600281565b3480156103d057600080fd5b506103316103df366004611750565b610881565b3480156103f057600080fd5b506103316103ff3660046117fc565b6108a6565b34801561041057600080fd5b506102ee60085481565b34801561042657600080fd5b506102ee600a5481565b34801561043c57600080fd5b506102ad61044b3660046117bd565b600c6020526000908152604090205460ff1681565b34801561046c57600080fd5b506102ee600b5481565b34801561048257600080fd5b506103316108b3565b34801561049757600080fd5b50600d546102ad90600160b01b900460ff1681565b3480156104b857600080fd5b506102ee6104c73660046117bd565b6001600160a01b031660009081526020819052604090205490565b3480156104ee57600080fd5b506103316108ea565b34801561050357600080fd5b506103316108fe565b34801561051857600080fd5b506005546001600160a01b0316610275565b34801561053657600080fd5b5061023f610b51565b34801561054b57600080fd5b506102ad61055a366004611750565b610b60565b34801561056b57600080fd5b506102ad61057a366004611750565b610bdb565b34801561058b57600080fd5b5061033161059a3660046117da565b610be9565b3480156105ab57600080fd5b506103316105ba3660046117bd565b610bfc565b3480156105cb57600080fd5b506102ee60095481565b3480156105e157600080fd5b506102ee6105f0366004611815565b610c2d565b34801561060157600080fd5b506103316106103660046117bd565b610c58565b34801561062157600080fd5b506103316106303660046117bd565b610c82565b34801561064157600080fd5b50610331610650366004611750565b610cf8565b34801561066157600080fd5b506103316106703660046117bd565b610d0b565b34801561068157600080fd5b50600d546102ad90600160a81b900460ff1681565b6060600380546106a59061184e565b80601f01602080910402602001604051908101604052809291908181526020018280546106d19061184e565b801561071e5780601f106106f35761010080835404028352916020019161071e565b820191906000526020600020905b81548152906001019060200180831161070157829003601f168201915b5050505050905090565b600033610736818585610d4b565b60019150505b92915050565b600033610750858285610e70565b61075b858585610eea565b506001949350505050565b61076e611146565b600d805460ff60b01b198116600160b01b9182900460ff1615909102179055565b610797611146565b6001600160a01b03166000908152600c60205260409020805460ff19811660ff90911615179055565b6107c8611146565b6002821080156107d85750600281105b6108185760405162461bcd60e51b815260206004820152600c60248201526b0a8c2f040e8dede40d0d2ced60a31b60448201526064015b60405180910390fd5b6008829055600981905560408051838152602081018390527fb841faf0d1b32571f4ef966a2f35e3ae51f3cdda45318c3da5570a5b2ad85605910160405180910390a15050565b6000336107368185856108728383610c2d565b61087c919061189e565b610d4b565b600e546001600160a01b0316331461089857600080fd5b6108a282826111a0565b5050565b6108b0338261125f565b50565b6108bb611146565b3060009081526020819052604090205480156108da576108da81611389565b4780156108a2576108a28161151f565b6108f2611146565b6108fc6000611559565b565b610906611146565b600d54600160a81b900460ff16156109605760405162461bcd60e51b815260206004820152601b60248201527f54726164696e672068617320616c726561647920737461727465640000000000604482015260640161080f565b737a250d5630b4cf539739df2c5dacb4c659f2488d4660380361099457507305ff2b0db69458a0750badebc4f9e13add608c7f5b600d80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b81529051600192600c9260009263c45a0155916004808201926020929091908290030181865afa1580156109f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1a91906118b1565b6001600160a01b031663e6a4390530600d60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa091906118b1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1191906118b1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905550600d805461ffff60a81b191661010160a81b179055565b6060600480546106a59061184e565b60003381610b6e8286610c2d565b905083811015610bce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161080f565b61075b8286868403610d4b565b600033610736818585610eea565b610bf1611146565b600b91909155600a55565b610c04611146565b6001600160a01b03166000908152600660205260409020805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c60611146565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c8a611146565b6001600160a01b038116610cef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080f565b6108b081611559565b610d00611146565b6108a2308383610eea565b610d13611146565b600e546001600160a01b031615610d2957600080fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610dad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080f565b6001600160a01b038216610e0e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e7c8484610c2d565b90506000198114610ee45781811015610ed75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161080f565b610ee48484848403610d4b565b50505050565b6001600160a01b038316610f105760405162461bcd60e51b815260040161080f906118ce565b6001600160a01b038216610f365760405162461bcd60e51b815260040161080f90611913565b60008111610f985760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161080f565b6001600160a01b0382166000908152600c602052604081205460ff168015610fc957506001600160a01b0384163014155b15610fef57606460095483610fde9190611956565b610fe8919061196d565b9050611042565b6001600160a01b0384166000908152600c602052604090205460ff16801561102057506001600160a01b0383163014155b15611042576064600854836110359190611956565b61103f919061196d565b90505b30600090815260208190526040902054600d54600160a01b900460ff1615801561108457506001600160a01b0384166000908152600c602052604090205460ff165b80156110995750600d54600160b01b900460ff165b80156110a65750600a5481115b156110d1576110bf6110ba82600b546115ab565b611389565b4780156110cf576110cf4761151f565b505b6001600160a01b03851660009081526006602052604090205460ff168061111057506001600160a01b03841660009081526006602052604090205460ff165b1561111a57600091505b811561112b5761112b8530846115c3565b61113f858561113a858761198f565b6115c3565b5050505050565b6005546001600160a01b031633146108fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161080f565b6001600160a01b0382166111f65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161080f565b8060026000828254611208919061189e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166112bf5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161080f565b6001600160a01b038216600090815260208190526040902054818110156113335760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161080f565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e63565b600d805460ff60a01b1916600160a01b1790558015806113b35750600d54600160a81b900460ff16155b61150f5760408051600280825260608201835260009260208301908036833701905050905030816000815181106113ec576113ec6119a2565b6001600160a01b03928316602091820292909201810191909152600d54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611445573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146991906118b1565b8160018151811061147c5761147c6119a2565b6001600160a01b039283166020918202929092010152600d546114a29130911684610d4b565b600d5460405163791ac94760e01b81526001600160a01b039091169063791ac947906114db9085906000908690309042906004016119b8565b600060405180830381600087803b1580156114f557600080fd5b505af1158015611509573d6000803e3d6000fd5b50505050505b50600d805460ff60a01b19169055565b6007546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108a2573d6000803e3d6000fd5b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008183116115ba57826115bc565b815b9392505050565b6001600160a01b0383166115e95760405162461bcd60e51b815260040161080f906118ce565b6001600160a01b03821661160f5760405162461bcd60e51b815260040161080f90611913565b6001600160a01b038316600090815260208190526040902054818110156116875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161080f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ee4565b600060208083528351808285015260005b8181101561171a578581018301518582016040015282016116fe565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108b057600080fd5b6000806040838503121561176357600080fd5b823561176e8161173b565b946020939093013593505050565b60008060006060848603121561179157600080fd5b833561179c8161173b565b925060208401356117ac8161173b565b929592945050506040919091013590565b6000602082840312156117cf57600080fd5b81356115bc8161173b565b600080604083850312156117ed57600080fd5b50508035926020909101359150565b60006020828403121561180e57600080fd5b5035919050565b6000806040838503121561182857600080fd5b82356118338161173b565b915060208301356118438161173b565b809150509250929050565b600181811c9082168061186257607f821691505b60208210810361188257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073c5761073c611888565b6000602082840312156118c357600080fd5b81516115bc8161173b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761073c5761073c611888565b60008261198a57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561073c5761073c611888565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a085784516001600160a01b0316835293830193918301916001016119e3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c9c5be19eb3dd76389a44b7430af9ebb75445a8c6a905cf43201199e78a7bd6064736f6c63430008110033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80636d0ef3a311610123578063aa6e3301116100ab578063ea414b281161006f578063ea414b28146105f5578063f2fde38b14610615578063f3fef3a314610635578063fca3b5aa14610655578063ffb54a991461067557600080fd5b8063aa6e33011461057f578063ba3f076e1461059f578063cc1776d3146105bf578063dd62ed3e146105d5578063e7cb0df9146103af57600080fd5b80638a8c523c116100f25780638a8c523c146104f75780638da5cb5b1461050c57806395d89b411461052a578063a457c2d71461053f578063a9059cbb1461055f57600080fd5b80636d0ef3a3146104765780636ddd17131461048b57806370a08231146104ac578063715018a6146104e257600080fd5b8063313ce567116101a657806342966c681161017557806342966c68146103e45780634f7041a5146104045780635e7b655c1461041a5780635f29a7481461043057806362997f8c1461046057600080fd5b8063313ce56714610373578063395093511461038f5780633de7f844146103af57806340c10f19146103c457600080fd5b806318160ddd116101ed57806318160ddd146102dd57806323b872dd146102fc5780632717653f1461031c5780632bfb8ce4146103335780632f37aa6d1461035357600080fd5b806306fdde031461022a5780630754617214610255578063095ea7b31461028d5780631694505e146102bd57600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f610696565b60405161024c91906116ed565b60405180910390f35b34801561026157600080fd5b50600e54610275906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b34801561029957600080fd5b506102ad6102a8366004611750565b610728565b604051901515815260200161024c565b3480156102c957600080fd5b50600d54610275906001600160a01b031681565b3480156102e957600080fd5b506002545b60405190815260200161024c565b34801561030857600080fd5b506102ad61031736600461177c565b610742565b34801561032857600080fd5b50610331610766565b005b34801561033f57600080fd5b5061033161034e3660046117bd565b61078f565b34801561035f57600080fd5b5061033161036e3660046117da565b6107c0565b34801561037f57600080fd5b506040516012815260200161024c565b34801561039b57600080fd5b506102ad6103aa366004611750565b61085f565b3480156103bb57600080fd5b506102ee600281565b3480156103d057600080fd5b506103316103df366004611750565b610881565b3480156103f057600080fd5b506103316103ff3660046117fc565b6108a6565b34801561041057600080fd5b506102ee60085481565b34801561042657600080fd5b506102ee600a5481565b34801561043c57600080fd5b506102ad61044b3660046117bd565b600c6020526000908152604090205460ff1681565b34801561046c57600080fd5b506102ee600b5481565b34801561048257600080fd5b506103316108b3565b34801561049757600080fd5b50600d546102ad90600160b01b900460ff1681565b3480156104b857600080fd5b506102ee6104c73660046117bd565b6001600160a01b031660009081526020819052604090205490565b3480156104ee57600080fd5b506103316108ea565b34801561050357600080fd5b506103316108fe565b34801561051857600080fd5b506005546001600160a01b0316610275565b34801561053657600080fd5b5061023f610b51565b34801561054b57600080fd5b506102ad61055a366004611750565b610b60565b34801561056b57600080fd5b506102ad61057a366004611750565b610bdb565b34801561058b57600080fd5b5061033161059a3660046117da565b610be9565b3480156105ab57600080fd5b506103316105ba3660046117bd565b610bfc565b3480156105cb57600080fd5b506102ee60095481565b3480156105e157600080fd5b506102ee6105f0366004611815565b610c2d565b34801561060157600080fd5b506103316106103660046117bd565b610c58565b34801561062157600080fd5b506103316106303660046117bd565b610c82565b34801561064157600080fd5b50610331610650366004611750565b610cf8565b34801561066157600080fd5b506103316106703660046117bd565b610d0b565b34801561068157600080fd5b50600d546102ad90600160a81b900460ff1681565b6060600380546106a59061184e565b80601f01602080910402602001604051908101604052809291908181526020018280546106d19061184e565b801561071e5780601f106106f35761010080835404028352916020019161071e565b820191906000526020600020905b81548152906001019060200180831161070157829003601f168201915b5050505050905090565b600033610736818585610d4b565b60019150505b92915050565b600033610750858285610e70565b61075b858585610eea565b506001949350505050565b61076e611146565b600d805460ff60b01b198116600160b01b9182900460ff1615909102179055565b610797611146565b6001600160a01b03166000908152600c60205260409020805460ff19811660ff90911615179055565b6107c8611146565b6002821080156107d85750600281105b6108185760405162461bcd60e51b815260206004820152600c60248201526b0a8c2f040e8dede40d0d2ced60a31b60448201526064015b60405180910390fd5b6008829055600981905560408051838152602081018390527fb841faf0d1b32571f4ef966a2f35e3ae51f3cdda45318c3da5570a5b2ad85605910160405180910390a15050565b6000336107368185856108728383610c2d565b61087c919061189e565b610d4b565b600e546001600160a01b0316331461089857600080fd5b6108a282826111a0565b5050565b6108b0338261125f565b50565b6108bb611146565b3060009081526020819052604090205480156108da576108da81611389565b4780156108a2576108a28161151f565b6108f2611146565b6108fc6000611559565b565b610906611146565b600d54600160a81b900460ff16156109605760405162461bcd60e51b815260206004820152601b60248201527f54726164696e672068617320616c726561647920737461727465640000000000604482015260640161080f565b737a250d5630b4cf539739df2c5dacb4c659f2488d4660380361099457507305ff2b0db69458a0750badebc4f9e13add608c7f5b600d80546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b81529051600192600c9260009263c45a0155916004808201926020929091908290030181865afa1580156109f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1a91906118b1565b6001600160a01b031663e6a4390530600d60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aa091906118b1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1191906118b1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905550600d805461ffff60a81b191661010160a81b179055565b6060600480546106a59061184e565b60003381610b6e8286610c2d565b905083811015610bce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161080f565b61075b8286868403610d4b565b600033610736818585610eea565b610bf1611146565b600b91909155600a55565b610c04611146565b6001600160a01b03166000908152600660205260409020805460ff19811660ff90911615179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610c60611146565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c8a611146565b6001600160a01b038116610cef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080f565b6108b081611559565b610d00611146565b6108a2308383610eea565b610d13611146565b600e546001600160a01b031615610d2957600080fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610dad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161080f565b6001600160a01b038216610e0e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161080f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610e7c8484610c2d565b90506000198114610ee45781811015610ed75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161080f565b610ee48484848403610d4b565b50505050565b6001600160a01b038316610f105760405162461bcd60e51b815260040161080f906118ce565b6001600160a01b038216610f365760405162461bcd60e51b815260040161080f90611913565b60008111610f985760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b606482015260840161080f565b6001600160a01b0382166000908152600c602052604081205460ff168015610fc957506001600160a01b0384163014155b15610fef57606460095483610fde9190611956565b610fe8919061196d565b9050611042565b6001600160a01b0384166000908152600c602052604090205460ff16801561102057506001600160a01b0383163014155b15611042576064600854836110359190611956565b61103f919061196d565b90505b30600090815260208190526040902054600d54600160a01b900460ff1615801561108457506001600160a01b0384166000908152600c602052604090205460ff165b80156110995750600d54600160b01b900460ff165b80156110a65750600a5481115b156110d1576110bf6110ba82600b546115ab565b611389565b4780156110cf576110cf4761151f565b505b6001600160a01b03851660009081526006602052604090205460ff168061111057506001600160a01b03841660009081526006602052604090205460ff165b1561111a57600091505b811561112b5761112b8530846115c3565b61113f858561113a858761198f565b6115c3565b5050505050565b6005546001600160a01b031633146108fc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161080f565b6001600160a01b0382166111f65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161080f565b8060026000828254611208919061189e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166112bf5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161080f565b6001600160a01b038216600090815260208190526040902054818110156113335760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161080f565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610e63565b600d805460ff60a01b1916600160a01b1790558015806113b35750600d54600160a81b900460ff16155b61150f5760408051600280825260608201835260009260208301908036833701905050905030816000815181106113ec576113ec6119a2565b6001600160a01b03928316602091820292909201810191909152600d54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611445573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146991906118b1565b8160018151811061147c5761147c6119a2565b6001600160a01b039283166020918202929092010152600d546114a29130911684610d4b565b600d5460405163791ac94760e01b81526001600160a01b039091169063791ac947906114db9085906000908690309042906004016119b8565b600060405180830381600087803b1580156114f557600080fd5b505af1158015611509573d6000803e3d6000fd5b50505050505b50600d805460ff60a01b19169055565b6007546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156108a2573d6000803e3d6000fd5b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008183116115ba57826115bc565b815b9392505050565b6001600160a01b0383166115e95760405162461bcd60e51b815260040161080f906118ce565b6001600160a01b03821661160f5760405162461bcd60e51b815260040161080f90611913565b6001600160a01b038316600090815260208190526040902054818110156116875760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161080f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ee4565b600060208083528351808285015260005b8181101561171a578581018301518582016040015282016116fe565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146108b057600080fd5b6000806040838503121561176357600080fd5b823561176e8161173b565b946020939093013593505050565b60008060006060848603121561179157600080fd5b833561179c8161173b565b925060208401356117ac8161173b565b929592945050506040919091013590565b6000602082840312156117cf57600080fd5b81356115bc8161173b565b600080604083850312156117ed57600080fd5b50508035926020909101359150565b60006020828403121561180e57600080fd5b5035919050565b6000806040838503121561182857600080fd5b82356118338161173b565b915060208301356118438161173b565b809150509250929050565b600181811c9082168061186257607f821691505b60208210810361188257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561073c5761073c611888565b6000602082840312156118c357600080fd5b81516115bc8161173b565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761073c5761073c611888565b60008261198a57634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561073c5761073c611888565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611a085784516001600160a01b0316835293830193918301916001016119e3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220c9c5be19eb3dd76389a44b7430af9ebb75445a8c6a905cf43201199e78a7bd6064736f6c63430008110033

Deployed Bytecode Sourcemap

21589:5436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9704:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22206:21;;;;;;;;;;-1:-1:-1;22206:21:0;;;;-1:-1:-1;;;;;22206:21:0;;;;;;-1:-1:-1;;;;;731:32:1;;;713:51;;701:2;686:18;22206:21:0;567:203:1;12064:201:0;;;;;;;;;;-1:-1:-1;12064:201:0;;;;;:::i;:::-;;:::i;:::-;;;1396:14:1;;1389:22;1371:41;;1359:2;1344:18;12064:201:0;1231:187:1;22058:41:0;;;;;;;;;;-1:-1:-1;22058:41:0;;;;-1:-1:-1;;;;;22058:41:0;;;10833:108;;;;;;;;;;-1:-1:-1;10921:12:0;;10833:108;;;1803:25:1;;;1791:2;1776:18;10833:108:0;1657:177:1;12845:261:0;;;;;;;;;;-1:-1:-1;12845:261:0;;;;;:::i;:::-;;:::i;24924:90::-;;;;;;;;;;;;;:::i;:::-;;22646:93;;;;;;;;;;-1:-1:-1;22646:93:0;;;;;:::i;:::-;;:::i;24450:282::-;;;;;;;;;;-1:-1:-1;24450:282:0;;;;;:::i;:::-;;:::i;10675:93::-;;;;;;;;;;-1:-1:-1;10675:93:0;;10758:2;2947:36:1;;2935:2;2920:18;10675:93:0;2805:184:1;13515:238:0;;;;;;;;;;-1:-1:-1;13515:238:0;;;;;:::i;:::-;;:::i;21734:39::-;;;;;;;;;;;;21772:1;21734:39;;22972:125;;;;;;;;;;-1:-1:-1;22972:125:0;;;;;:::i;:::-;;:::i;22883:81::-;;;;;;;;;;-1:-1:-1;22883:81:0;;;;;:::i;:::-;;:::i;21829:35::-;;;;;;;;;;;;;;;;21917:43;;;;;;;;;;;;;;;;22013:36;;;;;;;;;;-1:-1:-1;22013:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21967:37;;;;;;;;;;;;;;;;26686:336;;;;;;;;;;;;;:::i;22174:23::-;;;;;;;;;;-1:-1:-1;22174:23:0;;;;-1:-1:-1;;;22174:23:0;;;;;;11004:127;;;;;;;;;;-1:-1:-1;11004:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11105:18:0;11078:7;11105:18;;;;;;;;;;;;11004:127;2992:103;;;;;;;;;;;;;:::i;25964:551::-;;;;;;;;;;;;;:::i;2351:87::-;;;;;;;;;;-1:-1:-1;2424:6:0;;-1:-1:-1;;;;;2424:6:0;2351:87;;9923:104;;;;;;;;;;;;;:::i;14256:436::-;;;;;;;;;;-1:-1:-1;14256:436:0;;;;;:::i;:::-;;:::i;11337:193::-;;;;;;;;;;-1:-1:-1;11337:193:0;;;;;:::i;:::-;;:::i;24740:176::-;;;;;;;;;;-1:-1:-1;24740:176:0;;;;;:::i;:::-;;:::i;25022:135::-;;;;;;;;;;-1:-1:-1;25022:135:0;;;;;:::i;:::-;;:::i;21871:37::-;;;;;;;;;;;;;;;;11593:151;;;;;;;;;;-1:-1:-1;11593:151:0;;;;;:::i;:::-;;:::i;25165:115::-;;;;;;;;;;-1:-1:-1;25165:115:0;;;;;:::i;:::-;;:::i;3250:201::-;;;;;;;;;;-1:-1:-1;3250:201:0;;;;;:::i;:::-;;:::i;26560:118::-;;;;;;;;;;-1:-1:-1;26560:118:0;;;;;:::i;:::-;;:::i;22747:128::-;;;;;;;;;;-1:-1:-1;22747:128:0;;;;;:::i;:::-;;:::i;22144:23::-;;;;;;;;;;-1:-1:-1;22144:23:0;;;;-1:-1:-1;;;22144:23:0;;;;;;9704:100;9758:13;9791:5;9784:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9704:100;:::o;12064:201::-;12147:4;927:10;12203:32;927:10;12219:7;12228:6;12203:8;:32::i;:::-;12253:4;12246:11;;;12064:201;;;;;:::o;12845:261::-;12942:4;927:10;13000:38;13016:4;927:10;13031:6;13000:15;:38::i;:::-;13049:27;13059:4;13065:2;13069:6;13049:9;:27::i;:::-;-1:-1:-1;13094:4:0;;12845:261;-1:-1:-1;;;;12845:261:0:o;24924:90::-;2237:13;:11;:13::i;:::-;24995:11:::1;::::0;;-1:-1:-1;;;;24980:26:0;::::1;-1:-1:-1::0;;;24995:11:0;;;::::1;;;24994:12;24980:26:::0;;::::1;;::::0;;24924:90::o;22646:93::-;2237:13;:11;:13::i;:::-;-1:-1:-1;;;;;22721:10:0::1;;::::0;;;:4:::1;:10;::::0;;;;;;-1:-1:-1;;22707:24:0;::::1;22721:10;::::0;;::::1;22720:11;22707:24;::::0;;22646:93::o;24450:282::-;2237:13;:11;:13::i;:::-;21772:1:::1;24544:9;:23;:52;;;;;21819:1;24571:10;:25;24544:52;24536:77;;;::::0;-1:-1:-1;;;24536:77:0;;4419:2:1;24536:77:0::1;::::0;::::1;4401:21:1::0;4458:2;4438:18;;;4431:30;-1:-1:-1;;;4477:18:1;;;4470:42;4529:18;;24536:77:0::1;;;;;;;;;24624:6;:18:::0;;;24653:7:::1;:20:::0;;;24691:33:::1;::::0;;4732:25:1;;;4788:2;4773:18;;4766:34;;;24691:33:0::1;::::0;4705:18:1;24691:33:0::1;;;;;;;24450:282:::0;;:::o;13515:238::-;13603:4;927:10;13659:64;927:10;13675:7;13712:10;13684:25;927:10;13675:7;13684:9;:25::i;:::-;:38;;;;:::i;:::-;13659:8;:64::i;22972:125::-;23054:6;;-1:-1:-1;;;;;23054:6:0;23040:10;:20;23032:29;;;;;;23072:17;23078:2;23082:6;23072:5;:17::i;:::-;22972:125;;:::o;22883:81::-;22931:25;22937:10;22949:6;22931:5;:25::i;:::-;22883:81;:::o;26686:336::-;2237:13;:11;:13::i;:::-;26783:4:::1;26742:20;11105:18:::0;;;;;;;;;;;26804:16;;26800:79:::1;;26837:30;26854:12;26837:16;:30::i;:::-;26912:21;26948:14:::0;;26944:71:::1;;26979:24;26992:10;26979:12;:24::i;2992:103::-:0;2237:13;:11;:13::i;:::-;3057:30:::1;3084:1;3057:18;:30::i;:::-;2992:103::o:0;25964:551::-;2237:13;:11;:13::i;:::-;26026:11:::1;::::0;-1:-1:-1;;;26026:11:0;::::1;;;26025:12;26017:52;;;::::0;-1:-1:-1;;;26017:52:0;;5275:2:1;26017:52:0::1;::::0;::::1;5257:21:1::0;5314:2;5294:18;;;5287:30;5353:29;5333:18;;;5326:57;5400:18;;26017:52:0::1;5073:351:1::0;26017:52:0::1;26106:42;26163:13;26180:2;26163:19:::0;26159:110:::1;;-1:-1:-1::0;26215:42:0::1;26159:110;26281:15;:51:::0;;-1:-1:-1;;;;;;26281:51:0::1;-1:-1:-1::0;;;;;26281:51:0;::::1;::::0;;::::1;::::0;;;26366:25:::1;::::0;;-1:-1:-1;;;26366:25:0;;;;-1:-1:-1;;26343:4:0::1;::::0;-1:-1:-1;;26366:23:0::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;26281:51;26366:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26348:52:0::1;;26409:4;26416:15;;;;;;;;;-1:-1:-1::0;;;;;26416:15:0::1;-1:-1:-1::0;;;;;26416:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26348:91;::::0;-1:-1:-1;;;;;;26348:91:0::1;::::0;;;;;;-1:-1:-1;;;;;5915:15:1;;;26348:91:0::1;::::0;::::1;5897:34:1::0;5967:15;;5947:18;;;5940:43;5832:18;;26348:91:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26343:97:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;26343:97:0;:104;;-1:-1:-1;;26343:104:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;26460:11:0::1;:18:::0;;-1:-1:-1;;;;26489:18:0;-1:-1:-1;;;26489:18:0;;;25964:551::o;9923:104::-;9979:13;10012:7;10005:14;;;;;:::i;14256:436::-;14349:4;927:10;14349:4;14432:25;927:10;14449:7;14432:9;:25::i;:::-;14405:52;;14496:15;14476:16;:35;;14468:85;;;;-1:-1:-1;;;14468:85:0;;6196:2:1;14468:85:0;;;6178:21:1;6235:2;6215:18;;;6208:30;6274:34;6254:18;;;6247:62;-1:-1:-1;;;6325:18:1;;;6318:35;6370:19;;14468:85:0;5994:401:1;14468:85:0;14589:60;14598:5;14605:7;14633:15;14614:16;:34;14589:8;:60::i;11337:193::-;11416:4;927:10;11472:28;927:10;11489:2;11493:6;11472:9;:28::i;24740:176::-;2237:13;:11;:13::i;:::-;24840:10:::1;:24:::0;;;;24875:16:::1;:33:::0;24740:176::o;25022:135::-;2237:13;:11;:13::i;:::-;-1:-1:-1;;;;;25124:25:0::1;;::::0;;;:18:::1;:25;::::0;;;;;;-1:-1:-1;;25095:54:0;::::1;25124:25;::::0;;::::1;25123:26;25095:54;::::0;;25022:135::o;11593:151::-;-1:-1:-1;;;;;11709:18:0;;;11682:7;11709:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11593:151::o;25165:115::-;2237:13;:11;:13::i;:::-;25246:10:::1;:26:::0;;-1:-1:-1;;;;;;25246:26:0::1;-1:-1:-1::0;;;;;25246:26:0;;;::::1;::::0;;;::::1;::::0;;25165:115::o;3250:201::-;2237:13;:11;:13::i;:::-;-1:-1:-1;;;;;3339:22:0;::::1;3331:73;;;::::0;-1:-1:-1;;;3331:73:0;;6602:2:1;3331:73:0::1;::::0;::::1;6584:21:1::0;6641:2;6621:18;;;6614:30;6680:34;6660:18;;;6653:62;-1:-1:-1;;;6731:18:1;;;6724:36;6777:19;;3331:73:0::1;6400:402:1::0;3331:73:0::1;3415:28;3434:8;3415:18;:28::i;26560:118::-:0;2237:13;:11;:13::i;:::-;26634:36:::1;26652:4;26659:2;26663:6;26634:9;:36::i;22747:128::-:0;2237:13;:11;:13::i;:::-;22819:6:::1;::::0;-1:-1:-1;;;;;22819:6:0::1;:20:::0;22811:29:::1;;;::::0;::::1;;22851:6;:16:::0;;-1:-1:-1;;;;;;22851:16:0::1;-1:-1:-1::0;;;;;22851:16:0;;;::::1;::::0;;;::::1;::::0;;22747:128::o;18249:346::-;-1:-1:-1;;;;;18351:19:0;;18343:68;;;;-1:-1:-1;;;18343:68:0;;7009:2:1;18343:68:0;;;6991:21:1;7048:2;7028:18;;;7021:30;7087:34;7067:18;;;7060:62;-1:-1:-1;;;7138:18:1;;;7131:34;7182:19;;18343:68:0;6807:400:1;18343:68:0;-1:-1:-1;;;;;18430:21:0;;18422:68;;;;-1:-1:-1;;;18422:68:0;;7414:2:1;18422:68:0;;;7396:21:1;7453:2;7433:18;;;7426:30;7492:34;7472:18;;;7465:62;-1:-1:-1;;;7543:18:1;;;7536:32;7585:19;;18422:68:0;7212:398:1;18422:68:0;-1:-1:-1;;;;;18503:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18555:32;;1803:25:1;;;18555:32:0;;1776:18:1;18555:32:0;;;;;;;;18249:346;;;:::o;18886:419::-;18987:24;19014:25;19024:5;19031:7;19014:9;:25::i;:::-;18987:52;;-1:-1:-1;;19054:16:0;:37;19050:248;;19136:6;19116:16;:26;;19108:68;;;;-1:-1:-1;;;19108:68:0;;7817:2:1;19108:68:0;;;7799:21:1;7856:2;7836:18;;;7829:30;7895:31;7875:18;;;7868:59;7944:18;;19108:68:0;7615:353:1;19108:68:0;19220:51;19229:5;19236:7;19264:6;19245:16;:25;19220:8;:51::i;:::-;18976:329;18886:419;;;:::o;23105:1222::-;-1:-1:-1;;;;;23203:18:0;;23195:68;;;;-1:-1:-1;;;23195:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23282:16:0;;23274:64;;;;-1:-1:-1;;;23274:64:0;;;;;;;:::i;:::-;23366:1;23357:6;:10;23349:64;;;;-1:-1:-1;;;23349:64:0;;8985:2:1;23349:64:0;;;8967:21:1;9024:2;9004:18;;;8997:30;9063:34;9043:18;;;9036:62;-1:-1:-1;;;9114:18:1;;;9107:39;9163:19;;23349:64:0;8783:405:1;23349:64:0;-1:-1:-1;;;;;23458:8:0;;23426:11;23458:8;;;:4;:8;;;;;;;;:33;;;;-1:-1:-1;;;;;;23470:21:0;;23486:4;23470:21;;23458:33;23454:197;;;23535:3;23524:7;;23515:6;:16;;;;:::i;:::-;23514:24;;;;:::i;:::-;23508:30;;23454:197;;;-1:-1:-1;;;;;23560:10:0;;;;;;:4;:10;;;;;;;;:33;;;;-1:-1:-1;;;;;;23574:19:0;;23588:4;23574:19;;23560:33;23556:95;;;23636:3;23626:6;;23617;:15;;;;:::i;:::-;23616:23;;;;:::i;:::-;23610:29;;23556:95;23712:4;23663:28;11105:18;;;;;;;;;;;23734:6;;-1:-1:-1;;;23734:6:0;;;;23733:7;:19;;;;-1:-1:-1;;;;;;23744:8:0;;;;;;:4;:8;;;;;;;;23733:19;:34;;;;-1:-1:-1;23756:11:0;;-1:-1:-1;;;23756:11:0;;;;23733:34;:77;;;;;23794:16;;23771:20;:39;23733:77;23729:344;;;23827:55;23844:37;23848:20;23870:10;;23844:3;:37::i;:::-;23827:16;:55::i;:::-;23928:21;23968:22;;23964:98;;24011:35;24024:21;24011:12;:35::i;:::-;23812:261;23729:344;-1:-1:-1;;;;;24089:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;24117:22:0;;;;;;:18;:22;;;;;;;;24089:50;24085:90;;;24162:1;24156:7;;24085:90;24191:7;;24187:81;;24215:41;24231:4;24245;24252:3;24215:15;:41::i;:::-;24280:39;24296:4;24302:2;24306:12;24315:3;24306:6;:12;:::i;:::-;24280:15;:39::i;:::-;23184:1143;;23105:1222;;;:::o;2516:132::-;2424:6;;-1:-1:-1;;;;;2424:6:0;927:10;2580:23;2572:68;;;;-1:-1:-1;;;2572:68:0;;9923:2:1;2572:68:0;;;9905:21:1;;;9942:18;;;9935:30;10001:34;9981:18;;;9974:62;10053:18;;2572:68:0;9721:356:1;16255:548:0;-1:-1:-1;;;;;16339:21:0;;16331:65;;;;-1:-1:-1;;;16331:65:0;;10284:2:1;16331:65:0;;;10266:21:1;10323:2;10303:18;;;10296:30;10362:33;10342:18;;;10335:61;10413:18;;16331:65:0;10082:355:1;16331:65:0;16487:6;16471:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16642:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16697:37;1803:25:1;;;16697:37:0;;1776:18:1;16697:37:0;;;;;;;22972:125;;:::o;17136:675::-;-1:-1:-1;;;;;17220:21:0;;17212:67;;;;-1:-1:-1;;;17212:67:0;;10644:2:1;17212:67:0;;;10626:21:1;10683:2;10663:18;;;10656:30;10722:34;10702:18;;;10695:62;-1:-1:-1;;;10773:18:1;;;10766:31;10814:19;;17212:67:0;10442:397:1;17212:67:0;-1:-1:-1;;;;;17379:18:0;;17354:22;17379:18;;;;;;;;;;;17416:24;;;;17408:71;;;;-1:-1:-1;;;17408:71:0;;11046:2:1;17408:71:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:34;11104:18;;;11097:62;-1:-1:-1;;;11175:18:1;;;11168:32;11217:19;;17408:71:0;10844:398:1;17408:71:0;-1:-1:-1;;;;;17515:18:0;;:9;:18;;;;;;;;;;;17536:23;;;17515:44;;17654:12;:22;;;;;;;17705:37;1803:25:1;;;17515:9:0;;:18;17705:37;;1776:18:1;17705:37:0;1657:177:1;25288:568:0;22332:6;:13;;-1:-1:-1;;;;22332:13:0;-1:-1:-1;;;22332:13:0;;;25370:16;;;:32:::1;;-1:-1:-1::0;25391:11:0::1;::::0;-1:-1:-1;;;25391:11:0;::::1;;;25390:12;25370:32;25419:7;25366:71;25473:16;::::0;;25487:1:::1;25473:16:::0;;;;;::::1;::::0;;25449:21:::1;::::0;25473:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;25473:16:0::1;25449:40;;25518:4;25500;25505:1;25500:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25500:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;25544:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;25544:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;25500:7;;25544:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25534:4;25539:1;25534:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;25534:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;25611:15:::1;::::0;25579:62:::1;::::0;25596:4:::1;::::0;25611:15:::1;25629:11:::0;25579:8:::1;:62::i;:::-;25652:15;::::0;:196:::1;::::0;-1:-1:-1;;;25652:196:0;;-1:-1:-1;;;;;25652:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;25733:11;;25652:15:::1;::::0;25775:4;;25802::::1;::::0;25822:15:::1;::::0;25652:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25355:501;22356:1;-1:-1:-1::0;22368:6:0;:14;;-1:-1:-1;;;;22368:14:0;;;25288:568::o;25864:92::-;25921:10;;:27;;-1:-1:-1;;;;;25921:10:0;;;;:27;;;;;25941:6;;25921:10;:27;:10;:27;25941:6;25921:10;:27;;;;;;;;;;;;;;;;;;;3611:191;3704:6;;;-1:-1:-1;;;;;3721:17:0;;;-1:-1:-1;;;;;;3721:17:0;;;;;;;3754:40;;3704:6;;;3721:17;3704:6;;3754:40;;3685:16;;3754:40;3674:128;3611:191;:::o;24335:107::-;24392:7;24424:1;24420;:5;24419:15;;24433:1;24419:15;;;24429:1;24419:15;24412:22;24335:107;-1:-1:-1;;;24335:107:0:o;15162:806::-;-1:-1:-1;;;;;15259:18:0;;15251:68;;;;-1:-1:-1;;;15251:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15338:16:0;;15330:64;;;;-1:-1:-1;;;15330:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15480:15:0;;15458:19;15480:15;;;;;;;;;;;15514:21;;;;15506:72;;;;-1:-1:-1;;;15506:72:0;;12698:2:1;15506:72:0;;;12680:21:1;12737:2;12717:18;;;12710:30;12776:34;12756:18;;;12749:62;-1:-1:-1;;;12827:18:1;;;12820:36;12873:19;;15506:72:0;12496:402:1;15506:72:0;-1:-1:-1;;;;;15614:15:0;;;:9;:15;;;;;;;;;;;15632:20;;;15614:38;;15832:13;;;;;;;;;;:23;;;;;;15884:26;;1803:25:1;;;15832:13:0;;15884:26;;1776:18:1;15884:26:0;;;;;;;15923:37;17136:675;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;775:131::-;-1:-1:-1;;;;;850:31:1;;840:42;;830:70;;896:1;893;886:12;911:315;979:6;987;1040:2;1028:9;1019:7;1015:23;1011:32;1008:52;;;1056:1;1053;1046:12;1008:52;1095:9;1082:23;1114:31;1139:5;1114:31;:::i;:::-;1164:5;1216:2;1201:18;;;;1188:32;;-1:-1:-1;;;911:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2300:247::-;2359:6;2412:2;2400:9;2391:7;2387:23;2383:32;2380:52;;;2428:1;2425;2418:12;2380:52;2467:9;2454:23;2486:31;2511:5;2486:31;:::i;2552:248::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;-1:-1:-1;;2720:23:1;;;2790:2;2775:18;;;2762:32;;-1:-1:-1;2552:248:1:o;2994:180::-;3053:6;3106:2;3094:9;3085:7;3081:23;3077:32;3074:52;;;3122:1;3119;3112:12;3074:52;-1:-1:-1;3145:23:1;;2994:180;-1:-1:-1;2994:180:1:o;3179:388::-;3247:6;3255;3308:2;3296:9;3287:7;3283:23;3279:32;3276:52;;;3324:1;3321;3314:12;3276:52;3363:9;3350:23;3382:31;3407:5;3382:31;:::i;:::-;3432:5;-1:-1:-1;3489:2:1;3474:18;;3461:32;3502:33;3461:32;3502:33;:::i;:::-;3554:7;3544:17;;;3179:388;;;;;:::o;3832:380::-;3911:1;3907:12;;;;3954;;;3975:61;;4029:4;4021:6;4017:17;4007:27;;3975:61;4082:2;4074:6;4071:14;4051:18;4048:38;4045:161;;4128:10;4123:3;4119:20;4116:1;4109:31;4163:4;4160:1;4153:15;4191:4;4188:1;4181:15;4045:161;;3832:380;;;:::o;4811:127::-;4872:10;4867:3;4863:20;4860:1;4853:31;4903:4;4900:1;4893:15;4927:4;4924:1;4917:15;4943:125;5008:9;;;5029:10;;;5026:36;;;5042:18;;:::i;5429:251::-;5499:6;5552:2;5540:9;5531:7;5527:23;5523:32;5520:52;;;5568:1;5565;5558:12;5520:52;5600:9;5594:16;5619:31;5644:5;5619:31;:::i;7973:401::-;8175:2;8157:21;;;8214:2;8194:18;;;8187:30;8253:34;8248:2;8233:18;;8226:62;-1:-1:-1;;;8319:2:1;8304:18;;8297:35;8364:3;8349:19;;7973:401::o;8379:399::-;8581:2;8563:21;;;8620:2;8600:18;;;8593:30;8659:34;8654:2;8639:18;;8632:62;-1:-1:-1;;;8725:2:1;8710:18;;8703:33;8768:3;8753:19;;8379:399::o;9193:168::-;9266:9;;;9297;;9314:15;;;9308:22;;9294:37;9284:71;;9335:18;;:::i;9366:217::-;9406:1;9432;9422:132;;9476:10;9471:3;9467:20;9464:1;9457:31;9511:4;9508:1;9501:15;9539:4;9536:1;9529:15;9422:132;-1:-1:-1;9568:9:1;;9366:217::o;9588:128::-;9655:9;;;9676:11;;;9673:37;;;9690:18;;:::i;11379:127::-;11440:10;11435:3;11431:20;11428:1;11421:31;11471:4;11468:1;11461:15;11495:4;11492:1;11485:15;11511:980;11773:4;11821:3;11810:9;11806:19;11852:6;11841:9;11834:25;11878:2;11916:6;11911:2;11900:9;11896:18;11889:34;11959:3;11954:2;11943:9;11939:18;11932:31;11983:6;12018;12012:13;12049:6;12041;12034:22;12087:3;12076:9;12072:19;12065:26;;12126:2;12118:6;12114:15;12100:29;;12147:1;12157:195;12171:6;12168:1;12165:13;12157:195;;;12236:13;;-1:-1:-1;;;;;12232:39:1;12220:52;;12327:15;;;;12292:12;;;;12268:1;12186:9;12157:195;;;-1:-1:-1;;;;;;;12408:32:1;;;;12403:2;12388:18;;12381:60;-1:-1:-1;;;12472:3:1;12457:19;12450:35;12369:3;11511:980;-1:-1:-1;;;11511:980:1:o

Swarm Source

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