ETH Price: $3,308.49 (-3.25%)
Gas: 14 Gwei

Token

Lilith (LLTH)
 

Overview

Max Total Supply

1,010,000.00000000000000521 LLTH

Holders

98

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
world420.eth
Balance
565.111724218177160867 LLTH

Value
$0.00
0xeafb33a7864d0166ae77d4223c5b87d5ee58b1fd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LLTH

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 7: LLTH.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

import "./Ownable.sol";
import "./SafeMath.sol";
import "./ERC20.sol";

contract LLTH is ERC20, Ownable {
    mapping(address => bool) public managers;

    constructor() ERC20("Lilith", "LLTH") {
        managers[owner()] = true;
        _mint(owner(), 1000000 * (10**18));
    }

    /**@dev Allows execution by managers only */
    modifier managerOnly() {
        require(managers[msg.sender]);
        _;
    }

    /**@dev Be careful setting new manager, recheck the address */
    function setManager(address manager, bool state) external onlyOwner {
        managers[manager] = state;
    }

    /**@dev External mint for l1-l2 affairs */
    function mint(address user, uint256 amount) external managerOnly {
        _mint(user, amount);
    }

    /**@dev External burn for l1-l2 affairs */
    function burn(address user, uint256 amount) public managerOnly {
        _burn(user, amount);
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

File 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.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 Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

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

File 7 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"managers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"manager","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040805180820182526006815265098d2d8d2e8d60d31b60208083019182528351808501909452600484526309898a8960e31b9084015281519192916200005c916003916200023c565b508051620000729060049060208401906200023c565b5050506200008f62000089620000fe60201b60201c565b62000102565b600160066000620000a86005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620000f8620000e76005546001600160a01b031690565b69d3c21bcecceda100000062000154565b62000346565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001af5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001c39190620002e2565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f2908490620002e2565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200024a9062000309565b90600052602060002090601f0160209004810192826200026e5760008555620002b9565b82601f106200028957805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b95782518255916020019190600101906200029c565b50620002c7929150620002cb565b5090565b5b80821115620002c75760008155600101620002cc565b600082198211156200030457634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200031e57607f821691505b602082108114156200034057634e487b7160e01b600052602260045260246000fd5b50919050565b610e4380620003566000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a5e90eee11610071578063a5e90eee14610232578063a9059cbb14610245578063dd62ed3e14610258578063f2fde38b14610291578063fdff9b4d146102a457600080fd5b80638da5cb5b146101e957806395d89b41146102045780639dc29fac1461020c578063a457c2d71461021f57600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806340c10f19146101a357806370a08231146101b8578063715018a6146101e157600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c7565b6040516101309190610d03565b60405180910390f35b61014c610147366004610cd9565b610359565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c61565b61036f565b60405160128152602001610130565b61014c61019e366004610cd9565b61041e565b6101b66101b1366004610cd9565b61045a565b005b6101606101c6366004610c0c565b6001600160a01b031660009081526020819052604090205490565b6101b6610484565b6005546040516001600160a01b039091168152602001610130565b6101236104ba565b6101b661021a366004610cd9565b6104c9565b61014c61022d366004610cd9565b6104ef565b6101b6610240366004610c9d565b610588565b61014c610253366004610cd9565b6105dd565b610160610266366004610c2e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b661029f366004610c0c565b6105ea565b61014c6102b2366004610c0c565b60066020526000908152604090205460ff1681565b6060600380546102d690610dbc565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610dbc565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000610366338484610685565b50600192915050565b600061037c8484846107aa565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104065760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104138533858403610685565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610366918590610455908690610d8d565b610685565b3360009081526006602052604090205460ff1661047657600080fd5b6104808282610979565b5050565b6005546001600160a01b031633146104ae5760405162461bcd60e51b81526004016103fd90610d58565b6104b86000610a58565b565b6060600480546102d690610dbc565b3360009081526006602052604090205460ff166104e557600080fd5b6104808282610aaa565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fd565b61057e3385858403610685565b5060019392505050565b6005546001600160a01b031633146105b25760405162461bcd60e51b81526004016103fd90610d58565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60006103663384846107aa565b6005546001600160a01b031633146106145760405162461bcd60e51b81526004016103fd90610d58565b6001600160a01b0381166106795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fd565b61068281610a58565b50565b6001600160a01b0383166106e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fd565b6001600160a01b0382166107485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661080e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fd565b6001600160a01b0382166108705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fd565b6001600160a01b038316600090815260208190526040902054818110156108e85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fd565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061091f908490610d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096b91815260200190565b60405180910390a350505050565b6001600160a01b0382166109cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fd565b80600260008282546109e19190610d8d565b90915550506001600160a01b03821660009081526020819052604081208054839290610a0e908490610d8d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610b0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fd565b6001600160a01b03821660009081526020819052604090205481811015610b7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fd565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610bad908490610da5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161079d565b80356001600160a01b0381168114610c0757600080fd5b919050565b600060208284031215610c1e57600080fd5b610c2782610bf0565b9392505050565b60008060408385031215610c4157600080fd5b610c4a83610bf0565b9150610c5860208401610bf0565b90509250929050565b600080600060608486031215610c7657600080fd5b610c7f84610bf0565b9250610c8d60208501610bf0565b9150604084013590509250925092565b60008060408385031215610cb057600080fd5b610cb983610bf0565b915060208301358015158114610cce57600080fd5b809150509250929050565b60008060408385031215610cec57600080fd5b610cf583610bf0565b946020939093013593505050565b600060208083528351808285015260005b81811015610d3057858101830151858201604001528201610d14565b81811115610d42576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610da057610da0610df7565b500190565b600082821015610db757610db7610df7565b500390565b600181811c90821680610dd057607f821691505b60208210811415610df157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122079b22036fd111dd06d5b97b8c4e08cbe5dede55bd509edc325ad0179fa25426c64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a5e90eee11610071578063a5e90eee14610232578063a9059cbb14610245578063dd62ed3e14610258578063f2fde38b14610291578063fdff9b4d146102a457600080fd5b80638da5cb5b146101e957806395d89b41146102045780639dc29fac1461020c578063a457c2d71461021f57600080fd5b8063313ce567116100e9578063313ce56714610181578063395093511461019057806340c10f19146101a357806370a08231146101b8578063715018a6146101e157600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b6101236102c7565b6040516101309190610d03565b60405180910390f35b61014c610147366004610cd9565b610359565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610c61565b61036f565b60405160128152602001610130565b61014c61019e366004610cd9565b61041e565b6101b66101b1366004610cd9565b61045a565b005b6101606101c6366004610c0c565b6001600160a01b031660009081526020819052604090205490565b6101b6610484565b6005546040516001600160a01b039091168152602001610130565b6101236104ba565b6101b661021a366004610cd9565b6104c9565b61014c61022d366004610cd9565b6104ef565b6101b6610240366004610c9d565b610588565b61014c610253366004610cd9565b6105dd565b610160610266366004610c2e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b661029f366004610c0c565b6105ea565b61014c6102b2366004610c0c565b60066020526000908152604090205460ff1681565b6060600380546102d690610dbc565b80601f016020809104026020016040519081016040528092919081815260200182805461030290610dbc565b801561034f5780601f106103245761010080835404028352916020019161034f565b820191906000526020600020905b81548152906001019060200180831161033257829003601f168201915b5050505050905090565b6000610366338484610685565b50600192915050565b600061037c8484846107aa565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104065760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104138533858403610685565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610366918590610455908690610d8d565b610685565b3360009081526006602052604090205460ff1661047657600080fd5b6104808282610979565b5050565b6005546001600160a01b031633146104ae5760405162461bcd60e51b81526004016103fd90610d58565b6104b86000610a58565b565b6060600480546102d690610dbc565b3360009081526006602052604090205460ff166104e557600080fd5b6104808282610aaa565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105715760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103fd565b61057e3385858403610685565b5060019392505050565b6005546001600160a01b031633146105b25760405162461bcd60e51b81526004016103fd90610d58565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60006103663384846107aa565b6005546001600160a01b031633146106145760405162461bcd60e51b81526004016103fd90610d58565b6001600160a01b0381166106795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103fd565b61068281610a58565b50565b6001600160a01b0383166106e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103fd565b6001600160a01b0382166107485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103fd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661080e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103fd565b6001600160a01b0382166108705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103fd565b6001600160a01b038316600090815260208190526040902054818110156108e85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103fd565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061091f908490610d8d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096b91815260200190565b60405180910390a350505050565b6001600160a01b0382166109cf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103fd565b80600260008282546109e19190610d8d565b90915550506001600160a01b03821660009081526020819052604081208054839290610a0e908490610d8d565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610b0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103fd565b6001600160a01b03821660009081526020819052604090205481811015610b7e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103fd565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610bad908490610da5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161079d565b80356001600160a01b0381168114610c0757600080fd5b919050565b600060208284031215610c1e57600080fd5b610c2782610bf0565b9392505050565b60008060408385031215610c4157600080fd5b610c4a83610bf0565b9150610c5860208401610bf0565b90509250929050565b600080600060608486031215610c7657600080fd5b610c7f84610bf0565b9250610c8d60208501610bf0565b9150604084013590509250925092565b60008060408385031215610cb057600080fd5b610cb983610bf0565b915060208301358015158114610cce57600080fd5b809150509250929050565b60008060408385031215610cec57600080fd5b610cf583610bf0565b946020939093013593505050565b600060208083528351808285015260005b81811015610d3057858101830151858201604001528201610d14565b81811115610d42576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610da057610da0610df7565b500190565b600082821015610db757610db7610df7565b500390565b600181811c90821680610dd057607f821691505b60208210811415610df157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122079b22036fd111dd06d5b97b8c4e08cbe5dede55bd509edc325ad0179fa25426c64736f6c63430008070033

Deployed Bytecode Sourcemap

135:862:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4160:166;;;;;;:::i;:::-;;:::i;:::-;;;1965:14:7;;1958:22;1940:41;;1928:2;1913:18;4160:166:1;1800:187:7;3151:106:1;3238:12;;3151:106;;;7513:25:7;;;7501:2;7486:18;3151:106:1;7367:177:7;4793:478:1;;;;;;:::i;:::-;;:::i;3000:91::-;;;3082:2;7691:36:7;;7679:2;7664:18;3000:91:1;7549:184:7;5666:212:1;;;;;;:::i;:::-;;:::i;734:103:4:-;;;;;;:::i;:::-;;:::i;:::-;;3315:125:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3415:18:1;3389:7;3415:18;;;;;;;;;;;;3315:125;1598:92:5;;;:::i;966:85::-;1038:6;;966:85;;-1:-1:-1;;;;;1038:6:5;;;1738:51:7;;1726:2;1711:18;966:85:5;1592:203:7;2274:102:1;;;:::i;893:101:4:-;;;;;;:::i;:::-;;:::i;6365:405:1:-;;;;;;:::i;:::-;;:::i;566:112:4:-;;;;;;:::i;:::-;;:::i;3643:172:1:-;;;;;;:::i;:::-;;:::i;3873:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3988:18:1;;;3962:7;3988:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3873:149;1839:189:5;;;;;;:::i;:::-;;:::i;174:40:4:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2063:98:1;2117:13;2149:5;2142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2063:98;:::o;4160:166::-;4243:4;4259:39;682:10:0;4282:7:1;4291:6;4259:8;:39::i;:::-;-1:-1:-1;4315:4:1;4160:166;;;;:::o;4793:478::-;4929:4;4945:36;4955:6;4963:9;4974:6;4945:9;:36::i;:::-;-1:-1:-1;;;;;5019:19:1;;4992:24;5019:19;;;:11;:19;;;;;;;;682:10:0;5019:33:1;;;;;;;;5070:26;;;;5062:79;;;;-1:-1:-1;;;5062:79:1;;4820:2:7;5062:79:1;;;4802:21:7;4859:2;4839:18;;;4832:30;4898:34;4878:18;;;4871:62;-1:-1:-1;;;4949:18:7;;;4942:38;4997:19;;5062:79:1;;;;;;;;;5175:57;5184:6;682:10:0;5225:6:1;5206:16;:25;5175:8;:57::i;:::-;-1:-1:-1;5260:4:1;;4793:478;-1:-1:-1;;;;4793:478:1:o;5666:212::-;682:10:0;5754:4:1;5802:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5802:34:1;;;;;;;;;;5754:4;;5770:80;;5793:7;;5802:47;;5839:10;;5802:47;:::i;:::-;5770:8;:80::i;734:103:4:-;458:10;449:20;;;;:8;:20;;;;;;;;441:29;;;;;;810:19:::1;816:4;822:6;810:5;:19::i;:::-;734:103:::0;;:::o;1598:92:5:-;1038:6;;-1:-1:-1;;;;;1038:6:5;682:10:0;1178:23:5;1170:68;;;;-1:-1:-1;;;1170:68:5;;;;;;;:::i;:::-;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2274:102:1:-;2330:13;2362:7;2355:14;;;;;:::i;893:101:4:-;458:10;449:20;;;;:8;:20;;;;;;;;441:29;;;;;;967:19:::1;973:4;979:6;967:5;:19::i;6365:405:1:-:0;682:10:0;6458:4:1;6501:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6501:34:1;;;;;;;;;;6553:35;;;;6545:85;;;;-1:-1:-1;;;6545:85:1;;6803:2:7;6545:85:1;;;6785:21:7;6842:2;6822:18;;;6815:30;6881:34;6861:18;;;6854:62;-1:-1:-1;;;6932:18:7;;;6925:35;6977:19;;6545:85:1;6601:401:7;6545:85:1;6664:67;682:10:0;6687:7:1;6715:15;6696:16;:34;6664:8;:67::i;:::-;-1:-1:-1;6759:4:1;;6365:405;-1:-1:-1;;;6365:405:1:o;566:112:4:-;1038:6:5;;-1:-1:-1;;;;;1038:6:5;682:10:0;1178:23:5;1170:68;;;;-1:-1:-1;;;1170:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;645:17:4;;;::::1;;::::0;;;:8:::1;:17;::::0;;;;:25;;-1:-1:-1;;645:25:4::1;::::0;::::1;;::::0;;;::::1;::::0;;566:112::o;3643:172:1:-;3729:4;3745:42;682:10:0;3769:9:1;3780:6;3745:9;:42::i;1839:189:5:-;1038:6;;-1:-1:-1;;;;;1038:6:5;682:10:0;1178:23:5;1170:68;;;;-1:-1:-1;;;1170:68:5;;;;;;;:::i;:::-;-1:-1:-1;;;;;1927:22:5;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:5;;3603:2:7;1919:73:5::1;::::0;::::1;3585:21:7::0;3642:2;3622:18;;;3615:30;3681:34;3661:18;;;3654:62;-1:-1:-1;;;3732:18:7;;;3725:36;3778:19;;1919:73:5::1;3401:402:7::0;1919:73:5::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;9941:370:1:-;-1:-1:-1;;;;;10072:19:1;;10064:68;;;;-1:-1:-1;;;10064:68:1;;6398:2:7;10064:68:1;;;6380:21:7;6437:2;6417:18;;;6410:30;6476:34;6456:18;;;6449:62;-1:-1:-1;;;6527:18:7;;;6520:34;6571:19;;10064:68:1;6196:400:7;10064:68:1;-1:-1:-1;;;;;10150:21:1;;10142:68;;;;-1:-1:-1;;;10142:68:1;;4010:2:7;10142:68:1;;;3992:21:7;4049:2;4029:18;;;4022:30;4088:34;4068:18;;;4061:62;-1:-1:-1;;;4139:18:7;;;4132:32;4181:19;;10142:68:1;3808:398:7;10142:68:1;-1:-1:-1;;;;;10221:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10272:32;;7513:25:7;;;10272:32:1;;7486:18:7;10272:32:1;;;;;;;;9941:370;;;:::o;7244:713::-;-1:-1:-1;;;;;7379:20:1;;7371:70;;;;-1:-1:-1;;;7371:70:1;;5992:2:7;7371:70:1;;;5974:21:7;6031:2;6011:18;;;6004:30;6070:34;6050:18;;;6043:62;-1:-1:-1;;;6121:18:7;;;6114:35;6166:19;;7371:70:1;5790:401:7;7371:70:1;-1:-1:-1;;;;;7459:23:1;;7451:71;;;;-1:-1:-1;;;7451:71:1;;2796:2:7;7451:71:1;;;2778:21:7;2835:2;2815:18;;;2808:30;2874:34;2854:18;;;2847:62;-1:-1:-1;;;2925:18:7;;;2918:33;2968:19;;7451:71:1;2594:399:7;7451:71:1;-1:-1:-1;;;;;7615:17:1;;7591:21;7615:17;;;;;;;;;;;7650:23;;;;7642:74;;;;-1:-1:-1;;;7642:74:1;;4413:2:7;7642:74:1;;;4395:21:7;4452:2;4432:18;;;4425:30;4491:34;4471:18;;;4464:62;-1:-1:-1;;;4542:18:7;;;4535:36;4588:19;;7642:74:1;4211:402:7;7642:74:1;-1:-1:-1;;;;;7750:17:1;;;:9;:17;;;;;;;;;;;7770:22;;;7750:42;;7812:20;;;;;;;;:30;;7786:6;;7750:9;7812:30;;7786:6;;7812:30;:::i;:::-;;;;;;;;7875:9;-1:-1:-1;;;;;7858:35:1;7867:6;-1:-1:-1;;;;;7858:35:1;;7886:6;7858:35;;;;7513:25:7;;7501:2;7486:18;;7367:177;7858:35:1;;;;;;;;7361:596;7244:713;;;:::o;8233:389::-;-1:-1:-1;;;;;8316:21:1;;8308:65;;;;-1:-1:-1;;;8308:65:1;;7209:2:7;8308:65:1;;;7191:21:7;7248:2;7228:18;;;7221:30;7287:33;7267:18;;;7260:61;7338:18;;8308:65:1;7007:355:7;8308:65:1;8460:6;8444:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8476:18:1;;:9;:18;;;;;;;;;;:28;;8498:6;;8476:9;:28;;8498:6;;8476:28;:::i;:::-;;;;-1:-1:-1;;8519:37:1;;7513:25:7;;;-1:-1:-1;;;;;8519:37:1;;;8536:1;;8519:37;;7501:2:7;7486:18;8519:37:1;;;;;;;734:103:4;;:::o;2034:169:5:-;2108:6;;;-1:-1:-1;;;;;2124:17:5;;;-1:-1:-1;;;;;;2124:17:5;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;8942:576:1:-;-1:-1:-1;;;;;9025:21:1;;9017:67;;;;-1:-1:-1;;;9017:67:1;;5590:2:7;9017:67:1;;;5572:21:7;5629:2;5609:18;;;5602:30;5668:34;5648:18;;;5641:62;-1:-1:-1;;;5719:18:7;;;5712:31;5760:19;;9017:67:1;5388:397:7;9017:67:1;-1:-1:-1;;;;;9180:18:1;;9155:22;9180:18;;;;;;;;;;;9216:24;;;;9208:71;;;;-1:-1:-1;;;9208:71:1;;3200:2:7;9208:71:1;;;3182:21:7;3239:2;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;-1:-1:-1;;;3329:18:7;;;3322:32;3371:19;;9208:71:1;2998:398:7;9208:71:1;-1:-1:-1;;;;;9313:18:1;;:9;:18;;;;;;;;;;9334:23;;;9313:44;;9377:12;:22;;9351:6;;9313:9;9377:22;;9351:6;;9377:22;:::i;:::-;;;;-1:-1:-1;;9415:37:1;;7513:25:7;;;9441:1:1;;-1:-1:-1;;;;;9415:37:1;;;;;7501:2:7;7486:18;9415:37:1;7367:177:7;14:173;82:20;;-1:-1:-1;;;;;131:31:7;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:7:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:347::-;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1146:29;1165:9;1146:29;:::i;:::-;1136:39;;1225:2;1214:9;1210:18;1197:32;1272:5;1265:13;1258:21;1251:5;1248:32;1238:60;;1294:1;1291;1284:12;1238:60;1317:5;1307:15;;;981:347;;;;;:::o;1333:254::-;1401:6;1409;1462:2;1450:9;1441:7;1437:23;1433:32;1430:52;;;1478:1;1475;1468:12;1430:52;1501:29;1520:9;1501:29;:::i;:::-;1491:39;1577:2;1562:18;;;;1549:32;;-1:-1:-1;;;1333:254:7:o;1992:597::-;2104:4;2133:2;2162;2151:9;2144:21;2194:6;2188:13;2237:6;2232:2;2221:9;2217:18;2210:34;2262:1;2272:140;2286:6;2283:1;2280:13;2272:140;;;2381:14;;;2377:23;;2371:30;2347:17;;;2366:2;2343:26;2336:66;2301:10;;2272:140;;;2430:6;2427:1;2424:13;2421:91;;;2500:1;2495:2;2486:6;2475:9;2471:22;2467:31;2460:42;2421:91;-1:-1:-1;2573:2:7;2552:15;-1:-1:-1;;2548:29:7;2533:45;;;;2580:2;2529:54;;1992:597;-1:-1:-1;;;1992:597:7:o;5027:356::-;5229:2;5211:21;;;5248:18;;;5241:30;5307:34;5302:2;5287:18;;5280:62;5374:2;5359:18;;5027:356::o;7738:128::-;7778:3;7809:1;7805:6;7802:1;7799:13;7796:39;;;7815:18;;:::i;:::-;-1:-1:-1;7851:9:7;;7738:128::o;7871:125::-;7911:4;7939:1;7936;7933:8;7930:34;;;7944:18;;:::i;:::-;-1:-1:-1;7981:9:7;;7871:125::o;8001:380::-;8080:1;8076:12;;;;8123;;;8144:61;;8198:4;8190:6;8186:17;8176:27;;8144:61;8251:2;8243:6;8240:14;8220:18;8217:38;8214:161;;;8297:10;8292:3;8288:20;8285:1;8278:31;8332:4;8329:1;8322:15;8360:4;8357:1;8350:15;8214:161;;8001:380;;;:::o;8386:127::-;8447:10;8442:3;8438:20;8435:1;8428:31;8478:4;8475:1;8468:15;8502:4;8499:1;8492:15

Swarm Source

ipfs://79b22036fd111dd06d5b97b8c4e08cbe5dede55bd509edc325ad0179fa25426c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.