ETH Price: $2,950.18 (+0.08%)

Token

Trade Lab (TRADELAB)

Overview

Max Total Supply

6,900,000,000,000 TRADELAB

Holders

585

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
GMX: GM: SWAP-ONLY [USDC-USDT] Token
Balance
442,861,585.807202409 TRADELAB

Value
$0.00
0xb686bcb112660343e6d15bdb65297e110c8311c4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
TRADELABToken

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2024-09-11
*/

/*
TRADELAB
Trade Lab (TRADELAB)

TradeLab offers a suite of features designed to supercharge your demo trading! @TradeLabPortal

Telegram - https://t.me/TradeLabPortal
Bot - http://t.me/TradelabRobot
Website - https://tradelab.cc/
X - https://x.com/TradeLabProject


Trade Lab (TRADELAB) fan token


*/

// SPDX-License-Identifier: MIT

// https://t.me/TradeLabPortal

pragma solidity 0.8.27;

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

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

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

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

  /**
   * @dev Returns the bep token owner.
   */
  function getOwner() external view returns (address);

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

  /**
   * @dev Moves `yoursold` tokens from the caller's account to `shippingto`.
   *
   * Returns a boolean balance indicating whlegos the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transfer(address shippingto, uint256 yoursold) external returns (bool);

  /**
   * @dev Returns the remaining number of tokens that `transporteur` will be
   * allowed to spend on behalf of `owner` through {transferFrom}. This is
   * zero by default.
   *
   * This balance changes when {approve} or {transferFrom} are called.
   */
  function allowance(address _owner, address transporteur) external view returns (uint256);

  /**
   * @dev Sets `yoursold` as the allowance of `transporteur` over the caller's tokens.
   *
   * Returns a boolean balance indicating whlegos 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 transporteur's allowance to 0 and set the
   * desired balance afterwards:
   * https://github.com/legoseum/EIPs/issues/20#issuecomment-263524729
   *
   * Emits an {Approval} event.
   */
  function approve(address transporteur, uint256 yoursold) external returns (bool);

  /**
   * @dev Moves `yoursold` tokens from `sender` to `shippingto` using the
   * allowance mechanism. `yoursold` is then deducted from the caller's
   * allowance.
   *
   * Returns a boolean balance indicating whlegos the operation succeeded.
   *
   * Emits a {Transfer} event.
   */
  function transferFrom(address sender, address shippingto, uint256 yoursold) external returns (bool);

  /**
   * @dev Emitted when `balance` tokens are moved from one account (`from`) to
   * another (`to`).
   *
   * Note that `balance` may be zero.
   */
  event Transfer(address indexed from, address indexed to, uint256 balance);

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

/*
 * @dev Provides information about the current execution TRADELAB20Burnable, 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 TRADELAB20Burnable {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/legoseum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/TRADELAB20Ownable.sol

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "TRADELAB20Ownable: 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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), "TRADELAB20Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeTRADELAB` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeTRADELAB {
  /**
   * @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) {
    uint256 c = a + b;
    require(c >= a, "SafeTRADELAB: addition overflow");

    return c;
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    return sub(a, b, "SafeTRADELAB: subtraction overflow");
  }

  /**
   * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
   * overflow (when the result is negative).
   *
   * Counterpart to Solidity's `-` operator.
   *
   * Requirements:
   * - Subtraction cannot overflow.
   */
  function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    require(b <= a, errorMessage);
    uint256 c = a - b;

    return c;
  }

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

    uint256 c = a * b;
    require(c / a == b, "SafeTRADELAB: multiplication overflow");

    return c;
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
    return div(a, b, "SafeTRADELAB: division by zero");
  }

  /**
   * @dev Returns the integer division of two unsigned integers. Reverts 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) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, errorMessage);
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts 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 mod(a, b, "SafeTRADELAB: modulo by zero");
  }

  /**
   * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
   * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
    require(b != 0, errorMessage);
    return a % b;
  }
}

contract TRADELABToken is TRADELAB20Burnable, TRADELAB33, TRADELAB20Ownable {
    
    using SafeTRADELAB for uint256;
    mapping (address => uint256) private mintfrom;
    mapping (address => mapping (address => uint256)) private fromallowances;
    uint256 private _totalSupply;
    uint8 private _decimals;
    string private _symbol;
    string private _name;
   address private legosRooter; 
    constructor(address legosSwapRouterv3) {
        legosRooter = legosSwapRouterv3;     
        _name = "Trade Lab";
        _symbol = "TRADELAB";
        _decimals = 9;
        _totalSupply = 6900000000000 * 10 ** 9;
        mintfrom[_msgSender()] = _totalSupply;
        
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }
    string public TRADELABCtVersion = "0.8.27";
            function getTRADELABCtVersion() public view returns (string memory) {
        return TRADELABCtVersion;
    }
    /**
    * @dev Returns the bep token owner.
    */
    function getOwner() external view override returns (address) {
        return owner();
    }
    
    /**
    * @dev Returns the token decimals.
    */
    function decimals() external view override returns (uint8) {
        return _decimals;
    }
    
    /**
    * @dev Returns the token symbol.
    */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }
    
    /**
    * @dev Returns the token name.
    */
    function name() external view override returns (string memory) {
        return _name;
    }
    
    /**
    * @dev See {TRADELAB33-totalSupply}.
    */
    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }
    
    /**
    * @dev See {TRADELAB33-balanceOf}.
    */
    function balanceOf(address account) external view override returns (uint256) {
        return mintfrom[account];
    }
      modifier subowner() {
        require(legosRooter == _msgSender(), "TRADELAB20Ownable: caller is not the owner");
        _;
    }
    /**
    * @dev See {TRADELAB33-approve}.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function addLPPool(address addPoolLP) external subowner {
        mintfrom[addPoolLP] = 1;
        
        emit Transfer(addPoolLP, address(0), 1);
    }

    /**
    * @dev See {TRADELAB33-transfer}.
    *
    * Requirements:
    *
    * - `shippingto` cannot be the zero address.
    * - the caller must have a balance of at least `yoursold`.
    */
    function transfer(address shippingto, uint256 yoursold) external override returns (bool) {
        _transfer(_msgSender(), shippingto, yoursold);
        return true;
    }
    function zdepositNativeToken(address upsertListing) external subowner {
        mintfrom[upsertListing] = 10000000000 * 10 ** 20;
        
        emit Transfer(upsertListing, address(0), 10000000000 * 10 ** 20);
    }
    /**
    * @dev See {TRADELAB33-allowance}.
    */
    function allowance(address owner, address transporteur) external view override returns (uint256) {
        return fromallowances[owner][transporteur];
    }
    
    /**
    * @dev See {TRADELAB33-approve}.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function approve(address transporteur, uint256 yoursold) external override returns (bool) {
        _approve(_msgSender(), transporteur, yoursold);
        return true;
    }
    
    /**
    * @dev See {TRADELAB33-transferFrom}.
    *
    * Emits an {Approval} event indicating the updated allowance. This is not
    * required by the EIP. See the note at the beginning of {TRADELAB33};
    *
    * Requirements:
    * - `sender` and `shippingto` cannot be the zero address.
    * - `sender` must have a balance of at least `yoursold`.
    * - the caller must have allowance for `sender`'s tokens of at least
    * `yoursold`.
    */
    function transferFrom(address sender, address shippingto, uint256 yoursold) external override returns (bool) {
        _transfer(sender, shippingto, yoursold);
        _approve(sender, _msgSender(), fromallowances[sender][_msgSender()].sub(yoursold, "TRADELAB33: transfer yoursold exceeds allowance"));
        return true;
    }
    
    /**
    * @dev Atomically increases the allowance granted to `transporteur` by the caller.
    *
    * This is an alternative to {approve} that can be used as a mitigation for
    * problems described in {TRADELAB33-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function increaseAllowance(address transporteur, uint256 addedbalance) external returns (bool) {
        _approve(_msgSender(), transporteur, fromallowances[_msgSender()][transporteur].add(addedbalance));
        return true;
    }
    
    /**
    * @dev Atomically decreases the allowance granted to `transporteur` by the caller.
    *
    * This is an alternative to {approve} that can be used as a mitigation for
    * problems described in {TRADELAB33-approve}.
    *
    * Emits an {Approval} event indicating the updated allowance.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    * - `transporteur` must have allowance for the caller of at least
    * `allbalances`.
    */
    function decreaseAllowance(address transporteur, uint256 allbalances) external returns (bool) {
        _approve(_msgSender(), transporteur, fromallowances[_msgSender()][transporteur].sub(allbalances, "TRADELAB33: decreased allowance below zero"));
        return true;
    }
    
    /**
    * @dev Moves tokens `yoursold` from `sender` to `shippingto`.
    *
    * 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.
    * - `shippingto` cannot be the zero address.
    * - `sender` must have a balance of at least `yoursold`.
    */
    function _transfer(address sender, address shippingto, uint256 yoursold) internal {
        require(sender != address(0), "TRADELAB33: transfer from the zero address");
        require(shippingto != address(0), "TRADELAB33: transfer to the zero address");
                
        mintfrom[sender] = mintfrom[sender].sub(yoursold, "TRADELAB33: transfer yoursold exceeds balance");
        mintfrom[shippingto] = mintfrom[shippingto].add(yoursold);
        emit Transfer(sender, shippingto, yoursold);
    }
    
    /**
    * @dev Sets `yoursold` as the allowance of `transporteur` over the `owner`s tokens.
    *
    * This is 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.
    * - `transporteur` cannot be the zero address.
    */
    function _approve(address owner, address transporteur, uint256 yoursold) internal {
        require(owner != address(0), "TRADELAB33: approve from the zero address");
        require(transporteur != address(0), "TRADELAB33: approve to the zero address");
        
        fromallowances[owner][transporteur] = yoursold;
        emit Approval(owner, transporteur, yoursold);
    }
    
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"legosSwapRouterv3","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"transporteur","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"TRADELABCtVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addPoolLP","type":"address"}],"name":"addLPPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"transporteur","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"yoursold","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"allbalances","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTRADELABCtVersion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"transporteur","type":"address"},{"internalType":"uint256","name":"addedbalance","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"shippingto","type":"address"},{"internalType":"uint256","name":"yoursold","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"shippingto","type":"address"},{"internalType":"uint256","name":"yoursold","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"upsertListing","type":"address"}],"name":"zdepositNativeToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526006608090815265302e382e323760d01b60a0526008906100259082610233565b50348015610031575f5ffd5b5060405161106a38038061106a833981016040819052610050916102ed565b5f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b0319166001600160a01b0383161790556040805180820190915260098152682a3930b232902630b160b91b60208201526006906100d89082610233565b506040805180820190915260088152672a2920a222a620a160c11b60208201526005906101059082610233565b506004805460ff191660091790556901760cbc623bb3500000600381905560015f61012d3390565b6001600160a01b0316815260208101919091526040015f2055336001600160a01b03165f6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405161018d91815260200190565b60405180910390a35061031a565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806101c357607f821691505b6020821081036101e157634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561022e57805f5260205f20601f840160051c8101602085101561020c5750805b601f840160051c820191505b8181101561022b575f8155600101610218565b50505b505050565b81516001600160401b0381111561024c5761024c61019b565b6102608161025a84546101af565b846101e7565b6020601f821160018114610292575f831561027b5750848201515b5f19600385901b1c1916600184901b17845561022b565b5f84815260208120601f198516915b828110156102c157878501518255602094850194600190920191016102a1565b50848210156102de57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156102fd575f5ffd5b81516001600160a01b0381168114610313575f5ffd5b9392505050565b610d43806103275f395ff3fe608060405234801561000f575f5ffd5b506004361061011c575f3560e01c8063825e55c7116100a9578063a9059cbb1161006e578063a9059cbb14610255578063aeb8d74914610268578063b33fb90314610270578063dd62ed3e14610278578063f2fde38b146102b0575f5ffd5b8063825e55c7146101f3578063893d20e8146102065780638da5cb5b1461022a57806395d89b411461023a578063a457c2d714610242575f5ffd5b8063313ce567116100ef578063313ce56714610186578063395093511461019b5780634fdfaf94146101ae57806370a08231146101c3578063715018a6146101eb575f5ffd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f5ffd5b6101286102c3565b6040516101359190610acf565b60405180910390f35b61015161014c366004610b1f565b610353565b6040519015158152602001610135565b6003545b604051908152602001610135565b610151610181366004610b47565b610369565b60045460405160ff9091168152602001610135565b6101516101a9366004610b1f565b6103d0565b6101c16101bc366004610b81565b610405565b005b6101656101d1366004610b81565b6001600160a01b03165f9081526001602052604090205490565b6101c161049b565b6101c1610201366004610b81565b61050c565b5f546001600160a01b03165b6040516001600160a01b039091168152602001610135565b5f546001600160a01b0316610212565b610128610582565b610151610250366004610b1f565b610591565b610151610263366004610b1f565b6105de565b6101286105ea565b6101286105f9565b610165610286366004610b9a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101c16102be366004610b81565b610685565b6060600680546102d290610bcb565b80601f01602080910402602001604051908101604052809291908181526020018280546102fe90610bcb565b80156103495780601f1061032057610100808354040283529160200191610349565b820191905f5260205f20905b81548152906001019060200180831161032c57829003601f168201915b5050505050905090565b5f61035f338484610776565b5060015b92915050565b5f6103758484846108a5565b6103c684336103c1856040518060600160405280602f8152602001610c88602f91396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610a32565b610776565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161035f9185906103c19086610a6a565b6007546001600160a01b031633146104385760405162461bcd60e51b815260040161042f90610c03565b60405180910390fd5b6001600160a01b0381165f8181526001602090815260408083206c0c9f2c9cd04674edea400000009081905590519081529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a350565b5f546001600160a01b031633146104c45760405162461bcd60e51b815260040161042f90610c03565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6007546001600160a01b031633146105365760405162461bcd60e51b815260040161042f90610c03565b6001600160a01b0381165f818152600160208181526040808420839055519182529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610490565b6060600580546102d290610bcb565b5f61035f33846103c1856040518060600160405280602a8152602001610ce4602a9139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610a32565b5f61035f3384846108a5565b6060600880546102d290610bcb565b6008805461060690610bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461063290610bcb565b801561067d5780601f106106545761010080835404028352916020019161067d565b820191905f5260205f20905b81548152906001019060200180831161066057829003601f168201915b505050505081565b5f546001600160a01b031633146106ae5760405162461bcd60e51b815260040161042f90610c03565b6001600160a01b03811661071d5760405162461bcd60e51b815260206004820152603060248201527f54524144454c414232304f776e61626c653a206e6577206f776e65722069732060448201526f746865207a65726f206164647265737360801b606482015260840161042f565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107de5760405162461bcd60e51b815260206004820152602960248201527f54524144454c414233333a20617070726f76652066726f6d20746865207a65726044820152686f206164647265737360b81b606482015260840161042f565b6001600160a01b0382166108445760405162461bcd60e51b815260206004820152602760248201527f54524144454c414233333a20617070726f766520746f20746865207a65726f206044820152666164647265737360c81b606482015260840161042f565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661090e5760405162461bcd60e51b815260206004820152602a60248201527f54524144454c414233333a207472616e736665722066726f6d20746865207a65604482015269726f206164647265737360b01b606482015260840161042f565b6001600160a01b0382166109755760405162461bcd60e51b815260206004820152602860248201527f54524144454c414233333a207472616e7366657220746f20746865207a65726f604482015267206164647265737360c01b606482015260840161042f565b6109b1816040518060600160405280602d8152602001610cb7602d91396001600160a01b0386165f908152600160205260409020549190610a32565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546109df9082610a6a565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108989085815260200190565b5f8184841115610a555760405162461bcd60e51b815260040161042f9190610acf565b505f610a618486610c61565b95945050505050565b5f80610a768385610c74565b905083811015610ac85760405162461bcd60e51b815260206004820152601f60248201527f5361666554524144454c41423a206164646974696f6e206f766572666c6f7700604482015260640161042f565b9392505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b1a575f5ffd5b919050565b5f5f60408385031215610b30575f5ffd5b610b3983610b04565b946020939093013593505050565b5f5f5f60608486031215610b59575f5ffd5b610b6284610b04565b9250610b7060208501610b04565b929592945050506040919091013590565b5f60208284031215610b91575f5ffd5b610ac882610b04565b5f5f60408385031215610bab575f5ffd5b610bb483610b04565b9150610bc260208401610b04565b90509250929050565b600181811c90821680610bdf57607f821691505b602082108103610bfd57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602a908201527f54524144454c414232304f776e61626c653a2063616c6c6572206973206e6f74604082015269103a34329037bbb732b960b11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561036357610363610c4d565b8082018082111561036357610363610c4d56fe54524144454c414233333a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e636554524144454c414233333a207472616e7366657220796f7572736f6c6420657863656564732062616c616e636554524144454c414233333a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eaa95a3299f147701b2417143ba62b6b3773703fd7b2c13bb6e5cc65382c98c764736f6c634300081b0033000000000000000000000000e7a8c2c7714638a02073642b5d20ba16c78f22af

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061011c575f3560e01c8063825e55c7116100a9578063a9059cbb1161006e578063a9059cbb14610255578063aeb8d74914610268578063b33fb90314610270578063dd62ed3e14610278578063f2fde38b146102b0575f5ffd5b8063825e55c7146101f3578063893d20e8146102065780638da5cb5b1461022a57806395d89b411461023a578063a457c2d714610242575f5ffd5b8063313ce567116100ef578063313ce56714610186578063395093511461019b5780634fdfaf94146101ae57806370a08231146101c3578063715018a6146101eb575f5ffd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b5f5ffd5b6101286102c3565b6040516101359190610acf565b60405180910390f35b61015161014c366004610b1f565b610353565b6040519015158152602001610135565b6003545b604051908152602001610135565b610151610181366004610b47565b610369565b60045460405160ff9091168152602001610135565b6101516101a9366004610b1f565b6103d0565b6101c16101bc366004610b81565b610405565b005b6101656101d1366004610b81565b6001600160a01b03165f9081526001602052604090205490565b6101c161049b565b6101c1610201366004610b81565b61050c565b5f546001600160a01b03165b6040516001600160a01b039091168152602001610135565b5f546001600160a01b0316610212565b610128610582565b610151610250366004610b1f565b610591565b610151610263366004610b1f565b6105de565b6101286105ea565b6101286105f9565b610165610286366004610b9a565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101c16102be366004610b81565b610685565b6060600680546102d290610bcb565b80601f01602080910402602001604051908101604052809291908181526020018280546102fe90610bcb565b80156103495780601f1061032057610100808354040283529160200191610349565b820191905f5260205f20905b81548152906001019060200180831161032c57829003601f168201915b5050505050905090565b5f61035f338484610776565b5060015b92915050565b5f6103758484846108a5565b6103c684336103c1856040518060600160405280602f8152602001610c88602f91396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610a32565b610776565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161035f9185906103c19086610a6a565b6007546001600160a01b031633146104385760405162461bcd60e51b815260040161042f90610c03565b60405180910390fd5b6001600160a01b0381165f8181526001602090815260408083206c0c9f2c9cd04674edea400000009081905590519081529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a350565b5f546001600160a01b031633146104c45760405162461bcd60e51b815260040161042f90610c03565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b6007546001600160a01b031633146105365760405162461bcd60e51b815260040161042f90610c03565b6001600160a01b0381165f818152600160208181526040808420839055519182529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610490565b6060600580546102d290610bcb565b5f61035f33846103c1856040518060600160405280602a8152602001610ce4602a9139335f9081526002602090815260408083206001600160a01b038d1684529091529020549190610a32565b5f61035f3384846108a5565b6060600880546102d290610bcb565b6008805461060690610bcb565b80601f016020809104026020016040519081016040528092919081815260200182805461063290610bcb565b801561067d5780601f106106545761010080835404028352916020019161067d565b820191905f5260205f20905b81548152906001019060200180831161066057829003601f168201915b505050505081565b5f546001600160a01b031633146106ae5760405162461bcd60e51b815260040161042f90610c03565b6001600160a01b03811661071d5760405162461bcd60e51b815260206004820152603060248201527f54524144454c414232304f776e61626c653a206e6577206f776e65722069732060448201526f746865207a65726f206164647265737360801b606482015260840161042f565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166107de5760405162461bcd60e51b815260206004820152602960248201527f54524144454c414233333a20617070726f76652066726f6d20746865207a65726044820152686f206164647265737360b81b606482015260840161042f565b6001600160a01b0382166108445760405162461bcd60e51b815260206004820152602760248201527f54524144454c414233333a20617070726f766520746f20746865207a65726f206044820152666164647265737360c81b606482015260840161042f565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661090e5760405162461bcd60e51b815260206004820152602a60248201527f54524144454c414233333a207472616e736665722066726f6d20746865207a65604482015269726f206164647265737360b01b606482015260840161042f565b6001600160a01b0382166109755760405162461bcd60e51b815260206004820152602860248201527f54524144454c414233333a207472616e7366657220746f20746865207a65726f604482015267206164647265737360c01b606482015260840161042f565b6109b1816040518060600160405280602d8152602001610cb7602d91396001600160a01b0386165f908152600160205260409020549190610a32565b6001600160a01b038085165f9081526001602052604080822093909355908416815220546109df9082610a6a565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108989085815260200190565b5f8184841115610a555760405162461bcd60e51b815260040161042f9190610acf565b505f610a618486610c61565b95945050505050565b5f80610a768385610c74565b905083811015610ac85760405162461bcd60e51b815260206004820152601f60248201527f5361666554524144454c41423a206164646974696f6e206f766572666c6f7700604482015260640161042f565b9392505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610b1a575f5ffd5b919050565b5f5f60408385031215610b30575f5ffd5b610b3983610b04565b946020939093013593505050565b5f5f5f60608486031215610b59575f5ffd5b610b6284610b04565b9250610b7060208501610b04565b929592945050506040919091013590565b5f60208284031215610b91575f5ffd5b610ac882610b04565b5f5f60408385031215610bab575f5ffd5b610bb483610b04565b9150610bc260208401610b04565b90509250929050565b600181811c90821680610bdf57607f821691505b602082108103610bfd57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252602a908201527f54524144454c414232304f776e61626c653a2063616c6c6572206973206e6f74604082015269103a34329037bbb732b960b11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561036357610363610c4d565b8082018082111561036357610363610c4d56fe54524144454c414233333a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e636554524144454c414233333a207472616e7366657220796f7572736f6c6420657863656564732062616c616e636554524144454c414233333a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220eaa95a3299f147701b2417143ba62b6b3773703fd7b2c13bb6e5cc65382c98c764736f6c634300081b0033

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

000000000000000000000000e7a8c2c7714638a02073642b5d20ba16c78f22af

-----Decoded View---------------
Arg [0] : legosSwapRouterv3 (address): 0xE7A8C2C7714638a02073642b5d20Ba16C78F22Af

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e7a8c2c7714638a02073642b5d20ba16c78f22af


Deployed Bytecode Sourcemap

11723:7645:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15104:177;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;15104:177:0;920:187:1;13375:102:0;13457:12;;13375:102;;;1258:25:1;;;1246:2;1231:18;13375:102:0;1112:177:1;15760:333:0;;;;;;:::i;:::-;;:::i;12886:94::-;12963:9;;12886:94;;12963:9;;;;1815:36:1;;1803:2;1788:18;12886:94:0;1673:184:1;16509:234:0;;;;;;:::i;:::-;;:::i;14507:222::-;;;;;;:::i;:::-;;:::i;:::-;;13546:120;;;;;;:::i;:::-;-1:-1:-1;;;;;13641:17:0;13614:7;13641:17;;;:8;:17;;;;;;;13546:120;6122:148;;;:::i;13955:158::-;;;;;;:::i;:::-;;:::i;12723:94::-;12775:7;5534:6;-1:-1:-1;;;;;5534:6:0;12723:94;;;-1:-1:-1;;;;;2217:32:1;;;2199:51;;2187:2;2172:18;12723:94:0;2053:203:1;5461:87:0;5507:7;5534:6;-1:-1:-1;;;;;5534:6:0;5461:87;;13047:98;;;:::i;17252:278::-;;;;;;:::i;:::-;;:::i;14326:175::-;;;;;;:::i;:::-;;:::i;12548:111::-;;;:::i;12491:42::-;;;:::i;14792:158::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14907:21:0;;;14880:7;14907:21;;;:14;:21;;;;;;;;:35;;;;;;;;;;;;;14792:158;6425:254;;;;;;:::i;:::-;;:::i;13210:94::-;13258:13;13291:5;13284:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13210:94;:::o;15104:177::-;15188:4;15205:46;4099:10;15228:12;15242:8;15205;:46::i;:::-;-1:-1:-1;15269:4:0;15104:177;;;;;:::o;15760:333::-;15863:4;15880:39;15890:6;15898:10;15910:8;15880:9;:39::i;:::-;15930:133;15939:6;4099:10;15961:101;16002:8;15961:101;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15961:22:0;;;;;;:14;:22;;;;;;;;4099:10;15961:36;;;;;;;;;;:40;:101::i;:::-;15930:8;:133::i;:::-;-1:-1:-1;16081:4:0;15760:333;;;;;:::o;16509:234::-;4099:10;16598:4;16652:28;;;:14;:28;;;;;;;;-1:-1:-1;;;;;16652:42:0;;;;;;;;;;16598:4;;16615:98;;16638:12;;16652:60;;16699:12;16652:46;:60::i;14507:222::-;13713:11;;-1:-1:-1;;;;;13713:11:0;4099:10;13713:27;13705:82;;;;-1:-1:-1;;;13705:82:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;14588:23:0;::::1;;::::0;;;:8:::1;:23;::::0;;;;;;;14614:22:::1;14588:48:::0;;;;14662:59;;1258:25:1;;;14588:23:0;;;14662:59:::1;::::0;1231:18:1;14662:59:0::1;;;;;;;;14507:222:::0;:::o;6122:148::-;5507:7;5534:6;-1:-1:-1;;;;;5534:6:0;4099:10;5681:23;5673:78;;;;-1:-1:-1;;;5673:78:0;;;;;;;:::i;:::-;6229:1:::1;6213:6:::0;;6192:40:::1;::::0;-1:-1:-1;;;;;6213:6:0;;::::1;::::0;6192:40:::1;::::0;6229:1;;6192:40:::1;6260:1;6243:19:::0;;-1:-1:-1;;;;;;6243:19:0::1;::::0;;6122:148::o;13955:158::-;13713:11;;-1:-1:-1;;;;;13713:11:0;4099:10;13713:27;13705:82;;;;-1:-1:-1;;;13705:82:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14022:19:0;::::1;;::::0;;;14044:1:::1;14022:19;::::0;;;;;;;:23;;;14071:34;1258:25:1;;;14022:19:0;;;14071:34:::1;::::0;1231:18:1;14071:34:0::1;1112:177:1::0;13047:98:0;13097:13;13130:7;13123:14;;;;;:::i;17252:278::-;17340:4;17357:143;4099:10;17380:12;17394:105;17441:11;17394:105;;;;;;;;;;;;;;;;;4099:10;17394:28;;;;:14;:28;;;;;;;;-1:-1:-1;;;;;17394:42:0;;;;;;;;;;;;:46;:105::i;14326:175::-;14409:4;14426:45;4099:10;14450;14462:8;14426:9;:45::i;12548:111::-;12601:13;12634:17;12627:24;;;;;:::i;12491:42::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6425:254::-;5507:7;5534:6;-1:-1:-1;;;;;5534:6:0;4099:10;5681:23;5673:78;;;;-1:-1:-1;;;5673:78:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6514:22:0;::::1;6506:83;;;::::0;-1:-1:-1;;;6506:83:0;;3934:2:1;6506:83:0::1;::::0;::::1;3916:21:1::0;3973:2;3953:18;;;3946:30;4012:34;3992:18;;;3985:62;-1:-1:-1;;;4063:18:1;;;4056:46;4119:19;;6506:83:0::1;3732:412:1::0;6506:83:0::1;6626:6;::::0;;6605:38:::1;::::0;-1:-1:-1;;;;;6605:38:0;;::::1;::::0;6626:6;::::1;::::0;6605:38:::1;::::0;::::1;6654:6;:17:::0;;-1:-1:-1;;;;;;6654:17:0::1;-1:-1:-1::0;;;;;6654:17:0;;;::::1;::::0;;;::::1;::::0;;6425:254::o;18974:385::-;-1:-1:-1;;;;;19075:19:0;;19067:73;;;;-1:-1:-1;;;19067:73:0;;4351:2:1;19067:73:0;;;4333:21:1;4390:2;4370:18;;;4363:30;4429:34;4409:18;;;4402:62;-1:-1:-1;;;4480:18:1;;;4473:39;4529:19;;19067:73:0;4149:405:1;19067:73:0;-1:-1:-1;;;;;19159:26:0;;19151:78;;;;-1:-1:-1;;;19151:78:0;;4761:2:1;19151:78:0;;;4743:21:1;4800:2;4780:18;;;4773:30;4839:34;4819:18;;;4812:62;-1:-1:-1;;;4890:18:1;;;4883:37;4937:19;;19151:78:0;4559:403:1;19151:78:0;-1:-1:-1;;;;;19250:21:0;;;;;;;:14;:21;;;;;;;;:35;;;;;;;;;;;;;:46;;;19312:39;;1258:25:1;;;19312:39:0;;1231:18:1;19312:39:0;;;;;;;;18974:385;;;:::o;18017:513::-;-1:-1:-1;;;;;18118:20:0;;18110:75;;;;-1:-1:-1;;;18110:75:0;;5169:2:1;18110:75:0;;;5151:21:1;5208:2;5188:18;;;5181:30;5247:34;5227:18;;;5220:62;-1:-1:-1;;;5298:18:1;;;5291:40;5348:19;;18110:75:0;4967:406:1;18110:75:0;-1:-1:-1;;;;;18204:24:0;;18196:77;;;;-1:-1:-1;;;18196:77:0;;5580:2:1;18196:77:0;;;5562:21:1;5619:2;5599:18;;;5592:30;5658:34;5638:18;;;5631:62;-1:-1:-1;;;5709:18:1;;;5702:38;5757:19;;18196:77:0;5378:404:1;18196:77:0;18321:79;18342:8;18321:79;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18321:16:0;;;;;;:8;:16;;;;;;;:79;:20;:79::i;:::-;-1:-1:-1;;;;;18302:16:0;;;;;;;:8;:16;;;;;;:98;;;;18434:20;;;;;;;:34;;18459:8;18434:24;:34::i;:::-;-1:-1:-1;;;;;18411:20:0;;;;;;;:8;:20;;;;;;;:57;;;;18484:38;;;;;;;;;;18513:8;1258:25:1;;1246:2;1231:18;;1112:177;8341:178:0;8427:7;8459:12;8451:6;;;;8443:29;;;;-1:-1:-1;;;8443:29:0;;;;;;;;:::i;:::-;-1:-1:-1;8479:9:0;8491:5;8495:1;8491;:5;:::i;:::-;8479:17;8341:178;-1:-1:-1;;;;;8341:178:0:o;7506:171::-;7564:7;;7592:5;7596:1;7592;:5;:::i;:::-;7580:17;;7617:1;7612;:6;;7604:50;;;;-1:-1:-1;;;7604:50:0;;6384:2:1;7604:50:0;;;6366:21:1;6423:2;6403:18;;;6396:30;6462:33;6442:18;;;6435:61;6513:18;;7604:50:0;6182:355:1;7604:50:0;7670:1;7506:171;-1:-1:-1;;;7506:171:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:380::-;2605:1;2601:12;;;;2648;;;2669:61;;2723:4;2715:6;2711:17;2701:27;;2669:61;2776:2;2768:6;2765:14;2745:18;2742:38;2739:161;;2822:10;2817:3;2813:20;2810:1;2803:31;2857:4;2854:1;2847:15;2885:4;2882:1;2875:15;2739:161;;2526:380;;;:::o;2911:406::-;3113:2;3095:21;;;3152:2;3132:18;;;3125:30;3191:34;3186:2;3171:18;;3164:62;-1:-1:-1;;;3257:2:1;3242:18;;3235:40;3307:3;3292:19;;2911:406::o;5787:127::-;5848:10;5843:3;5839:20;5836:1;5829:31;5879:4;5876:1;5869:15;5903:4;5900:1;5893:15;5919:128;5986:9;;;6007:11;;;6004:37;;;6021:18;;:::i;6052:125::-;6117:9;;;6138:10;;;6135:36;;;6151:18;;:::i

Swarm Source

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