ETH Price: $2,025.31 (+2.00%)

Contract

0x9cA8530CA349c966Fe9ef903Df17a75B8A778927
 

More Info

Private Name Tags

TokenTracker

Multichain Info

Transaction Hash
Method
Block
From
To
Approve247569432026-03-28 15:23:4743 mins ago1774711427IN
Lightchain AI: LCAI Token
0 ETH0.000102252.17915952
Approve247569322026-03-28 15:21:3545 mins ago1774711295IN
Lightchain AI: LCAI Token
0 ETH0.00009662.05868465
Transfer247569192026-03-28 15:18:4748 mins ago1774711127IN
Lightchain AI: LCAI Token
0 ETH0.000111642.05119703
Transfer247569122026-03-28 15:17:2349 mins ago1774711043IN
Lightchain AI: LCAI Token
0 ETH0.000086132.04522101
Transfer247569042026-03-28 15:15:4751 mins ago1774710947IN
Lightchain AI: LCAI Token
0 ETH0.000013730.36793203
Approve247569002026-03-28 15:14:5951 mins ago1774710899IN
Lightchain AI: LCAI Token
0 ETH0.000096652.05987514
Transfer247568712026-03-28 15:09:1157 mins ago1774710551IN
Lightchain AI: LCAI Token
0 ETH0.000122382.06767805
Transfer247568702026-03-28 15:08:5957 mins ago1774710539IN
Lightchain AI: LCAI Token
0 ETH0.000002780.06611753
Approve247568692026-03-28 15:08:4758 mins ago1774710527IN
Lightchain AI: LCAI Token
0 ETH0.000097342.06559531
Approve247568642026-03-28 15:07:471 hr ago1774710467IN
Lightchain AI: LCAI Token
0 ETH0.000003220.06881143
Approve247568582026-03-28 15:06:351 hr ago1774710395IN
Lightchain AI: LCAI Token
0 ETH0.000008120.17336266
Approve247568532026-03-28 15:05:351 hr ago1774710335IN
Lightchain AI: LCAI Token
0 ETH0.000097192.07126385
Approve247568522026-03-28 15:05:231 hr ago1774710323IN
Lightchain AI: LCAI Token
0 ETH0.00009692.06610831
Approve247568482026-03-28 15:04:351 hr ago1774710275IN
Lightchain AI: LCAI Token
0 ETH0.000096962.07023855
Approve247568392026-03-28 15:02:471 hr ago1774710167IN
Lightchain AI: LCAI Token
0 ETH0.000003850.082237
Approve247568372026-03-28 15:02:231 hr ago1774710143IN
Lightchain AI: LCAI Token
0 ETH0.000004610.09790013
Approve247568182026-03-28 14:58:351 hr ago1774709915IN
Lightchain AI: LCAI Token
0 ETH0.000002070.08340704
Approve247568152026-03-28 14:57:591 hr ago1774709879IN
Lightchain AI: LCAI Token
0 ETH0.000097172.07194046
Transfer247568122026-03-28 14:57:231 hr ago1774709843IN
Lightchain AI: LCAI Token
0 ETH0.000077262.06992325
Transfer247568112026-03-28 14:57:111 hr ago1774709831IN
Lightchain AI: LCAI Token
0 ETH0.000058441.07379986
Approve247567962026-03-28 14:54:111 hr ago1774709651IN
Lightchain AI: LCAI Token
0 ETH0.000097152.07151151
Transfer247567932026-03-28 14:53:351 hr ago1774709615IN
Lightchain AI: LCAI Token
0 ETH0.000006470.15394144
Approve247567922026-03-28 14:53:231 hr ago1774709603IN
Lightchain AI: LCAI Token
0 ETH0.00009672.06202885
Approve247567902026-03-28 14:52:591 hr ago1774709579IN
Lightchain AI: LCAI Token
0 ETH0.000096862.06539495
Approve247567822026-03-28 14:51:231 hr ago1774709483IN
Lightchain AI: LCAI Token
0 ETH0.000097092.06909605
VIEW ADVANCED FILTER
Age:180D
Reset Filter

Showing the last 1 internal transaction (View Advanced Filter)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer243528652026-01-31 5:49:1156 days ago1769838551
Lightchain AI: LCAI Token
0.00647139 ETH
VIEW ADVANCED FILTER
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LightchainAI

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-11-25
*/

// SPDX-License-Identifier:MIT
/*
  _     _       _     _       _           _            _    ___ 
 | |   (_) __ _| |__ | |_ ___| |__   __ _(_)_ __      / \  |_ _|
 | |   | |/ _` | '_ \| __/ __| '_ \ / _` | | '_ \    / _ \  | | 
 | |___| | (_| | | | | || (__| | | | (_| | | | | |  / ___ \ | | 
 |_____|_|\__, |_| |_|\__\___|_| |_|\__,_|_|_| |_| /_/   \_\___|
          |___/                                                 
*/

pragma solidity ^0.8.20;

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

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

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

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

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

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

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 value) external returns (bool);

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

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

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

/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    constructor(address initialOwner) {
        require(initialOwner != address(0), "Ownable: Invalid owner address");
        _owner = initialOwner;
        emit OwnershipTransferred(address(0), initialOwner);
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function owner() public view returns (address) {
        return _owner;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Ownable: Invalid owner address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

contract LightchainAI is Context, IERC20, Ownable {
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public whitelist;

    string private _name = "LightchainAI";
    string private _symbol = "LCAI";
    uint8 private _decimals = 18;
    uint256 private _totalSupply = 10_000_000_000 * 1e18; // Max Total Supply

    bool public trading; // once this is enabled, it cannot be disabled.

    event WhitelistUpdated(address indexed user, bool status);

    constructor(address initialOwner) Ownable(initialOwner) {
        whitelist[msg.sender] = true;
        _balances[owner()] = _totalSupply;
        
        emit Transfer(address(0), owner(), _totalSupply);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()] - amount
        );
        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public returns (bool) {
        require(
            _allowances[_msgSender()][spender] >= subtractedValue,
            "LightchainAI: decreased allowance below zero"
        );
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] - subtractedValue
        );
        return true;
    }

    function enableTrading() external onlyOwner {
        require(!trading, "LightchainAI: Trading is already enabled");
        trading = true;
    }

    /**
    * @dev Allows the owner to add or remove an address from the whitelist.
    * The whitelist is used to exempt certain addresses from trading restrictions.
    *
    * Important Notes:
    *  - Once trading is enabled, it cannot be disabled again.
    *  - After trading is enabled, the whitelist will no longer affect transfer behavior.
    *
    * @param _user The address to be added to or removed from the whitelist.
    * @param _status A boolean indicating whether the address should be added (`true`) or removed (`false`) from the whitelist.
    */
    function setWhitelist(address _user, bool _status) external onlyOwner {
        whitelist[_user] = _status;
        emit WhitelistUpdated(_user, _status);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "LightchainAI: Approve from zero address");
        require(spender != address(0), "LightchainAI: Approve to zero address");

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

    /**
    * @dev Internal function to handle the transfer of tokens between two addresses.
    * This function is private and is called internally by other public functions like `transfer` and `transferFrom`.
    *
    * The function ensures:
    *  - Neither the sender (`from`) nor the recipient (`to`) is the zero address.
    *  - The transfer amount is greater than zero.
    *  - Trading is enabled for non-whitelisted addresses.
    *  - The sender has a sufficient balance to complete the transfer.
    *
    * @param from The address sending the tokens.
    * @param to The address receiving the tokens.
    * @param amount The number of tokens to transfer.
    */
    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "LightchainAI: Transfer from zero address");
        require(to != address(0), "LightchainAI: Transfer to zero address");
        require(amount > 0, "LightchainAI: Transfer amount must be greater than zero");

        if (!whitelist[from] && !whitelist[to]) {
            require(trading, "LightchainAI: Trading is disabled");
        }

        uint256 senderBalance = _balances[from];
        require(senderBalance >= amount, "LightchainAI: Insufficient balance");

        _balances[from] -= amount;
        _balances[to] += amount;

        emit Transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelist","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":[],"name":"trading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600c81526020017f4c69676874636861696e41490000000000000000000000000000000000000000815250600490816200004a9190620005ad565b506040518060400160405280600481526020017f4c4341490000000000000000000000000000000000000000000000000000000081525060059081620000919190620005ad565b50601260065f6101000a81548160ff021916908360ff1602179055506b204fce5e3e25026110000000600755348015620000c9575f80fd5b5060405162002567380380620025678339818101604052810190620000ef9190620006f6565b805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001589062000784565b60405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600160035f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060075460015f620002666200032260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550620002b36200032260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620003139190620007b5565b60405180910390a350620007d0565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620003c557607f821691505b602082108103620003db57620003da62000380565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200043f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000402565b6200044b868362000402565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004956200048f620004898462000463565b6200046c565b62000463565b9050919050565b5f819050919050565b620004b08362000475565b620004c8620004bf826200049c565b8484546200040e565b825550505050565b5f90565b620004de620004d0565b620004eb818484620004a5565b505050565b5b818110156200051257620005065f82620004d4565b600181019050620004f1565b5050565b601f82111562000561576200052b81620003e1565b6200053684620003f3565b8101602085101562000546578190505b6200055e6200055585620003f3565b830182620004f0565b50505b505050565b5f82821c905092915050565b5f620005835f198460080262000566565b1980831691505092915050565b5f6200059d838362000572565b9150826002028217905092915050565b620005b88262000349565b67ffffffffffffffff811115620005d457620005d362000353565b5b620005e08254620003ad565b620005ed82828562000516565b5f60209050601f83116001811462000623575f84156200060e578287015190505b6200061a858262000590565b86555062000689565b601f1984166200063386620003e1565b5f5b828110156200065c5784890151825560018201915060208501945060208101905062000635565b868310156200067c578489015162000678601f89168262000572565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620006c08262000695565b9050919050565b620006d281620006b4565b8114620006dd575f80fd5b50565b5f81519050620006f081620006c7565b92915050565b5f602082840312156200070e576200070d62000691565b5b5f6200071d84828501620006e0565b91505092915050565b5f82825260208201905092915050565b7f4f776e61626c653a20496e76616c6964206f776e6572206164647265737300005f82015250565b5f6200076c601e8362000726565b9150620007798262000736565b602082019050919050565b5f6020820190508181035f8301526200079d816200075e565b9050919050565b620007af8162000463565b82525050565b5f602082019050620007ca5f830184620007a4565b92915050565b611d8980620007de5f395ff3fe608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638a8c523c116100a0578063a457c2d71161006f578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e578063ec44acf21461035e578063f2fde38b1461037c57610114565b80638a8c523c146102585780638da5cb5b1461026257806395d89b41146102805780639b19251a1461029e57610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d257806353d6fd591461020257806370a082311461021e578063715018a61461024e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b610120610398565b60405161012d91906113ce565b60405180910390f35b610150600480360381019061014b919061147f565b610428565b60405161015d91906114d7565b60405180910390f35b61016e610445565b60405161017b91906114ff565b60405180910390f35b61019e60048036038101906101999190611518565b61044e565b6040516101ab91906114d7565b60405180910390f35b6101bc610501565b6040516101c99190611583565b60405180910390f35b6101ec60048036038101906101e7919061147f565b610516565b6040516101f991906114d7565b60405180910390f35b61021c600480360381019061021791906115c6565b6105bd565b005b61023860048036038101906102339190611604565b6106df565b60405161024591906114ff565b60405180910390f35b610256610725565b005b61026061085b565b005b61026a610942565b604051610277919061163e565b60405180910390f35b610288610969565b60405161029591906113ce565b60405180910390f35b6102b860048036038101906102b39190611604565b6109f9565b6040516102c591906114d7565b60405180910390f35b6102e860048036038101906102e3919061147f565b610a16565b6040516102f591906114d7565b60405180910390f35b6103186004803603810190610313919061147f565b610b7f565b60405161032591906114d7565b60405180910390f35b61034860048036038101906103439190611657565b610b9c565b60405161035591906114ff565b60405180910390f35b610366610c1e565b60405161037391906114d7565b60405180910390f35b61039660048036038101906103919190611604565b610c30565b005b6060600480546103a7906116c2565b80601f01602080910402602001604051908101604052809291908181526020018280546103d3906116c2565b801561041e5780601f106103f55761010080835404028352916020019161041e565b820191905f5260205f20905b81548152906001019060200180831161040157829003601f168201915b5050505050905090565b5f61043b610434610dd5565b8484610ddc565b6001905092915050565b5f600754905090565b5f61045a848484610f9f565b6104f684610466610dd5565b8460025f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104ad610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104f1919061171f565b610ddc565b600190509392505050565b5f60065f9054906101000a900460ff16905090565b5f6105b3610522610dd5565b848460025f61052f610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105ae9190611752565b610ddc565b6001905092915050565b6105c5610dd5565b73ffffffffffffffffffffffffffffffffffffffff166105e3610942565b73ffffffffffffffffffffffffffffffffffffffff1614610639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610630906117cf565b60405180910390fd5b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d826040516106d391906114d7565b60405180910390a25050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61072d610dd5565b73ffffffffffffffffffffffffffffffffffffffff1661074b610942565b73ffffffffffffffffffffffffffffffffffffffff16146107a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610798906117cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610863610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610881610942565b73ffffffffffffffffffffffffffffffffffffffff16146108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce906117cf565b60405180910390fd5b60085f9054906101000a900460ff1615610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d9061185d565b60405180910390fd5b600160085f6101000a81548160ff021916908315150217905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610978906116c2565b80601f01602080910402602001604051908101604052809291908181526020018280546109a4906116c2565b80156109ef5780601f106109c6576101008083540402835291602001916109ef565b820191905f5260205f20905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6003602052805f5260405f205f915054906101000a900460ff1681565b5f8160025f610a23610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541015610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906118eb565b60405180910390fd5b610b75610ae4610dd5565b848460025f610af1610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b70919061171f565b610ddc565b6001905092915050565b5f610b92610b8b610dd5565b8484610f9f565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085f9054906101000a900460ff1681565b610c38610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610c56610942565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906117cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190611953565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906119e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90611a6f565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9291906114ff565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490611afd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290611b8b565b60405180910390fd5b5f81116110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490611c19565b60405180910390fd5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561115b575060035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156111af5760085f9054906101000a900460ff166111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590611ca7565b60405180910390fd5b5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90611d35565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461127f919061171f565b925050819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112d29190611752565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133691906114ff565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561137b578082015181840152602081019050611360565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113a082611344565b6113aa818561134e565b93506113ba81856020860161135e565b6113c381611386565b840191505092915050565b5f6020820190508181035f8301526113e68184611396565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61141b826113f2565b9050919050565b61142b81611411565b8114611435575f80fd5b50565b5f8135905061144681611422565b92915050565b5f819050919050565b61145e8161144c565b8114611468575f80fd5b50565b5f8135905061147981611455565b92915050565b5f8060408385031215611495576114946113ee565b5b5f6114a285828601611438565b92505060206114b38582860161146b565b9150509250929050565b5f8115159050919050565b6114d1816114bd565b82525050565b5f6020820190506114ea5f8301846114c8565b92915050565b6114f98161144c565b82525050565b5f6020820190506115125f8301846114f0565b92915050565b5f805f6060848603121561152f5761152e6113ee565b5b5f61153c86828701611438565b935050602061154d86828701611438565b925050604061155e8682870161146b565b9150509250925092565b5f60ff82169050919050565b61157d81611568565b82525050565b5f6020820190506115965f830184611574565b92915050565b6115a5816114bd565b81146115af575f80fd5b50565b5f813590506115c08161159c565b92915050565b5f80604083850312156115dc576115db6113ee565b5b5f6115e985828601611438565b92505060206115fa858286016115b2565b9150509250929050565b5f60208284031215611619576116186113ee565b5b5f61162684828501611438565b91505092915050565b61163881611411565b82525050565b5f6020820190506116515f83018461162f565b92915050565b5f806040838503121561166d5761166c6113ee565b5b5f61167a85828601611438565b925050602061168b85828601611438565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116d957607f821691505b6020821081036116ec576116eb611695565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117298261144c565b91506117348361144c565b925082820390508181111561174c5761174b6116f2565b5b92915050565b5f61175c8261144c565b91506117678361144c565b925082820190508082111561177f5761177e6116f2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6117b960208361134e565b91506117c482611785565b602082019050919050565b5f6020820190508181035f8301526117e6816117ad565b9050919050565b7f4c69676874636861696e41493a2054726164696e6720697320616c72656164795f8201527f20656e61626c6564000000000000000000000000000000000000000000000000602082015250565b5f61184760288361134e565b9150611852826117ed565b604082019050919050565b5f6020820190508181035f8301526118748161183b565b9050919050565b7f4c69676874636861696e41493a2064656372656173656420616c6c6f77616e635f8201527f652062656c6f77207a65726f0000000000000000000000000000000000000000602082015250565b5f6118d5602c8361134e565b91506118e08261187b565b604082019050919050565b5f6020820190508181035f830152611902816118c9565b9050919050565b7f4f776e61626c653a20496e76616c6964206f776e6572206164647265737300005f82015250565b5f61193d601e8361134e565b915061194882611909565b602082019050919050565b5f6020820190508181035f83015261196a81611931565b9050919050565b7f4c69676874636861696e41493a20417070726f76652066726f6d207a65726f205f8201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b5f6119cb60278361134e565b91506119d682611971565b604082019050919050565b5f6020820190508181035f8301526119f8816119bf565b9050919050565b7f4c69676874636861696e41493a20417070726f766520746f207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611a5960258361134e565b9150611a64826119ff565b604082019050919050565b5f6020820190508181035f830152611a8681611a4d565b9050919050565b7f4c69676874636861696e41493a205472616e736665722066726f6d207a65726f5f8201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b5f611ae760288361134e565b9150611af282611a8d565b604082019050919050565b5f6020820190508181035f830152611b1481611adb565b9050919050565b7f4c69676874636861696e41493a205472616e7366657220746f207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b7560268361134e565b9150611b8082611b1b565b604082019050919050565b5f6020820190508181035f830152611ba281611b69565b9050919050565b7f4c69676874636861696e41493a205472616e7366657220616d6f756e74206d755f8201527f73742062652067726561746572207468616e207a65726f000000000000000000602082015250565b5f611c0360378361134e565b9150611c0e82611ba9565b604082019050919050565b5f6020820190508181035f830152611c3081611bf7565b9050919050565b7f4c69676874636861696e41493a2054726164696e672069732064697361626c655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c9160218361134e565b9150611c9c82611c37565b604082019050919050565b5f6020820190508181035f830152611cbe81611c85565b9050919050565b7f4c69676874636861696e41493a20496e73756666696369656e742062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d1f60228361134e565b9150611d2a82611cc5565b604082019050919050565b5f6020820190508181035f830152611d4c81611d13565b905091905056fea26469706673582212207155211ad39cf2fc12a1d87f52b03eb7efc32201b3857f3472f6d0bfa46d56b364736f6c63430008140033000000000000000000000000fbe810101064e326f871bf20576d8e42c75d5dd7

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610114575f3560e01c80638a8c523c116100a0578063a457c2d71161006f578063a457c2d7146102ce578063a9059cbb146102fe578063dd62ed3e1461032e578063ec44acf21461035e578063f2fde38b1461037c57610114565b80638a8c523c146102585780638da5cb5b1461026257806395d89b41146102805780639b19251a1461029e57610114565b8063313ce567116100e7578063313ce567146101b457806339509351146101d257806353d6fd591461020257806370a082311461021e578063715018a61461024e57610114565b806306fdde0314610118578063095ea7b31461013657806318160ddd1461016657806323b872dd14610184575b5f80fd5b610120610398565b60405161012d91906113ce565b60405180910390f35b610150600480360381019061014b919061147f565b610428565b60405161015d91906114d7565b60405180910390f35b61016e610445565b60405161017b91906114ff565b60405180910390f35b61019e60048036038101906101999190611518565b61044e565b6040516101ab91906114d7565b60405180910390f35b6101bc610501565b6040516101c99190611583565b60405180910390f35b6101ec60048036038101906101e7919061147f565b610516565b6040516101f991906114d7565b60405180910390f35b61021c600480360381019061021791906115c6565b6105bd565b005b61023860048036038101906102339190611604565b6106df565b60405161024591906114ff565b60405180910390f35b610256610725565b005b61026061085b565b005b61026a610942565b604051610277919061163e565b60405180910390f35b610288610969565b60405161029591906113ce565b60405180910390f35b6102b860048036038101906102b39190611604565b6109f9565b6040516102c591906114d7565b60405180910390f35b6102e860048036038101906102e3919061147f565b610a16565b6040516102f591906114d7565b60405180910390f35b6103186004803603810190610313919061147f565b610b7f565b60405161032591906114d7565b60405180910390f35b61034860048036038101906103439190611657565b610b9c565b60405161035591906114ff565b60405180910390f35b610366610c1e565b60405161037391906114d7565b60405180910390f35b61039660048036038101906103919190611604565b610c30565b005b6060600480546103a7906116c2565b80601f01602080910402602001604051908101604052809291908181526020018280546103d3906116c2565b801561041e5780601f106103f55761010080835404028352916020019161041e565b820191905f5260205f20905b81548152906001019060200180831161040157829003601f168201915b5050505050905090565b5f61043b610434610dd5565b8484610ddc565b6001905092915050565b5f600754905090565b5f61045a848484610f9f565b6104f684610466610dd5565b8460025f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104ad610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546104f1919061171f565b610ddc565b600190509392505050565b5f60065f9054906101000a900460ff16905090565b5f6105b3610522610dd5565b848460025f61052f610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105ae9190611752565b610ddc565b6001905092915050565b6105c5610dd5565b73ffffffffffffffffffffffffffffffffffffffff166105e3610942565b73ffffffffffffffffffffffffffffffffffffffff1614610639576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610630906117cf565b60405180910390fd5b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d826040516106d391906114d7565b60405180910390a25050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61072d610dd5565b73ffffffffffffffffffffffffffffffffffffffff1661074b610942565b73ffffffffffffffffffffffffffffffffffffffff16146107a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610798906117cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610863610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610881610942565b73ffffffffffffffffffffffffffffffffffffffff16146108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce906117cf565b60405180910390fd5b60085f9054906101000a900460ff1615610926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091d9061185d565b60405180910390fd5b600160085f6101000a81548160ff021916908315150217905550565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610978906116c2565b80601f01602080910402602001604051908101604052809291908181526020018280546109a4906116c2565b80156109ef5780601f106109c6576101008083540402835291602001916109ef565b820191905f5260205f20905b8154815290600101906020018083116109d257829003601f168201915b5050505050905090565b6003602052805f5260405f205f915054906101000a900460ff1681565b5f8160025f610a23610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541015610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906118eb565b60405180910390fd5b610b75610ae4610dd5565b848460025f610af1610dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610b70919061171f565b610ddc565b6001905092915050565b5f610b92610b8b610dd5565b8484610f9f565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085f9054906101000a900460ff1681565b610c38610dd5565b73ffffffffffffffffffffffffffffffffffffffff16610c56610942565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906117cf565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190611953565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e41906119e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90611a6f565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f9291906114ff565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490611afd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361107b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107290611b8b565b60405180910390fd5b5f81116110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490611c19565b60405180910390fd5b60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561115b575060035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156111af5760085f9054906101000a900460ff166111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590611ca7565b60405180910390fd5b5b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90611d35565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461127f919061171f565b925050819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112d29190611752565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133691906114ff565b60405180910390a350505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561137b578082015181840152602081019050611360565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113a082611344565b6113aa818561134e565b93506113ba81856020860161135e565b6113c381611386565b840191505092915050565b5f6020820190508181035f8301526113e68184611396565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61141b826113f2565b9050919050565b61142b81611411565b8114611435575f80fd5b50565b5f8135905061144681611422565b92915050565b5f819050919050565b61145e8161144c565b8114611468575f80fd5b50565b5f8135905061147981611455565b92915050565b5f8060408385031215611495576114946113ee565b5b5f6114a285828601611438565b92505060206114b38582860161146b565b9150509250929050565b5f8115159050919050565b6114d1816114bd565b82525050565b5f6020820190506114ea5f8301846114c8565b92915050565b6114f98161144c565b82525050565b5f6020820190506115125f8301846114f0565b92915050565b5f805f6060848603121561152f5761152e6113ee565b5b5f61153c86828701611438565b935050602061154d86828701611438565b925050604061155e8682870161146b565b9150509250925092565b5f60ff82169050919050565b61157d81611568565b82525050565b5f6020820190506115965f830184611574565b92915050565b6115a5816114bd565b81146115af575f80fd5b50565b5f813590506115c08161159c565b92915050565b5f80604083850312156115dc576115db6113ee565b5b5f6115e985828601611438565b92505060206115fa858286016115b2565b9150509250929050565b5f60208284031215611619576116186113ee565b5b5f61162684828501611438565b91505092915050565b61163881611411565b82525050565b5f6020820190506116515f83018461162f565b92915050565b5f806040838503121561166d5761166c6113ee565b5b5f61167a85828601611438565b925050602061168b85828601611438565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116d957607f821691505b6020821081036116ec576116eb611695565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6117298261144c565b91506117348361144c565b925082820390508181111561174c5761174b6116f2565b5b92915050565b5f61175c8261144c565b91506117678361144c565b925082820190508082111561177f5761177e6116f2565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6117b960208361134e565b91506117c482611785565b602082019050919050565b5f6020820190508181035f8301526117e6816117ad565b9050919050565b7f4c69676874636861696e41493a2054726164696e6720697320616c72656164795f8201527f20656e61626c6564000000000000000000000000000000000000000000000000602082015250565b5f61184760288361134e565b9150611852826117ed565b604082019050919050565b5f6020820190508181035f8301526118748161183b565b9050919050565b7f4c69676874636861696e41493a2064656372656173656420616c6c6f77616e635f8201527f652062656c6f77207a65726f0000000000000000000000000000000000000000602082015250565b5f6118d5602c8361134e565b91506118e08261187b565b604082019050919050565b5f6020820190508181035f830152611902816118c9565b9050919050565b7f4f776e61626c653a20496e76616c6964206f776e6572206164647265737300005f82015250565b5f61193d601e8361134e565b915061194882611909565b602082019050919050565b5f6020820190508181035f83015261196a81611931565b9050919050565b7f4c69676874636861696e41493a20417070726f76652066726f6d207a65726f205f8201527f6164647265737300000000000000000000000000000000000000000000000000602082015250565b5f6119cb60278361134e565b91506119d682611971565b604082019050919050565b5f6020820190508181035f8301526119f8816119bf565b9050919050565b7f4c69676874636861696e41493a20417070726f766520746f207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611a5960258361134e565b9150611a64826119ff565b604082019050919050565b5f6020820190508181035f830152611a8681611a4d565b9050919050565b7f4c69676874636861696e41493a205472616e736665722066726f6d207a65726f5f8201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b5f611ae760288361134e565b9150611af282611a8d565b604082019050919050565b5f6020820190508181035f830152611b1481611adb565b9050919050565b7f4c69676874636861696e41493a205472616e7366657220746f207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611b7560268361134e565b9150611b8082611b1b565b604082019050919050565b5f6020820190508181035f830152611ba281611b69565b9050919050565b7f4c69676874636861696e41493a205472616e7366657220616d6f756e74206d755f8201527f73742062652067726561746572207468616e207a65726f000000000000000000602082015250565b5f611c0360378361134e565b9150611c0e82611ba9565b604082019050919050565b5f6020820190508181035f830152611c3081611bf7565b9050919050565b7f4c69676874636861696e41493a2054726164696e672069732064697361626c655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f611c9160218361134e565b9150611c9c82611c37565b604082019050919050565b5f6020820190508181035f830152611cbe81611c85565b9050919050565b7f4c69676874636861696e41493a20496e73756666696369656e742062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611d1f60228361134e565b9150611d2a82611cc5565b604082019050919050565b5f6020820190508181035f830152611d4c81611d13565b905091905056fea26469706673582212207155211ad39cf2fc12a1d87f52b03eb7efc32201b3857f3472f6d0bfa46d56b364736f6c63430008140033

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

000000000000000000000000fbe810101064e326f871bf20576d8e42c75d5dd7

-----Decoded View---------------
Arg [0] : initialOwner (address): 0xfbE810101064E326f871bf20576d8e42C75d5Dd7

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


Deployed Bytecode Sourcemap

5433:5642:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6230:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7118:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6507:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7312:350;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6416:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7670:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9153:163;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6615:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5286:140;;;:::i;:::-;;8418:149;;;:::i;:::-;;4963:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6321:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5616:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7960:450;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6742:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6942:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5864:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5050:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6230:83;6267:13;6300:5;6293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6230:83;:::o;7118:186::-;7218:4;7235:39;7244:12;:10;:12::i;:::-;7258:7;7267:6;7235:8;:39::i;:::-;7292:4;7285:11;;7118:186;;;;:::o;6507:100::-;6560:7;6587:12;;6580:19;;6507:100;:::o;7312:350::-;7444:4;7461:36;7471:6;7479:9;7490:6;7461:9;:36::i;:::-;7508:124;7531:6;7552:12;:10;:12::i;:::-;7615:6;7579:11;:19;7591:6;7579:19;;;;;;;;;;;;;;;:33;7599:12;:10;:12::i;:::-;7579:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;7508:8;:124::i;:::-;7650:4;7643:11;;7312:350;;;;;:::o;6416:83::-;6457:5;6482:9;;;;;;;;;;;6475:16;;6416:83;:::o;7670:282::-;7775:4;7792:130;7815:12;:10;:12::i;:::-;7842:7;7901:10;7864:11;:25;7876:12;:10;:12::i;:::-;7864:25;;;;;;;;;;;;;;;:34;7890:7;7864:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;7792:8;:130::i;:::-;7940:4;7933:11;;7670:282;;;;:::o;9153:163::-;4886:12;:10;:12::i;:::-;4875:23;;:7;:5;:7::i;:::-;:23;;;4867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9253:7:::1;9234:9;:16;9244:5;9234:16;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;9293:5;9276:32;;;9300:7;9276:32;;;;;;:::i;:::-;;;;;;;;9153:163:::0;;:::o;6615:119::-;6681:7;6708:9;:18;6718:7;6708:18;;;;;;;;;;;;;;;;6701:25;;6615:119;;;:::o;5286:140::-;4886:12;:10;:12::i;:::-;4875:23;;:7;:5;:7::i;:::-;:23;;;4867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5385:1:::1;5348:40;;5369:6;::::0;::::1;;;;;;;;5348:40;;;;;;;;;;;;5416:1;5399:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;5286:140::o:0;8418:149::-;4886:12;:10;:12::i;:::-;4875:23;;:7;:5;:7::i;:::-;:23;;;4867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8482:7:::1;;;;;;;;;;;8481:8;8473:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;8555:4;8545:7;;:14;;;;;;;;;;;;;;;;;;8418:149::o:0;4963:79::-;5001:7;5028:6;;;;;;;;;;;5021:13;;4963:79;:::o;6321:87::-;6360:13;6393:7;6386:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6321:87;:::o;5616:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;7960:450::-;8070:4;8147:15;8109:11;:25;8121:12;:10;:12::i;:::-;8109:25;;;;;;;;;;;;;;;:34;8135:7;8109:34;;;;;;;;;;;;;;;;:53;;8087:147;;;;;;;;;;;;:::i;:::-;;;;;;;;;8245:135;8268:12;:10;:12::i;:::-;8295:7;8354:15;8317:11;:25;8329:12;:10;:12::i;:::-;8317:25;;;;;;;;;;;;;;;:34;8343:7;8317:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;8245:8;:135::i;:::-;8398:4;8391:11;;7960:450;;;;:::o;6742:192::-;6845:4;6862:42;6872:12;:10;:12::i;:::-;6886:9;6897:6;6862:9;:42::i;:::-;6922:4;6915:11;;6742:192;;;;:::o;6942:168::-;7048:7;7075:11;:18;7087:5;7075:18;;;;;;;;;;;;;;;:27;7094:7;7075:27;;;;;;;;;;;;;;;;7068:34;;6942:168;;;;:::o;5864:19::-;;;;;;;;;;;;;:::o;5050:228::-;4886:12;:10;:12::i;:::-;4875:23;;:7;:5;:7::i;:::-;:23;;;4867:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5151:1:::1;5131:22;;:8;:22;;::::0;5123:65:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5233:8;5204:38;;5225:6;::::0;::::1;;;;;;;;5204:38;;;;;;;;;;;;5262:8;5253:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;5050:228:::0;:::o;3730:98::-;3783:7;3810:10;3803:17;;3730:98;:::o;9324:343::-;9434:1;9417:19;;:5;:19;;;9409:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9518:1;9499:21;;:7;:21;;;9491:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9605:6;9575:11;:18;9587:5;9575:18;;;;;;;;;;;;;;;:27;9594:7;9575:27;;;;;;;;;;;;;;;:36;;;;9643:7;9627:32;;9636:5;9627:32;;;9652:6;9627:32;;;;;;:::i;:::-;;;;;;;;9324:343;;;:::o;10365:707::-;10469:1;10453:18;;:4;:18;;;10445:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10549:1;10535:16;;:2;:16;;;10527:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;10622:1;10613:6;:10;10605:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;10701:9;:15;10711:4;10701:15;;;;;;;;;;;;;;;;;;;;;;;;;10700:16;:34;;;;;10721:9;:13;10731:2;10721:13;;;;;;;;;;;;;;;;;;;;;;;;;10720:14;10700:34;10696:120;;;10759:7;;;;;;;;;;;10751:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;10696:120;10828:21;10852:9;:15;10862:4;10852:15;;;;;;;;;;;;;;;;10828:39;;10903:6;10886:13;:23;;10878:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10980:6;10961:9;:15;10971:4;10961:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;11014:6;10997:9;:13;11007:2;10997:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;11053:2;11038:26;;11047:4;11038:26;;;11057:6;11038:26;;;;;;:::i;:::-;;;;;;;;10434:638;10365:707;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:116::-;4923:21;4938:5;4923:21;:::i;:::-;4916:5;4913:32;4903:60;;4959:1;4956;4949:12;4903:60;4853:116;:::o;4975:133::-;5018:5;5056:6;5043:20;5034:29;;5072:30;5096:5;5072:30;:::i;:::-;4975:133;;;;:::o;5114:468::-;5179:6;5187;5236:2;5224:9;5215:7;5211:23;5207:32;5204:119;;;5242:79;;:::i;:::-;5204:119;5362:1;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5333:117;5489:2;5515:50;5557:7;5548:6;5537:9;5533:22;5515:50;:::i;:::-;5505:60;;5460:115;5114:468;;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:118::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5923:118;;:::o;6047:222::-;6140:4;6178:2;6167:9;6163:18;6155:26;;6191:71;6259:1;6248:9;6244:17;6235:6;6191:71;:::i;:::-;6047:222;;;;:::o;6275:474::-;6343:6;6351;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:53;6596:7;6587:6;6576:9;6572:22;6551:53;:::i;:::-;6541:63;;6497:117;6653:2;6679:53;6724:7;6715:6;6704:9;6700:22;6679:53;:::i;:::-;6669:63;;6624:118;6275:474;;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:320;6985:6;7022:1;7016:4;7012:12;7002:22;;7069:1;7063:4;7059:12;7090:18;7080:81;;7146:4;7138:6;7134:17;7124:27;;7080:81;7208:2;7200:6;7197:14;7177:18;7174:38;7171:84;;7227:18;;:::i;:::-;7171:84;6992:269;6941:320;;;:::o;7267:180::-;7315:77;7312:1;7305:88;7412:4;7409:1;7402:15;7436:4;7433:1;7426:15;7453:194;7493:4;7513:20;7531:1;7513:20;:::i;:::-;7508:25;;7547:20;7565:1;7547:20;:::i;:::-;7542:25;;7591:1;7588;7584:9;7576:17;;7615:1;7609:4;7606:11;7603:37;;;7620:18;;:::i;:::-;7603:37;7453:194;;;;:::o;7653:191::-;7693:3;7712:20;7730:1;7712:20;:::i;:::-;7707:25;;7746:20;7764:1;7746:20;:::i;:::-;7741:25;;7789:1;7786;7782:9;7775:16;;7810:3;7807:1;7804:10;7801:36;;;7817:18;;:::i;:::-;7801:36;7653:191;;;;:::o;7850:182::-;7990:34;7986:1;7978:6;7974:14;7967:58;7850:182;:::o;8038:366::-;8180:3;8201:67;8265:2;8260:3;8201:67;:::i;:::-;8194:74;;8277:93;8366:3;8277:93;:::i;:::-;8395:2;8390:3;8386:12;8379:19;;8038:366;;;:::o;8410:419::-;8576:4;8614:2;8603:9;8599:18;8591:26;;8663:9;8657:4;8653:20;8649:1;8638:9;8634:17;8627:47;8691:131;8817:4;8691:131;:::i;:::-;8683:139;;8410:419;;;:::o;8835:227::-;8975:34;8971:1;8963:6;8959:14;8952:58;9044:10;9039:2;9031:6;9027:15;9020:35;8835:227;:::o;9068:366::-;9210:3;9231:67;9295:2;9290:3;9231:67;:::i;:::-;9224:74;;9307:93;9396:3;9307:93;:::i;:::-;9425:2;9420:3;9416:12;9409:19;;9068:366;;;:::o;9440:419::-;9606:4;9644:2;9633:9;9629:18;9621:26;;9693:9;9687:4;9683:20;9679:1;9668:9;9664:17;9657:47;9721:131;9847:4;9721:131;:::i;:::-;9713:139;;9440:419;;;:::o;9865:231::-;10005:34;10001:1;9993:6;9989:14;9982:58;10074:14;10069:2;10061:6;10057:15;10050:39;9865:231;:::o;10102:366::-;10244:3;10265:67;10329:2;10324:3;10265:67;:::i;:::-;10258:74;;10341:93;10430:3;10341:93;:::i;:::-;10459:2;10454:3;10450:12;10443:19;;10102:366;;;:::o;10474:419::-;10640:4;10678:2;10667:9;10663:18;10655:26;;10727:9;10721:4;10717:20;10713:1;10702:9;10698:17;10691:47;10755:131;10881:4;10755:131;:::i;:::-;10747:139;;10474:419;;;:::o;10899:180::-;11039:32;11035:1;11027:6;11023:14;11016:56;10899:180;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:419::-;11623:4;11661:2;11650:9;11646:18;11638:26;;11710:9;11704:4;11700:20;11696:1;11685:9;11681:17;11674:47;11738:131;11864:4;11738:131;:::i;:::-;11730:139;;11457:419;;;:::o;11882:226::-;12022:34;12018:1;12010:6;12006:14;11999:58;12091:9;12086:2;12078:6;12074:15;12067:34;11882:226;:::o;12114:366::-;12256:3;12277:67;12341:2;12336:3;12277:67;:::i;:::-;12270:74;;12353:93;12442:3;12353:93;:::i;:::-;12471:2;12466:3;12462:12;12455:19;;12114:366;;;:::o;12486:419::-;12652:4;12690:2;12679:9;12675:18;12667:26;;12739:9;12733:4;12729:20;12725:1;12714:9;12710:17;12703:47;12767:131;12893:4;12767:131;:::i;:::-;12759:139;;12486:419;;;:::o;12911:224::-;13051:34;13047:1;13039:6;13035:14;13028:58;13120:7;13115:2;13107:6;13103:15;13096:32;12911:224;:::o;13141:366::-;13283:3;13304:67;13368:2;13363:3;13304:67;:::i;:::-;13297:74;;13380:93;13469:3;13380:93;:::i;:::-;13498:2;13493:3;13489:12;13482:19;;13141:366;;;:::o;13513:419::-;13679:4;13717:2;13706:9;13702:18;13694:26;;13766:9;13760:4;13756:20;13752:1;13741:9;13737:17;13730:47;13794:131;13920:4;13794:131;:::i;:::-;13786:139;;13513:419;;;:::o;13938:227::-;14078:34;14074:1;14066:6;14062:14;14055:58;14147:10;14142:2;14134:6;14130:15;14123:35;13938:227;:::o;14171:366::-;14313:3;14334:67;14398:2;14393:3;14334:67;:::i;:::-;14327:74;;14410:93;14499:3;14410:93;:::i;:::-;14528:2;14523:3;14519:12;14512:19;;14171:366;;;:::o;14543:419::-;14709:4;14747:2;14736:9;14732:18;14724:26;;14796:9;14790:4;14786:20;14782:1;14771:9;14767:17;14760:47;14824:131;14950:4;14824:131;:::i;:::-;14816:139;;14543:419;;;:::o;14968:225::-;15108:34;15104:1;15096:6;15092:14;15085:58;15177:8;15172:2;15164:6;15160:15;15153:33;14968:225;:::o;15199:366::-;15341:3;15362:67;15426:2;15421:3;15362:67;:::i;:::-;15355:74;;15438:93;15527:3;15438:93;:::i;:::-;15556:2;15551:3;15547:12;15540:19;;15199:366;;;:::o;15571:419::-;15737:4;15775:2;15764:9;15760:18;15752:26;;15824:9;15818:4;15814:20;15810:1;15799:9;15795:17;15788:47;15852:131;15978:4;15852:131;:::i;:::-;15844:139;;15571:419;;;:::o;15996:242::-;16136:34;16132:1;16124:6;16120:14;16113:58;16205:25;16200:2;16192:6;16188:15;16181:50;15996:242;:::o;16244:366::-;16386:3;16407:67;16471:2;16466:3;16407:67;:::i;:::-;16400:74;;16483:93;16572:3;16483:93;:::i;:::-;16601:2;16596:3;16592:12;16585:19;;16244:366;;;:::o;16616:419::-;16782:4;16820:2;16809:9;16805:18;16797:26;;16869:9;16863:4;16859:20;16855:1;16844:9;16840:17;16833:47;16897:131;17023:4;16897:131;:::i;:::-;16889:139;;16616:419;;;:::o;17041:220::-;17181:34;17177:1;17169:6;17165:14;17158:58;17250:3;17245:2;17237:6;17233:15;17226:28;17041:220;:::o;17267:366::-;17409:3;17430:67;17494:2;17489:3;17430:67;:::i;:::-;17423:74;;17506:93;17595:3;17506:93;:::i;:::-;17624:2;17619:3;17615:12;17608:19;;17267:366;;;:::o;17639:419::-;17805:4;17843:2;17832:9;17828:18;17820:26;;17892:9;17886:4;17882:20;17878:1;17867:9;17863:17;17856:47;17920:131;18046:4;17920:131;:::i;:::-;17912:139;;17639:419;;;:::o;18064:221::-;18204:34;18200:1;18192:6;18188:14;18181:58;18273:4;18268:2;18260:6;18256:15;18249:29;18064:221;:::o;18291:366::-;18433:3;18454:67;18518:2;18513:3;18454:67;:::i;:::-;18447:74;;18530:93;18619:3;18530:93;:::i;:::-;18648:2;18643:3;18639:12;18632:19;;18291:366;;;:::o;18663:419::-;18829:4;18867:2;18856:9;18852:18;18844:26;;18916:9;18910:4;18906:20;18902:1;18891:9;18887:17;18880:47;18944:131;19070:4;18944:131;:::i;:::-;18936:139;;18663:419;;;:::o

Swarm Source

ipfs://7155211ad39cf2fc12a1d87f52b03eb7efc32201b3857f3472f6d0bfa46d56b3

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Lightchain AI introduces Proof of Intelligence (PoI), a revolutionary consensus mechanism designed to reward nodes for performing valuable AI computations, such as model training, inference, and optimization tasks.

0x9cA8530CA349c966Fe9ef903Df17a75B8A778927
Net Worth in USD
$6,934.10

Net Worth in ETH
3.423729

Token Allocations
ETH 55.52%
USDT 32.89%
USDC 5.73%
Others 5.86%
Chain Token Portfolio % Price Amount Value
ETH32.89%$0.9993682,282.0489$2,280.61
ETH4.22%$0.999742293$292.92
ETH1.23%$66,973.590.00127315$85.27
ETH0.09%$0.0000061,006,114.5482$5.96
BSC28.65%$2,025.210.9809$1,986.48
BSC4.33%$0.999324300.203$300
BSC0.15%$616.590.0165$10.19
BSC0.03%$0.000683,562$2.42
BASE26.51%$2,025.260.9077$1,838.26
BASE1.51%$0.99968104.3955$104.36
ARB0.35%$2,025.850.012$24.34
BLAST0.03%$0.002906828.4428$2.41
OP<0.01%$2,025.840.0003$0.607753
WORLD<0.01%$0.2721211$0.2721
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.