ETH Price: $2,428.16 (-9.85%)

Token

Real World Assetss (RWAS)

Overview

Max Total Supply

189,915,838.477628809618993708 RWAS

Holders

15,667

Transfers

-
3

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
RWAS

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

uint256 constant YEAR = 86400 * 365;
uint256 constant INITIAL_SUPPLY = 247_880_000;
uint256 constant INITIAL_RATE = (66_736_164 * 1e18) / YEAR;
uint256 constant RATE_REDUCTION_TIME = YEAR;
uint256 constant RATE_REDUCTION_COEFFICIENT = 135_998_912 * 1e10;
uint256 constant RATE_DENOMINATOR = 1e18;
uint256 constant INFLATION_DELAY = 0;

contract RWAS is ERC20, Ownable {
    address public minter;
    address public admin;

    int128 public miningEpoch;
    uint256 public startEpochTime;
    uint256 public rate;
    uint256 public startEpochSupply;

    event UpdateMiningParameters(uint256 time, uint256 rate, uint256 supply);

    event OwnershipMinter(address minter);

    constructor() ERC20("Real World Assetss", "RWAS") {
        miningEpoch = -1;
        rate = 0;
        startEpochTime =
            block.timestamp +
            INFLATION_DELAY -
            RATE_REDUCTION_TIME;
        startEpochSupply = INITIAL_SUPPLY * 1e18;
        _mint(_msgSender(), startEpochSupply);
    }

    modifier onlyMinter() {
        require(minter == _msgSender(), "dev: caller is not the minter");
        _;
    }

    function setMnter(address _minter) external onlyOwner {
        require(
            minter == address(0),
            "dev: can set the minter only once, at creation"
        );
        minter = _minter;
        emit OwnershipMinter(_minter);
    }

    function declineRate() public pure returns (uint256) {
        return ((RATE_DENOMINATOR * 10000) / RATE_REDUCTION_COEFFICIENT);
    }

    function _updateMiningParameters() internal {
        uint256 _rate = rate;

        startEpochTime += RATE_REDUCTION_TIME;
        miningEpoch += 1;

        if (_rate == 0) {
            _rate = INITIAL_RATE;
        } else {
            startEpochSupply += _rate * RATE_REDUCTION_TIME;
            _rate = (_rate * declineRate()) / 10000;
        }

        rate = _rate;

        emit UpdateMiningParameters(block.timestamp, _rate, startEpochSupply);
    }

    function updateMiningParameters() external {
        require(block.timestamp >= startEpochTime + RATE_REDUCTION_TIME, "");
        _updateMiningParameters();
    }

    function startEpochTimeWrite() public returns (uint256) {
        if (block.timestamp >= startEpochTime + RATE_REDUCTION_TIME) {
            _updateMiningParameters();
        }
        return startEpochTime;
    }

    function futureEpochTimeWrite() public returns (uint256) {
        if (block.timestamp >= startEpochTime + RATE_REDUCTION_TIME) {
            _updateMiningParameters();
        }
        return startEpochTime + RATE_REDUCTION_TIME;
    }

    function _availableSupply() internal view returns (uint256) {
        return startEpochSupply + (block.timestamp - startEpochTime) * rate;
    }

    function availableSupply() public view returns (uint256) {
        return _availableSupply();
    }

    function mintableInTimeframe(
        uint256 start,
        uint256 end
    ) public view returns (uint256) {
        /*
        @notice How much supply is mintable from start timestamp till end timestamp
        @param start Start of the time interval (timestamp)
        @param end End of the time interval (timestamp)
        @return Tokens mintable from `start` till `end`
        */
        require(start <= end, "dev: start > end");
        uint256 to_mint = 0;
        uint256 currentEpochTime = startEpochTime;
        uint256 currentRate = rate;

        // Special case if end is in future (not yet minted) epoch
        if (end > currentEpochTime + RATE_REDUCTION_TIME) {
            currentEpochTime += RATE_REDUCTION_TIME;
            currentRate =
                (currentRate * RATE_DENOMINATOR) /
                RATE_REDUCTION_COEFFICIENT;
        }

        require(
            end <= currentEpochTime + RATE_REDUCTION_TIME,
            "dev: too far in future"
        );

        for (uint i = 0; i < 999; i++) {
            // Curve will not work in 1000 years. Darn!
            if (end >= currentEpochTime) {
                uint256 currentEnd = end;
                if (currentEnd > currentEpochTime + RATE_REDUCTION_TIME)
                    currentEnd = currentEpochTime + RATE_REDUCTION_TIME;

                uint256 currentStart = start;
                if (currentStart >= currentEpochTime + RATE_REDUCTION_TIME)
                    break;
                // We should never get here but what if...
                else if (currentStart < currentEpochTime)
                    currentStart = currentEpochTime;

                to_mint += currentRate * (currentEnd - currentStart);

                if (start >= currentEpochTime) break;
            }

            currentEpochTime -= RATE_REDUCTION_TIME;
            currentRate =
                (currentRate * RATE_REDUCTION_COEFFICIENT) /
                RATE_DENOMINATOR; // double-division with rounding made rate a bit less => good
            assert(currentRate <= INITIAL_RATE); // This should never happen
        }
        return to_mint;
    }

    function mint(address to, uint256 amount) public onlyMinter returns (bool) {
        if (block.timestamp >= startEpochTime + RATE_REDUCTION_TIME)
            _updateMiningParameters();

        require(
            totalSupply() + amount <= _availableSupply(),
            "dev: exceeds allowable mint amount"
        );

        _mint(to, amount);
        return true;
    }

    function burn(uint256 amount) public returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }
}

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

pragma solidity ^0.8.0;

import "../utils/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);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/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 {}
}

// 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);
}

// 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);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"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":false,"internalType":"address","name":"minter","type":"address"}],"name":"OwnershipMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"UpdateMiningParameters","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"availableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"declineRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"futureEpochTimeWrite","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"miningEpoch","outputs":[{"internalType":"int128","name":"","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"mintableInTimeframe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMnter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startEpochSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startEpochTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startEpochTimeWrite","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[],"name":"updateMiningParameters","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051806040016040528060128152602001715265616c20576f726c64204173736574737360701b815250604051806040016040528060048152602001635257415360e01b81525081600390816200006b9190620002cc565b5060046200007a8282620002cc565b50505062000097620000916200010760201b60201c565b6200010b565b600880546001600160801b0319166001600160801b031790556000600a8190556301e1338090620000c99042620003ae565b620000d59190620003ca565b600955620000f0630ec65940670de0b6b3a7640000620003e0565b600b556200010133600b546200015d565b620003fa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001cc9190620003ae565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025357607f821691505b6020821081036200027457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022357600081815260208120601f850160051c81016020861015620002a35750805b601f850160051c820191505b81811015620002c457828155600101620002af565b505050505050565b81516001600160401b03811115620002e857620002e862000228565b6200030081620002f984546200023e565b846200027a565b602080601f8311600181146200033857600084156200031f5750858301515b600019600386901b1c1916600185901b178555620002c4565b600085815260208120601f198616915b82811015620003695788860151825594840194600190910190840162000348565b5085821015620003885787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115620003c457620003c462000398565b92915050565b81810381811115620003c457620003c462000398565b8082028115828204841417620003c457620003c462000398565b6114b8806200040a6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806364ef6dd411610104578063a457c2d7116100a2578063dd5fbc9a11610071578063dd5fbc9a146103a3578063dd62ed3e146103ac578063f2fde38b146103bf578063f851a440146103d257600080fd5b8063a457c2d714610362578063a9059cbb14610375578063c3b03fa814610388578063cb626ae21461039b57600080fd5b80637ecc2b56116100de5780637ecc2b56146103395780638da5cb5b1461034157806395d89b4114610352578063a228bced1461035a57600080fd5b806364ef6dd4146102e857806370a0823114610308578063715018a61461033157600080fd5b806323b872dd11610171578063313ce5671161014b578063313ce567146102a057806339509351146102af57806340c10f19146102c257806342966c68146102d557600080fd5b806323b872dd1461027c578063277dbafb1461028f5780632c4e722e1461029757600080fd5b8063095ea7b3116101ad578063095ea7b3146102325780630df2adc2146102555780631814a5b11461026b57806318160ddd1461027457600080fd5b8063044034f9146101d457806306fdde03146101e95780630754617214610207575b600080fd5b6101e76101e2366004611221565b6103e5565b005b6101f16104b7565b6040516101fe9190611243565b60405180910390f35b60065461021a906001600160a01b031681565b6040516001600160a01b0390911681526020016101fe565b610245610240366004611291565b610549565b60405190151581526020016101fe565b61025d610563565b6040519081526020016101fe565b61025d60095481565b60025461025d565b61024561028a3660046112bb565b610591565b61025d6105b5565b61025d600a5481565b604051601281526020016101fe565b6102456102bd366004611291565b6105e9565b6102456102d0366004611291565b61060b565b6102456102e33660046112f7565b610710565b6008546102f590600f0b81565b604051600f9190910b81526020016101fe565b61025d610316366004611221565b6001600160a01b031660009081526020819052604090205490565b6101e7610724565b61025d610738565b6005546001600160a01b031661021a565b6101f1610742565b61025d610751565b610245610370366004611291565b61077a565b610245610383366004611291565b6107f5565b61025d610396366004611310565b610803565b6101e7610a04565b61025d600b5481565b61025d6103ba366004611332565b610a47565b6101e76103cd366004611221565b610a72565b60075461021a906001600160a01b031681565b6103ed610aeb565b6006546001600160a01b0316156104625760405162461bcd60e51b815260206004820152602e60248201527f6465763a2063616e2073657420746865206d696e746572206f6e6c79206f6e6360448201526d32961030ba1031b932b0ba34b7b760911b60648201526084015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f58c5586737c083ea73086efe783325b853f9b5394acde76eeb0631567a01ba4d906020015b60405180910390a150565b6060600380546104c690611365565b80601f01602080910402602001604051908101604052809291908181526020018280546104f290611365565b801561053f5780601f106105145761010080835404028352916020019161053f565b820191906000526020600020905b81548152906001019060200180831161052257829003601f168201915b5050505050905090565b600033610557818585610b45565b60019150505b92915050565b60006712dfa6e62bff0000610582670de0b6b3a76400006127106113b5565b61058c91906113cc565b905090565b60003361059f858285610c6a565b6105aa858585610ce4565b506001949350505050565b60006301e133806009546105c991906113ee565b42106105d7576105d7610e88565b6301e1338060095461058c91906113ee565b6000336105578185856105fc8383610a47565b61060691906113ee565b610b45565b6006546000906001600160a01b031633146106685760405162461bcd60e51b815260206004820152601d60248201527f6465763a2063616c6c6572206973206e6f7420746865206d696e7465720000006044820152606401610459565b6301e1338060095461067a91906113ee565b421061068857610688610e88565b610690610fa0565b8261069a60025490565b6106a491906113ee565b11156106fd5760405162461bcd60e51b815260206004820152602260248201527f6465763a206578636565647320616c6c6f7761626c65206d696e7420616d6f756044820152611b9d60f21b6064820152608401610459565b6107078383610fca565b50600192915050565b600061071c3383611089565b506001919050565b61072c610aeb565b61073660006111b3565b565b600061058c610fa0565b6060600480546104c690611365565b60006301e1338060095461076591906113ee565b421061077357610773610e88565b5060095490565b600033816107888286610a47565b9050838110156107e85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610459565b6105aa8286868403610b45565b600033610557818585610ce4565b6000818311156108485760405162461bcd60e51b815260206004820152601060248201526f19195d8e881cdd185c9d080f88195b9960821b6044820152606401610459565b600954600a54600091906108606301e13380836113ee565b85111561089f576108756301e13380836113ee565b91506712dfa6e62bff0000610892670de0b6b3a7640000836113b5565b61089c91906113cc565b90505b6108ad6301e13380836113ee565b8511156108f55760405162461bcd60e51b81526020600482015260166024820152756465763a20746f6f2066617220696e2066757475726560501b6044820152606401610459565b60005b6103e78110156109f95782861061098857856109186301e13380856113ee565b8111156109305761092d6301e13380856113ee565b90505b8761093f6301e13380866113ee565b811061094c5750506109f9565b848110156109575750835b6109618183611401565b61096b90856113b5565b61097590876113ee565b95508489106109855750506109f9565b50505b6109966301e1338084611401565b9250670de0b6b3a76400006109b36712dfa6e62bff0000846113b5565b6109bd91906113cc565b91506109d86301e133806a3733eeb319793aca1000006113cc565b8211156109e7576109e7611414565b806109f18161142a565b9150506108f8565b509195945050505050565b6301e13380600954610a1691906113ee565b421015610a3f5760405162461bcd60e51b81526020600482015260006024820152604401610459565b610736610e88565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a7a610aeb565b6001600160a01b038116610adf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610459565b610ae8816111b3565b50565b6005546001600160a01b031633146107365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610459565b6001600160a01b038316610ba75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610459565b6001600160a01b038216610c085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610459565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610c768484610a47565b90506000198114610cde5781811015610cd15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610459565b610cde8484848403610b45565b50505050565b6001600160a01b038316610d485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610459565b6001600160a01b038216610daa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610459565b6001600160a01b03831660009081526020819052604090205481811015610e225760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610459565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cde565b6000600a5490506301e1338060096000828254610ea591906113ee565b90915550506008805460019190600090610ec3908490600f0b611443565b92506101000a8154816001600160801b030219169083600f0b6001600160801b0316021790555080600003610f1257610f0b6301e133806a3733eeb319793aca1000006113cc565b9050610f59565b610f206301e13380826113b5565b600b6000828254610f3191906113ee565b909155506127109050610f42610563565b610f4c90836113b5565b610f5691906113cc565b90505b600a819055600b546040805142815260208101849052908101919091527f27e46362a1e6129b6dd539c984ce739291a97128dfcaeca1255e8ac83abd9441906060016104ac565b6000600a5460095442610fb39190611401565b610fbd91906113b5565b600b5461058c91906113ee565b6001600160a01b0382166110205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610459565b806002600082825461103291906113ee565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166110e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610459565b6001600160a01b0382166000908152602081905260409020548181101561115d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610459565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610c5d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461121c57600080fd5b919050565b60006020828403121561123357600080fd5b61123c82611205565b9392505050565b600060208083528351808285015260005b8181101561127057858101830151858201604001528201611254565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156112a457600080fd5b6112ad83611205565b946020939093013593505050565b6000806000606084860312156112d057600080fd5b6112d984611205565b92506112e760208501611205565b9150604084013590509250925092565b60006020828403121561130957600080fd5b5035919050565b6000806040838503121561132357600080fd5b50508035926020909101359150565b6000806040838503121561134557600080fd5b61134e83611205565b915061135c60208401611205565b90509250929050565b600181811c9082168061137957607f821691505b60208210810361139957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761055d5761055d61139f565b6000826113e957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561055d5761055d61139f565b8181038181111561055d5761055d61139f565b634e487b7160e01b600052600160045260246000fd5b60006001820161143c5761143c61139f565b5060010190565b600f81810b9083900b016f7fffffffffffffffffffffffffffffff81136f7fffffffffffffffffffffffffffffff198212171561055d5761055d61139f56fea264697066735822122038dc51cd9166026f39a268d93a035908c661f9ee0d9cd256ead007d2b6648f6464736f6c63430008140033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806364ef6dd411610104578063a457c2d7116100a2578063dd5fbc9a11610071578063dd5fbc9a146103a3578063dd62ed3e146103ac578063f2fde38b146103bf578063f851a440146103d257600080fd5b8063a457c2d714610362578063a9059cbb14610375578063c3b03fa814610388578063cb626ae21461039b57600080fd5b80637ecc2b56116100de5780637ecc2b56146103395780638da5cb5b1461034157806395d89b4114610352578063a228bced1461035a57600080fd5b806364ef6dd4146102e857806370a0823114610308578063715018a61461033157600080fd5b806323b872dd11610171578063313ce5671161014b578063313ce567146102a057806339509351146102af57806340c10f19146102c257806342966c68146102d557600080fd5b806323b872dd1461027c578063277dbafb1461028f5780632c4e722e1461029757600080fd5b8063095ea7b3116101ad578063095ea7b3146102325780630df2adc2146102555780631814a5b11461026b57806318160ddd1461027457600080fd5b8063044034f9146101d457806306fdde03146101e95780630754617214610207575b600080fd5b6101e76101e2366004611221565b6103e5565b005b6101f16104b7565b6040516101fe9190611243565b60405180910390f35b60065461021a906001600160a01b031681565b6040516001600160a01b0390911681526020016101fe565b610245610240366004611291565b610549565b60405190151581526020016101fe565b61025d610563565b6040519081526020016101fe565b61025d60095481565b60025461025d565b61024561028a3660046112bb565b610591565b61025d6105b5565b61025d600a5481565b604051601281526020016101fe565b6102456102bd366004611291565b6105e9565b6102456102d0366004611291565b61060b565b6102456102e33660046112f7565b610710565b6008546102f590600f0b81565b604051600f9190910b81526020016101fe565b61025d610316366004611221565b6001600160a01b031660009081526020819052604090205490565b6101e7610724565b61025d610738565b6005546001600160a01b031661021a565b6101f1610742565b61025d610751565b610245610370366004611291565b61077a565b610245610383366004611291565b6107f5565b61025d610396366004611310565b610803565b6101e7610a04565b61025d600b5481565b61025d6103ba366004611332565b610a47565b6101e76103cd366004611221565b610a72565b60075461021a906001600160a01b031681565b6103ed610aeb565b6006546001600160a01b0316156104625760405162461bcd60e51b815260206004820152602e60248201527f6465763a2063616e2073657420746865206d696e746572206f6e6c79206f6e6360448201526d32961030ba1031b932b0ba34b7b760911b60648201526084015b60405180910390fd5b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f58c5586737c083ea73086efe783325b853f9b5394acde76eeb0631567a01ba4d906020015b60405180910390a150565b6060600380546104c690611365565b80601f01602080910402602001604051908101604052809291908181526020018280546104f290611365565b801561053f5780601f106105145761010080835404028352916020019161053f565b820191906000526020600020905b81548152906001019060200180831161052257829003601f168201915b5050505050905090565b600033610557818585610b45565b60019150505b92915050565b60006712dfa6e62bff0000610582670de0b6b3a76400006127106113b5565b61058c91906113cc565b905090565b60003361059f858285610c6a565b6105aa858585610ce4565b506001949350505050565b60006301e133806009546105c991906113ee565b42106105d7576105d7610e88565b6301e1338060095461058c91906113ee565b6000336105578185856105fc8383610a47565b61060691906113ee565b610b45565b6006546000906001600160a01b031633146106685760405162461bcd60e51b815260206004820152601d60248201527f6465763a2063616c6c6572206973206e6f7420746865206d696e7465720000006044820152606401610459565b6301e1338060095461067a91906113ee565b421061068857610688610e88565b610690610fa0565b8261069a60025490565b6106a491906113ee565b11156106fd5760405162461bcd60e51b815260206004820152602260248201527f6465763a206578636565647320616c6c6f7761626c65206d696e7420616d6f756044820152611b9d60f21b6064820152608401610459565b6107078383610fca565b50600192915050565b600061071c3383611089565b506001919050565b61072c610aeb565b61073660006111b3565b565b600061058c610fa0565b6060600480546104c690611365565b60006301e1338060095461076591906113ee565b421061077357610773610e88565b5060095490565b600033816107888286610a47565b9050838110156107e85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610459565b6105aa8286868403610b45565b600033610557818585610ce4565b6000818311156108485760405162461bcd60e51b815260206004820152601060248201526f19195d8e881cdd185c9d080f88195b9960821b6044820152606401610459565b600954600a54600091906108606301e13380836113ee565b85111561089f576108756301e13380836113ee565b91506712dfa6e62bff0000610892670de0b6b3a7640000836113b5565b61089c91906113cc565b90505b6108ad6301e13380836113ee565b8511156108f55760405162461bcd60e51b81526020600482015260166024820152756465763a20746f6f2066617220696e2066757475726560501b6044820152606401610459565b60005b6103e78110156109f95782861061098857856109186301e13380856113ee565b8111156109305761092d6301e13380856113ee565b90505b8761093f6301e13380866113ee565b811061094c5750506109f9565b848110156109575750835b6109618183611401565b61096b90856113b5565b61097590876113ee565b95508489106109855750506109f9565b50505b6109966301e1338084611401565b9250670de0b6b3a76400006109b36712dfa6e62bff0000846113b5565b6109bd91906113cc565b91506109d86301e133806a3733eeb319793aca1000006113cc565b8211156109e7576109e7611414565b806109f18161142a565b9150506108f8565b509195945050505050565b6301e13380600954610a1691906113ee565b421015610a3f5760405162461bcd60e51b81526020600482015260006024820152604401610459565b610736610e88565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a7a610aeb565b6001600160a01b038116610adf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610459565b610ae8816111b3565b50565b6005546001600160a01b031633146107365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610459565b6001600160a01b038316610ba75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610459565b6001600160a01b038216610c085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610459565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610c768484610a47565b90506000198114610cde5781811015610cd15760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610459565b610cde8484848403610b45565b50505050565b6001600160a01b038316610d485760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610459565b6001600160a01b038216610daa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610459565b6001600160a01b03831660009081526020819052604090205481811015610e225760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610459565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610cde565b6000600a5490506301e1338060096000828254610ea591906113ee565b90915550506008805460019190600090610ec3908490600f0b611443565b92506101000a8154816001600160801b030219169083600f0b6001600160801b0316021790555080600003610f1257610f0b6301e133806a3733eeb319793aca1000006113cc565b9050610f59565b610f206301e13380826113b5565b600b6000828254610f3191906113ee565b909155506127109050610f42610563565b610f4c90836113b5565b610f5691906113cc565b90505b600a819055600b546040805142815260208101849052908101919091527f27e46362a1e6129b6dd539c984ce739291a97128dfcaeca1255e8ac83abd9441906060016104ac565b6000600a5460095442610fb39190611401565b610fbd91906113b5565b600b5461058c91906113ee565b6001600160a01b0382166110205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610459565b806002600082825461103291906113ee565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166110e95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610459565b6001600160a01b0382166000908152602081905260409020548181101561115d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610459565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610c5d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80356001600160a01b038116811461121c57600080fd5b919050565b60006020828403121561123357600080fd5b61123c82611205565b9392505050565b600060208083528351808285015260005b8181101561127057858101830151858201604001528201611254565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156112a457600080fd5b6112ad83611205565b946020939093013593505050565b6000806000606084860312156112d057600080fd5b6112d984611205565b92506112e760208501611205565b9150604084013590509250925092565b60006020828403121561130957600080fd5b5035919050565b6000806040838503121561132357600080fd5b50508035926020909101359150565b6000806040838503121561134557600080fd5b61134e83611205565b915061135c60208401611205565b90509250929050565b600181811c9082168061137957607f821691505b60208210810361139957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761055d5761055d61139f565b6000826113e957634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561055d5761055d61139f565b8181038181111561055d5761055d61139f565b634e487b7160e01b600052600160045260246000fd5b60006001820161143c5761143c61139f565b5060010190565b600f81810b9083900b016f7fffffffffffffffffffffffffffffff81136f7fffffffffffffffffffffffffffffff198212171561055d5761055d61139f56fea264697066735822122038dc51cd9166026f39a268d93a035908c661f9ee0d9cd256ead007d2b6648f6464736f6c63430008140033

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.