ETH Price: $3,404.67 (-7.77%)

Token

lifedog (LFDOG)
 

Overview

Max Total Supply

951,999,999.999999999999999967 LFDOG

Holders

2,630 ( -0.076%)

Market

Price

$0.01 @ 0.000002 ETH (-35.15%)

Onchain Market Cap

$7,533,690.08

Circulating Supply Market Cap

$7,515,606.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
13.645613785317649006 LFDOG

Value
$0.11 ( ~3.23085833953814E-05 Eth) [0.0000%]
0x40D27aE5edcDA2B3A27EdbBABe57367f6D14c84F
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:
Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: Token.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

import "ERC20.sol";
import "IERC20.sol";
import "Ownable.sol";

import "ITokenSaleFactoryMin.sol";

contract Token is Ownable, ERC20 {

    ITokenSaleFactoryMin internal immutable _tokenSaleFactory;
    mapping(address => bool) internal _restrictedAddresses;

    constructor(string memory name_, string memory symbol_, uint256 initSupply) ERC20(name_, symbol_) {
        _tokenSaleFactory = ITokenSaleFactoryMin(msg.sender);
        _mint(msg.sender, initSupply);
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        if (to == address(0)) {
            _burn(owner, amount);
        } else {
            _transfer(owner, to, amount);
        }
        return true;
    }

    function addRestricted(address[] calldata restrictedAddresses) external onlyOwner {
        for (uint256 i = 0; i < restrictedAddresses.length; i++) {
            _restrictedAddresses[restrictedAddresses[i]] = true;
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        if (!_tokenSaleFactory.isFinished(address(this))) {
            require(!_restrictedAddresses[from] && !_restrictedAddresses[to], "TSF: tokensale didn't finished yet");

            if (from != address(_tokenSaleFactory) && to != address(_tokenSaleFactory)) {
                _tokenSaleFactory.onTransfer(from, amount);
            }
        }
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
        // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
        // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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 5 of 7: ITokenSaleFactoryMin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

interface ITokenSaleFactoryMin {
    function isFinished(address token) external view returns (bool);
    function onTransfer(address from, uint256 amount) external;
}

File 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initSupply","type":"uint256"}],"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":"restrictedAddresses","type":"address[]"}],"name":"addRestricted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]

60a06040523480156200001157600080fd5b506040516200157738038062001577833981016040819052620000349162000425565b828262000041336200007c565b60046200004f838262000526565b5060056200005e828262000526565b505033608081905262000073915082620000cc565b50505062000645565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001285760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200013660008383620001a3565b80600360008282546200014a9190620005f2565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60805160405163a93c11cd60e01b81523060048201526001600160a01b039091169063a93c11cd90602401602060405180830381865afa158015620001ec573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021291906200061a565b6200035b576001600160a01b03831660009081526006602052604090205460ff161580156200025a57506001600160a01b03821660009081526006602052604090205460ff16155b620002b35760405162461bcd60e51b815260206004820152602260248201527f5453463a20746f6b656e73616c65206469646e27742066696e69736865642079604482015261195d60f21b60648201526084016200011f565b6080516001600160a01b0316836001600160a01b031614158015620002ec57506080516001600160a01b0316826001600160a01b031614155b156200035b57608051604051633a07a6d960e21b81526001600160a01b038581166004830152602482018490529091169063e81e9b6490604401600060405180830381600087803b1580156200034157600080fd5b505af115801562000356573d6000803e3d6000fd5b505050505b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200038857600080fd5b81516001600160401b0380821115620003a557620003a562000360565b604051601f8301601f19908116603f01168101908282118183101715620003d057620003d062000360565b81604052838152602092508683858801011115620003ed57600080fd5b600091505b83821015620004115785820183015181830184015290820190620003f2565b600093810190920192909252949350505050565b6000806000606084860312156200043b57600080fd5b83516001600160401b03808211156200045357600080fd5b620004618783880162000376565b945060208601519150808211156200047857600080fd5b50620004878682870162000376565b925050604084015190509250925092565b600181811c90821680620004ad57607f821691505b602082108103620004ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035b57600081815260208120601f850160051c81016020861015620004fd5750805b601f850160051c820191505b818110156200051e5782815560010162000509565b505050505050565b81516001600160401b0381111562000542576200054262000360565b6200055a8162000553845462000498565b84620004d4565b602080601f831160018114620005925760008415620005795750858301515b600019600386901b1c1916600185901b1785556200051e565b600085815260208120601f198616915b82811015620005c357888601518255948401946001909101908401620005a2565b5085821015620005e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200061457634e487b7160e01b600052601160045260246000fd5b92915050565b6000602082840312156200062d57600080fd5b815180151581146200063e57600080fd5b9392505050565b608051610f016200067660003960008181610a6d01528181610b7f01528181610bbc0152610c1c0152610f016000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461022457600080fd5b8063715018a6146101ab5780638da5cb5b146101b557806395d89b41146101d057806399f85c22146101d857600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806370a082311461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610237565b60405161010f9190610c7d565b60405180910390f35b61012b610126366004610ce7565b6102c9565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610d11565b6102e3565b6040516012815260200161010f565b61012b61017d366004610ce7565b610307565b61013f610190366004610d4d565b6001600160a01b031660009081526001602052604090205490565b6101b3610329565b005b6000546040516001600160a01b03909116815260200161010f565b61010261033d565b6101b36101e6366004610d6f565b61034c565b61012b6101f9366004610ce7565b6103cb565b61012b61020c366004610ce7565b61044b565b61013f61021f366004610de4565b610476565b6101b3610232366004610d4d565b6104a1565b60606004805461024690610e17565b80601f016020809104026020016040519081016040528092919081815260200182805461027290610e17565b80156102bf5780601f10610294576101008083540402835291602001916102bf565b820191906000526020600020905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b6000336102d781858561051a565b60019150505b92915050565b6000336102f185828561063e565b6102fc8585856106b8565b506001949350505050565b6000336102d781858561031a8383610476565b6103249190610e67565b61051a565b61033161086e565b61033b60006108c8565b565b60606005805461024690610e17565b61035461086e565b60005b818110156103c65760016006600085858581811061037757610377610e7a565b905060200201602081019061038c9190610d4d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806103be81610e90565b915050610357565b505050565b600033816103d98286610476565b90508381101561043e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102fc828686840361051a565b6000336001600160a01b03841661046b576104668184610918565b6102d7565b6102d78185856106b8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104a961086e565b6001600160a01b03811661050e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b610517816108c8565b50565b6001600160a01b03831661057c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b6001600160a01b0382166105dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610435565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061064a8484610476565b905060001981146106b257818110156106a55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610435565b6106b2848484840361051a565b50505050565b6001600160a01b03831661071c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610435565b6001600160a01b03821661077e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610435565b610789838383610a58565b6001600160a01b038316600090815260016020526040902054818110156108015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610435565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108619086815260200190565b60405180910390a36106b2565b6000546001600160a01b0316331461033b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610435565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166109785760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610435565b61098482600083610a58565b6001600160a01b038216600090815260016020526040902054818110156109f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610435565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60405163a93c11cd60e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a93c11cd90602401602060405180830381865afa158015610abc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae09190610ea9565b6103c6576001600160a01b03831660009081526006602052604090205460ff16158015610b2657506001600160a01b03821660009081526006602052604090205460ff16155b610b7d5760405162461bcd60e51b815260206004820152602260248201527f5453463a20746f6b656e73616c65206469646e27742066696e69736865642079604482015261195d60f21b6064820152608401610435565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614158015610bf157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156103c657604051633a07a6d960e21b81526001600160a01b038481166004830152602482018390527f0000000000000000000000000000000000000000000000000000000000000000169063e81e9b6490604401600060405180830381600087803b158015610c6057600080fd5b505af1158015610c74573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015610caa57858101830151858201604001528201610c8e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce257600080fd5b919050565b60008060408385031215610cfa57600080fd5b610d0383610ccb565b946020939093013593505050565b600080600060608486031215610d2657600080fd5b610d2f84610ccb565b9250610d3d60208501610ccb565b9150604084013590509250925092565b600060208284031215610d5f57600080fd5b610d6882610ccb565b9392505050565b60008060208385031215610d8257600080fd5b823567ffffffffffffffff80821115610d9a57600080fd5b818501915085601f830112610dae57600080fd5b813581811115610dbd57600080fd5b8660208260051b8501011115610dd257600080fd5b60209290920196919550909350505050565b60008060408385031215610df757600080fd5b610e0083610ccb565b9150610e0e60208401610ccb565b90509250929050565b600181811c90821680610e2b57607f821691505b602082108103610e4b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156102dd576102dd610e51565b634e487b7160e01b600052603260045260246000fd5b600060018201610ea257610ea2610e51565b5060010190565b600060208284031215610ebb57600080fd5b81518015158114610d6857600080fdfea264697066735822122002d28f1fc1aa6f4799a7ccca41e6a4a31a5b5003db9d145d1f4cb00d9c11823464736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000000076c696665646f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c46444f47000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101eb578063a9059cbb146101fe578063dd62ed3e14610211578063f2fde38b1461022457600080fd5b8063715018a6146101ab5780638da5cb5b146101b557806395d89b41146101d057806399f85c22146101d857600080fd5b806323b872dd116100d357806323b872dd1461014d578063313ce56714610160578063395093511461016f57806370a082311461018257600080fd5b806306fdde03146100fa578063095ea7b31461011857806318160ddd1461013b575b600080fd5b610102610237565b60405161010f9190610c7d565b60405180910390f35b61012b610126366004610ce7565b6102c9565b604051901515815260200161010f565b6003545b60405190815260200161010f565b61012b61015b366004610d11565b6102e3565b6040516012815260200161010f565b61012b61017d366004610ce7565b610307565b61013f610190366004610d4d565b6001600160a01b031660009081526001602052604090205490565b6101b3610329565b005b6000546040516001600160a01b03909116815260200161010f565b61010261033d565b6101b36101e6366004610d6f565b61034c565b61012b6101f9366004610ce7565b6103cb565b61012b61020c366004610ce7565b61044b565b61013f61021f366004610de4565b610476565b6101b3610232366004610d4d565b6104a1565b60606004805461024690610e17565b80601f016020809104026020016040519081016040528092919081815260200182805461027290610e17565b80156102bf5780601f10610294576101008083540402835291602001916102bf565b820191906000526020600020905b8154815290600101906020018083116102a257829003601f168201915b5050505050905090565b6000336102d781858561051a565b60019150505b92915050565b6000336102f185828561063e565b6102fc8585856106b8565b506001949350505050565b6000336102d781858561031a8383610476565b6103249190610e67565b61051a565b61033161086e565b61033b60006108c8565b565b60606005805461024690610e17565b61035461086e565b60005b818110156103c65760016006600085858581811061037757610377610e7a565b905060200201602081019061038c9190610d4d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806103be81610e90565b915050610357565b505050565b600033816103d98286610476565b90508381101561043e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102fc828686840361051a565b6000336001600160a01b03841661046b576104668184610918565b6102d7565b6102d78185856106b8565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104a961086e565b6001600160a01b03811661050e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b610517816108c8565b50565b6001600160a01b03831661057c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b6001600160a01b0382166105dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610435565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061064a8484610476565b905060001981146106b257818110156106a55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610435565b6106b2848484840361051a565b50505050565b6001600160a01b03831661071c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610435565b6001600160a01b03821661077e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610435565b610789838383610a58565b6001600160a01b038316600090815260016020526040902054818110156108015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610435565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906108619086815260200190565b60405180910390a36106b2565b6000546001600160a01b0316331461033b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610435565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166109785760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610435565b61098482600083610a58565b6001600160a01b038216600090815260016020526040902054818110156109f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610435565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60405163a93c11cd60e01b81523060048201527f000000000000000000000000b8540a7d74cc4912443e8c4b2064b640fc763c4f6001600160a01b03169063a93c11cd90602401602060405180830381865afa158015610abc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ae09190610ea9565b6103c6576001600160a01b03831660009081526006602052604090205460ff16158015610b2657506001600160a01b03821660009081526006602052604090205460ff16155b610b7d5760405162461bcd60e51b815260206004820152602260248201527f5453463a20746f6b656e73616c65206469646e27742066696e69736865642079604482015261195d60f21b6064820152608401610435565b7f000000000000000000000000b8540a7d74cc4912443e8c4b2064b640fc763c4f6001600160a01b0316836001600160a01b031614158015610bf157507f000000000000000000000000b8540a7d74cc4912443e8c4b2064b640fc763c4f6001600160a01b0316826001600160a01b031614155b156103c657604051633a07a6d960e21b81526001600160a01b038481166004830152602482018390527f000000000000000000000000b8540a7d74cc4912443e8c4b2064b640fc763c4f169063e81e9b6490604401600060405180830381600087803b158015610c6057600080fd5b505af1158015610c74573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015610caa57858101830151858201604001528201610c8e565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ce257600080fd5b919050565b60008060408385031215610cfa57600080fd5b610d0383610ccb565b946020939093013593505050565b600080600060608486031215610d2657600080fd5b610d2f84610ccb565b9250610d3d60208501610ccb565b9150604084013590509250925092565b600060208284031215610d5f57600080fd5b610d6882610ccb565b9392505050565b60008060208385031215610d8257600080fd5b823567ffffffffffffffff80821115610d9a57600080fd5b818501915085601f830112610dae57600080fd5b813581811115610dbd57600080fd5b8660208260051b8501011115610dd257600080fd5b60209290920196919550909350505050565b60008060408385031215610df757600080fd5b610e0083610ccb565b9150610e0e60208401610ccb565b90509250929050565b600181811c90821680610e2b57607f821691505b602082108103610e4b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156102dd576102dd610e51565b634e487b7160e01b600052603260045260246000fd5b600060018201610ea257610ea2610e51565b5060010190565b600060208284031215610ebb57600080fd5b81518015158114610d6857600080fdfea264697066735822122002d28f1fc1aa6f4799a7ccca41e6a4a31a5b5003db9d145d1f4cb00d9c11823464736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000000076c696665646f670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054c46444f47000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): lifedog
Arg [1] : symbol_ (string): LFDOG
Arg [2] : initSupply (uint256): 1000000000000000000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 6c696665646f6700000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4c46444f47000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

158:1364:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2131:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4417:197;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:7;;1162:22;1144:41;;1132:2;1117:18;4417:197:1;1004:187:7;3228:106:1;3315:12;;3228:106;;;1342:25:7;;;1330:2;1315:18;3228:106:1;1196:177:7;5176:256:1;;;;;;:::i;:::-;;:::i;3077:91::-;;;3159:2;1853:36:7;;1841:2;1826:18;3077:91:1;1711:184:7;5827:234:1;;;;;;:::i;:::-;;:::i;3392:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3492:18:1;3466:7;3492:18;;;:9;:18;;;;;;;3392:125;1815:101:5;;;:::i;:::-;;1192:85;1238:7;1264:6;1192:85;;-1:-1:-1;;;;;1264:6:5;;;2237:51:7;;2225:2;2210:18;1192:85:5;2091:203:7;2342:102:1;;;:::i;826:231:6:-;;;;;;:::i;:::-;;:::i;6548:427:1:-;;;;;;:::i;:::-;;:::i;534:286:6:-;;;;;;:::i;:::-;;:::i;3960:149:1:-;;;;;;:::i;:::-;;:::i;2065:198:5:-;;;;;;:::i;:::-;;:::i;2131:98:1:-;2185:13;2217:5;2210:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2131:98;:::o;4417:197::-;4500:4;719:10:0;4554:32:1;719:10:0;4570:7:1;4579:6;4554:8;:32::i;:::-;4603:4;4596:11;;;4417:197;;;;;:::o;5176:256::-;5273:4;719:10:0;5329:38:1;5345:4;719:10:0;5360:6:1;5329:15;:38::i;:::-;5377:27;5387:4;5393:2;5397:6;5377:9;:27::i;:::-;-1:-1:-1;5421:4:1;;5176:256;-1:-1:-1;;;;5176:256:1:o;5827:234::-;5915:4;719:10:0;5969:64:1;719:10:0;5985:7:1;6022:10;5994:25;719:10:0;5985:7:1;5994:9;:25::i;:::-;:38;;;;:::i;:::-;5969:8;:64::i;1815:101:5:-;1085:13;:11;:13::i;:::-;1879:30:::1;1906:1;1879:18;:30::i;:::-;1815:101::o:0;2342:102:1:-;2398:13;2430:7;2423:14;;;;;:::i;826:231:6:-;1085:13:5;:11;:13::i;:::-;923:9:6::1;918:133;938:30:::0;;::::1;918:133;;;1036:4;989:20;:44;1010:19;;1030:1;1010:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;989:44:6::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;989:44:6;:51;;-1:-1:-1;;989:51:6::1;::::0;::::1;;::::0;;;::::1;::::0;;970:3;::::1;::::0;::::1;:::i;:::-;;;;918:133;;;;826:231:::0;;:::o;6548:427:1:-;6641:4;719:10:0;6641:4:1;6722:25;719:10:0;6739:7:1;6722:9;:25::i;:::-;6695:52;;6785:15;6765:16;:35;;6757:85;;;;-1:-1:-1;;;6757:85:1;;4305:2:7;6757:85:1;;;4287:21:7;4344:2;4324:18;;;4317:30;4383:34;4363:18;;;4356:62;-1:-1:-1;;;4434:18:7;;;4427:35;4479:19;;6757:85:1;;;;;;;;;6876:60;6885:5;6892:7;6920:15;6901:16;:34;6876:8;:60::i;534:286:6:-;613:4;719:10:0;-1:-1:-1;;;;;671:16:6;;667:126;;703:20;709:5;716:6;703:5;:20::i;:::-;667:126;;;754:28;764:5;771:2;775:6;754:9;:28::i;3960:149:1:-;-1:-1:-1;;;;;4075:18:1;;;4049:7;4075:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3960:149::o;2065:198:5:-;1085:13;:11;:13::i;:::-;-1:-1:-1;;;;;2153:22:5;::::1;2145:73;;;::::0;-1:-1:-1;;;2145:73:5;;4711:2:7;2145:73:5::1;::::0;::::1;4693:21:7::0;4750:2;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;-1:-1:-1;;;4840:18:7;;;4833:36;4886:19;;2145:73:5::1;4509:402:7::0;2145:73:5::1;2228:28;2247:8;2228:18;:28::i;:::-;2065:198:::0;:::o;10414:340:1:-;-1:-1:-1;;;;;10515:19:1;;10507:68;;;;-1:-1:-1;;;10507:68:1;;5118:2:7;10507:68:1;;;5100:21:7;5157:2;5137:18;;;5130:30;5196:34;5176:18;;;5169:62;-1:-1:-1;;;5247:18:7;;;5240:34;5291:19;;10507:68:1;4916:400:7;10507:68:1;-1:-1:-1;;;;;10593:21:1;;10585:68;;;;-1:-1:-1;;;10585:68:1;;5523:2:7;10585:68:1;;;5505:21:7;5562:2;5542:18;;;5535:30;5601:34;5581:18;;;5574:62;-1:-1:-1;;;5652:18:7;;;5645:32;5694:19;;10585:68:1;5321:398:7;10585:68:1;-1:-1:-1;;;;;10664:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10715:32;;1342:25:7;;;10715:32:1;;1315:18:7;10715:32:1;;;;;;;10414:340;;;:::o;11035:411::-;11135:24;11162:25;11172:5;11179:7;11162:9;:25::i;:::-;11135:52;;-1:-1:-1;;11201:16:1;:37;11197:243;;11282:6;11262:16;:26;;11254:68;;;;-1:-1:-1;;;11254:68:1;;5926:2:7;11254:68:1;;;5908:21:7;5965:2;5945:18;;;5938:30;6004:31;5984:18;;;5977:59;6053:18;;11254:68:1;5724:353:7;11254:68:1;11364:51;11373:5;11380:7;11408:6;11389:16;:25;11364:8;:51::i;:::-;11125:321;11035:411;;;:::o;7429:780::-;-1:-1:-1;;;;;7525:18:1;;7517:68;;;;-1:-1:-1;;;7517:68:1;;6284:2:7;7517:68:1;;;6266:21:7;6323:2;6303:18;;;6296:30;6362:34;6342:18;;;6335:62;-1:-1:-1;;;6413:18:7;;;6406:35;6458:19;;7517:68:1;6082:401:7;7517:68:1;-1:-1:-1;;;;;7603:16:1;;7595:64;;;;-1:-1:-1;;;7595:64:1;;6690:2:7;7595:64:1;;;6672:21:7;6729:2;6709:18;;;6702:30;6768:34;6748:18;;;6741:62;-1:-1:-1;;;6819:18:7;;;6812:33;6862:19;;7595:64:1;6488:399:7;7595:64:1;7670:38;7691:4;7697:2;7701:6;7670:20;:38::i;:::-;-1:-1:-1;;;;;7741:15:1;;7719:19;7741:15;;;:9;:15;;;;;;7774:21;;;;7766:72;;;;-1:-1:-1;;;7766:72:1;;7094:2:7;7766:72:1;;;7076:21:7;7133:2;7113:18;;;7106:30;7172:34;7152:18;;;7145:62;-1:-1:-1;;;7223:18:7;;;7216:36;7269:19;;7766:72:1;6892:402:7;7766:72:1;-1:-1:-1;;;;;7872:15:1;;;;;;;:9;:15;;;;;;7890:20;;;7872:38;;8079:13;;;;;;;;;;:23;;;;;;8128:26;;;;;;7904:6;1342:25:7;;1330:2;1315:18;;1196:177;8128:26:1;;;;;;;;8165:37;826:231:6;1350:130:5;1238:7;1264:6;-1:-1:-1;;;;;1264:6:5;719:10:0;1413:23:5;1405:68;;;;-1:-1:-1;;;1405:68:5;;7501:2:7;1405:68:5;;;7483:21:7;;;7520:18;;;7513:30;7579:34;7559:18;;;7552:62;7631:18;;1405:68:5;7299:356:7;2417:187:5;2490:16;2509:6;;-1:-1:-1;;;;;2525:17:5;;;-1:-1:-1;;;;;;2525:17:5;;;;;;2557:40;;2509:6;;;;;;;2557:40;;2490:16;2557:40;2480:124;2417:187;:::o;9336:655:1:-;-1:-1:-1;;;;;9419:21:1;;9411:67;;;;-1:-1:-1;;;9411:67:1;;7862:2:7;9411:67:1;;;7844:21:7;7901:2;7881:18;;;7874:30;7940:34;7920:18;;;7913:62;-1:-1:-1;;;7991:18:7;;;7984:31;8032:19;;9411:67:1;7660:397:7;9411:67:1;9489:49;9510:7;9527:1;9531:6;9489:20;:49::i;:::-;-1:-1:-1;;;;;9574:18:1;;9549:22;9574:18;;;:9;:18;;;;;;9610:24;;;;9602:71;;;;-1:-1:-1;;;9602:71:1;;8264:2:7;9602:71:1;;;8246:21:7;8303:2;8283:18;;;8276:30;8342:34;8322:18;;;8315:62;-1:-1:-1;;;8393:18:7;;;8386:32;8435:19;;9602:71:1;8062:398:7;9602:71:1;-1:-1:-1;;;;;9707:18:1;;;;;;:9;:18;;;;;;;;9728:23;;;9707:44;;9840:12;:22;;;;;;;9888:37;1342:25:7;;;9707:18:1;;;9888:37;;1315:18:7;9888:37:1;;;;;;;918:133:6::1;826:231:::0;;:::o;1063:457::-;1176:43;;-1:-1:-1;;;1176:43:6;;1213:4;1176:43;;;2237:51:7;1176:17:6;-1:-1:-1;;;;;1176:28:6;;;;2210:18:7;;1176:43:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1171:343;;-1:-1:-1;;;;;1244:26:6;;;;;;:20;:26;;;;;;;;1243:27;:56;;;;-1:-1:-1;;;;;;1275:24:6;;;;;;:20;:24;;;;;;;;1274:25;1243:56;1235:103;;;;-1:-1:-1;;;1235:103:6;;8949:2:7;1235:103:6;;;8931:21:7;8988:2;8968:18;;;8961:30;9027:34;9007:18;;;9000:62;-1:-1:-1;;;9078:18:7;;;9071:32;9120:19;;1235:103:6;8747:398:7;1235:103:6;1373:17;-1:-1:-1;;;;;1357:34:6;:4;-1:-1:-1;;;;;1357:34:6;;;:70;;;;;1409:17;-1:-1:-1;;;;;1395:32:6;:2;-1:-1:-1;;;;;1395:32:6;;;1357:70;1353:151;;;1447:42;;-1:-1:-1;;;1447:42:6;;-1:-1:-1;;;;;9342:32:7;;;1447:42:6;;;9324:51:7;9391:18;;;9384:34;;;1447:17:6;:28;;;;9297:18:7;;1447:42:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1063:457;;;:::o;14:548:7:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:7;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:7:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:7:o;2299:615::-;2385:6;2393;2446:2;2434:9;2425:7;2421:23;2417:32;2414:52;;;2462:1;2459;2452:12;2414:52;2502:9;2489:23;2531:18;2572:2;2564:6;2561:14;2558:34;;;2588:1;2585;2578:12;2558:34;2626:6;2615:9;2611:22;2601:32;;2671:7;2664:4;2660:2;2656:13;2652:27;2642:55;;2693:1;2690;2683:12;2642:55;2733:2;2720:16;2759:2;2751:6;2748:14;2745:34;;;2775:1;2772;2765:12;2745:34;2828:7;2823:2;2813:6;2810:1;2806:14;2802:2;2798:23;2794:32;2791:45;2788:65;;;2849:1;2846;2839:12;2788:65;2880:2;2872:11;;;;;2902:6;;-1:-1:-1;2299:615:7;;-1:-1:-1;;;;2299:615:7:o;2919:260::-;2987:6;2995;3048:2;3036:9;3027:7;3023:23;3019:32;3016:52;;;3064:1;3061;3054:12;3016:52;3087:29;3106:9;3087:29;:::i;:::-;3077:39;;3135:38;3169:2;3158:9;3154:18;3135:38;:::i;:::-;3125:48;;2919:260;;;;;:::o;3184:380::-;3263:1;3259:12;;;;3306;;;3327:61;;3381:4;3373:6;3369:17;3359:27;;3327:61;3434:2;3426:6;3423:14;3403:18;3400:38;3397:161;;3480:10;3475:3;3471:20;3468:1;3461:31;3515:4;3512:1;3505:15;3543:4;3540:1;3533:15;3397:161;;3184:380;;;:::o;3569:127::-;3630:10;3625:3;3621:20;3618:1;3611:31;3661:4;3658:1;3651:15;3685:4;3682:1;3675:15;3701:125;3766:9;;;3787:10;;;3784:36;;;3800:18;;:::i;3831:127::-;3892:10;3887:3;3883:20;3880:1;3873:31;3923:4;3920:1;3913:15;3947:4;3944:1;3937:15;3963:135;4002:3;4023:17;;;4020:43;;4043:18;;:::i;:::-;-1:-1:-1;4090:1:7;4079:13;;3963:135::o;8465:277::-;8532:6;8585:2;8573:9;8564:7;8560:23;8556:32;8553:52;;;8601:1;8598;8591:12;8553:52;8633:9;8627:16;8686:5;8679:13;8672:21;8665:5;8662:32;8652:60;;8708:1;8705;8698:12

Swarm Source

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