ETH Price: $3,106.93 (-0.36%)
Gas: 3 Gwei

Token

RuniGun (RNG)
 

Overview

Max Total Supply

100,000,000 RNG

Holders

922

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
774,330.498447572223048039 RNG

Value
$0.00
0xe7241653b81ff746647fb1cf26bb5c0c75819ab8
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:
RNGToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 9000 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-15
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.15 ^0.8.0;
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

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

// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

/**
 * @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;
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.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);
    }
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.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 {}
}

// src\RNGToken.sol

contract RNGToken is ERC20, Ownable {
    event EnableTrading();
    bool public tradingEnabled;

    constructor() ERC20("RuniGun", "RNG") {
        _mint(msg.sender, 100_000_000e18);
    }

    function enableTrading() external onlyOwner {
        if (tradingEnabled) revert("already enabled");
        tradingEnabled = true;
        emit EnableTrading();
    }

    modifier check(address from, address to) {
        if (!tradingEnabled && (from != owner() && to != owner())) {
            revert("TradingDisabled");
        }
        _;
    }

    function transfer(
        address to,
        uint256 amount
    ) public virtual override check(msg.sender, to) returns (bool) {
        _transfer(msg.sender, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override check(from, to) returns (bool) {
        _spendAllowance(from, msg.sender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function recoverStuckTokens(IERC20 _token) external onlyOwner {
        if (address(_token) == address(0)) {
            uint256 balance = address(this).balance;
            (bool success, ) = payable(msg.sender).call{value: balance}("");
            require(success, "recover failed");
        } else {
            _token.transfer(msg.sender, _token.balanceOf(address(this)));
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"recoverStuckTokens","outputs":[],"stateMutability":"nonpayable","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60806040523480156200001157600080fd5b5060405180604001604052806007815260200166293ab734a3bab760c91b81525060405180604001604052806003815260200162524e4760e81b81525081600390816200005f91906200026d565b5060046200006e82826200026d565b5050506200008b62000085620000a860201b60201c565b620000ac565b620000a2336a52b7d2dcc80cd2e4000000620000fe565b62000360565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001595760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200016d919062000339565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001f457607f821691505b6020821081036200021557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c457600081815260208120601f850160051c81016020861015620002445750805b601f850160051c820191505b81811015620002655782815560010162000250565b505050505050565b81516001600160401b03811115620002895762000289620001c9565b620002a1816200029a8454620001df565b846200021b565b602080601f831160018114620002d95760008415620002c05750858301515b600019600386901b1c1916600185901b17855562000265565b600085815260208120601f198616915b828110156200030a57888601518255948401946001909101908401620002e9565b5085821015620003295787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200035b57634e487b7160e01b600052601160045260246000fd5b500190565b61114980620003706000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c806370a08231116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb1461026b578063dd62ed3e1461027e578063f2fde38b146102c457600080fd5b806395d89b4114610250578063a457c2d71461025857600080fd5b806370a08231146101e2578063715018a6146102185780638a8c523c146102205780638da5cb5b1461022857600080fd5b8063313ce567116100ee578063313ce5671461018657806339509351146101955780634ada218b146101a85780634be55d1f146101cd57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102d7565b6040516101359190610ee7565b60405180910390f35b61015161014c366004610f7c565b610369565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610fa8565b610381565b60405160128152602001610135565b6101516101a3366004610f7c565b610457565b6005546101519074010000000000000000000000000000000000000000900460ff1681565b6101e06101db366004610fe9565b6104a3565b005b6101656101f0366004610fe9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101e0610696565b6101e06106aa565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b610128610787565b610151610266366004610f7c565b610796565b610151610279366004610f7c565b610858565b61016561028c36600461100d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101e06102d2366004610fe9565b610912565b6060600380546102e690611046565b80601f016020809104026020016040519081016040528092919081815260200182805461031290611046565b801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b5050505050905090565b6000336103778185856109ac565b5060019392505050565b60008383600560149054906101000a900460ff161580156103e3575060055473ffffffffffffffffffffffffffffffffffffffff8381169116148015906103e3575060055473ffffffffffffffffffffffffffffffffffffffff828116911614155b156104355760405162461bcd60e51b815260206004820152600f60248201527f54726164696e6744697361626c6564000000000000000000000000000000000060448201526064015b60405180910390fd5b610440863386610b2b565b61044b868686610be8565b50600195945050505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610377908290869061049e908790611099565b6109ac565b6104ab610e09565b73ffffffffffffffffffffffffffffffffffffffff8116610565576040514790600090339083908381818185875af1925050503d806000811461050a576040519150601f19603f3d011682016040523d82523d6000602084013e61050f565b606091505b50509050806105605760405162461bcd60e51b815260206004820152600e60248201527f7265636f766572206661696c6564000000000000000000000000000000000000604482015260640161042c565b505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156105d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fd91906110d8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af115801561066d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069191906110f1565b505b50565b61069e610e09565b6106a86000610e70565b565b6106b2610e09565b60055474010000000000000000000000000000000000000000900460ff161561071d5760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920656e61626c65640000000000000000000000000000000000604482015260640161042c565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6060600480546102e690611046565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156108405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161042c565b61084d82868684036109ac565b506001949350505050565b60003383600560149054906101000a900460ff161580156108ba575060055473ffffffffffffffffffffffffffffffffffffffff8381169116148015906108ba575060055473ffffffffffffffffffffffffffffffffffffffff828116911614155b156109075760405162461bcd60e51b815260206004820152600f60248201527f54726164696e6744697361626c65640000000000000000000000000000000000604482015260640161042c565b61084d338686610be8565b61091a610e09565b73ffffffffffffffffffffffffffffffffffffffff81166109a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161042c565b61069381610e70565b73ffffffffffffffffffffffffffffffffffffffff8316610a345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff8216610abd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be25781811015610bd55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161042c565b610be284848484036109ac565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c715760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff8216610cfa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610d965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610be2565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161042c565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610f1457858101830151858201604001528201610ef8565b81811115610f26576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461069357600080fd5b60008060408385031215610f8f57600080fd5b8235610f9a81610f5a565b946020939093013593505050565b600080600060608486031215610fbd57600080fd5b8335610fc881610f5a565b92506020840135610fd881610f5a565b929592945050506040919091013590565b600060208284031215610ffb57600080fd5b813561100681610f5a565b9392505050565b6000806040838503121561102057600080fd5b823561102b81610f5a565b9150602083013561103b81610f5a565b809150509250929050565b600181811c9082168061105a57607f821691505b602082108103611093577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600082198211156110d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b6000602082840312156110ea57600080fd5b5051919050565b60006020828403121561110357600080fd5b8151801515811461100657600080fdfea2646970667358221220bb4d9b665c0a526f2140f005aac24eb19bdec2e4f3c0fc4d20bedf0653d9f8a364736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061011b5760003560e01c806370a08231116100b257806395d89b4111610081578063a9059cbb11610066578063a9059cbb1461026b578063dd62ed3e1461027e578063f2fde38b146102c457600080fd5b806395d89b4114610250578063a457c2d71461025857600080fd5b806370a08231146101e2578063715018a6146102185780638a8c523c146102205780638da5cb5b1461022857600080fd5b8063313ce567116100ee578063313ce5671461018657806339509351146101955780634ada218b146101a85780634be55d1f146101cd57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102d7565b6040516101359190610ee7565b60405180910390f35b61015161014c366004610f7c565b610369565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004610fa8565b610381565b60405160128152602001610135565b6101516101a3366004610f7c565b610457565b6005546101519074010000000000000000000000000000000000000000900460ff1681565b6101e06101db366004610fe9565b6104a3565b005b6101656101f0366004610fe9565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101e0610696565b6101e06106aa565b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b610128610787565b610151610266366004610f7c565b610796565b610151610279366004610f7c565b610858565b61016561028c36600461100d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101e06102d2366004610fe9565b610912565b6060600380546102e690611046565b80601f016020809104026020016040519081016040528092919081815260200182805461031290611046565b801561035f5780601f106103345761010080835404028352916020019161035f565b820191906000526020600020905b81548152906001019060200180831161034257829003601f168201915b5050505050905090565b6000336103778185856109ac565b5060019392505050565b60008383600560149054906101000a900460ff161580156103e3575060055473ffffffffffffffffffffffffffffffffffffffff8381169116148015906103e3575060055473ffffffffffffffffffffffffffffffffffffffff828116911614155b156104355760405162461bcd60e51b815260206004820152600f60248201527f54726164696e6744697361626c6564000000000000000000000000000000000060448201526064015b60405180910390fd5b610440863386610b2b565b61044b868686610be8565b50600195945050505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610377908290869061049e908790611099565b6109ac565b6104ab610e09565b73ffffffffffffffffffffffffffffffffffffffff8116610565576040514790600090339083908381818185875af1925050503d806000811461050a576040519150601f19603f3d011682016040523d82523d6000602084013e61050f565b606091505b50509050806105605760405162461bcd60e51b815260206004820152600e60248201527f7265636f766572206661696c6564000000000000000000000000000000000000604482015260640161042c565b505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff82169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156105d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105fd91906110d8565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af115801561066d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069191906110f1565b505b50565b61069e610e09565b6106a86000610e70565b565b6106b2610e09565b60055474010000000000000000000000000000000000000000900460ff161561071d5760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920656e61626c65640000000000000000000000000000000000604482015260640161042c565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d90600090a1565b6060600480546102e690611046565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156108405760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161042c565b61084d82868684036109ac565b506001949350505050565b60003383600560149054906101000a900460ff161580156108ba575060055473ffffffffffffffffffffffffffffffffffffffff8381169116148015906108ba575060055473ffffffffffffffffffffffffffffffffffffffff828116911614155b156109075760405162461bcd60e51b815260206004820152600f60248201527f54726164696e6744697361626c65640000000000000000000000000000000000604482015260640161042c565b61084d338686610be8565b61091a610e09565b73ffffffffffffffffffffffffffffffffffffffff81166109a35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161042c565b61069381610e70565b73ffffffffffffffffffffffffffffffffffffffff8316610a345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff8216610abd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610be25781811015610bd55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161042c565b610be284848484036109ac565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c715760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff8216610cfa5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610d965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161042c565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610be2565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161042c565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610f1457858101830151858201604001528201610ef8565b81811115610f26576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461069357600080fd5b60008060408385031215610f8f57600080fd5b8235610f9a81610f5a565b946020939093013593505050565b600080600060608486031215610fbd57600080fd5b8335610fc881610f5a565b92506020840135610fd881610f5a565b929592945050506040919091013590565b600060208284031215610ffb57600080fd5b813561100681610f5a565b9392505050565b6000806040838503121561102057600080fd5b823561102b81610f5a565b9150602083013561103b81610f5a565b809150509250929050565b600181811c9082168061105a57607f821691505b602082108103611093577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600082198211156110d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b6000602082840312156110ea57600080fd5b5051919050565b60006020828403121561110357600080fd5b8151801515811461100657600080fdfea2646970667358221220bb4d9b665c0a526f2140f005aac24eb19bdec2e4f3c0fc4d20bedf0653d9f8a364736f6c634300080f0033

Deployed Bytecode Sourcemap

20060:1472:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9044:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11404:201;;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;11404:201:0;1154:187:1;10173:108:0;10261:12;;10173:108;;;1492:25:1;;;1480:2;1465:18;10173:108:0;1346:177:1;20847:273:0;;;;;;:::i;:::-;;:::i;10015:93::-;;;10098:2;2131:36:1;;2119:2;2104:18;10015:93:0;1989:184:1;12855:238:0;;;;;;:::i;:::-;;:::i;20131:26::-;;;;;;;;;;;;21128:401;;;;;;:::i;:::-;;:::i;:::-;;10344:127;;;;;;:::i;:::-;10445:18;;10418:7;10445:18;;;;;;;;;;;;10344:127;5550:103;;;:::i;20264:171::-;;;:::i;4909:87::-;4982:6;;4909:87;;4982:6;;;;2841:74:1;;2829:2;2814:18;4909:87:0;2695:226:1;9263:104:0;;;:::i;13596:436::-;;;;;;:::i;:::-;;:::i;20633:206::-;;;;;;:::i;:::-;;:::i;10933:151::-;;;;;;:::i;:::-;11049:18;;;;11022:7;11049:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10933:151;5808:201;;;;;;:::i;:::-;;:::i;9044:100::-;9098:13;9131:5;9124:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9044:100;:::o;11404:201::-;11487:4;3521:10;11543:32;3521:10;11559:7;11568:6;11543:8;:32::i;:::-;-1:-1:-1;11593:4:0;;11404:201;-1:-1:-1;;;11404:201:0:o;20847:273::-;20994:4;20975;20981:2;20500:14;;;;;;;;;;;20499:15;:53;;;;-1:-1:-1;4982:6:0;;;20519:15;;;4982:6;;20519:15;;;;:32;;-1:-1:-1;4982:6:0;;;20538:13;;;4982:6;;20538:13;;20519:32;20495:111;;;20569:25;;-1:-1:-1;;;20569:25:0;;3963:2:1;20569:25:0;;;3945:21:1;4002:2;3982:18;;;3975:30;4041:17;4021:18;;;4014:45;4076:18;;20569:25:0;;;;;;;;20495:111;21011:41:::1;21027:4;21033:10;21045:6;21011:15;:41::i;:::-;21063:27;21073:4;21079:2;21083:6;21063:9;:27::i;:::-;-1:-1:-1::0;21108:4:0::1;::::0;20847:273;-1:-1:-1;;;;;20847:273:0:o;12855:238::-;3521:10;12943:4;11049:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;12943:4;;3521:10;12999:64;;3521:10;;11049:27;;13024:38;;13052:10;;13024:38;:::i;:::-;12999:8;:64::i;21128:401::-;4795:13;:11;:13::i;:::-;21205:29:::1;::::0;::::1;21201:321;;21324:44;::::0;21269:21:::1;::::0;21251:15:::1;::::0;21332:10:::1;::::0;21269:21;;21251:15;21324:44;21251:15;21324:44;21269:21;21332:10;21324:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21305:63;;;21391:7;21383:34;;;::::0;-1:-1:-1;;;21383:34:0;;4804:2:1;21383:34:0::1;::::0;::::1;4786:21:1::0;4843:2;4823:18;;;4816:30;4882:16;4862:18;;;4855:44;4916:18;;21383:34:0::1;4602:338:1::0;21383:34:0::1;21236:193;;21128:401:::0;:::o;21201:321::-:1;21478:31;::::0;;;;21503:4:::1;21478:31;::::0;::::1;2841:74:1::0;21450:15:0::1;::::0;::::1;::::0;::::1;::::0;21466:10:::1;::::0;21450:15;;21478:16:::1;::::0;2814:18:1;;21478:31:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21450:60;::::0;;::::1;::::0;;;;;;5338:42:1;5326:55;;;21450:60:0::1;::::0;::::1;5308:74:1::0;5398:18;;;5391:34;5281:18;;21450:60:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21201:321;21128:401:::0;:::o;5550:103::-;4795:13;:11;:13::i;:::-;5615:30:::1;5642:1;5615:18;:30::i;:::-;5550:103::o:0;20264:171::-;4795:13;:11;:13::i;:::-;20323:14:::1;::::0;;;::::1;;;20319:45;;;20339:25;::::0;-1:-1:-1;;;20339:25:0;;5920:2:1;20339:25:0::1;::::0;::::1;5902:21:1::0;5959:2;5939:18;;;5932:30;5998:17;5978:18;;;5971:45;6033:18;;20339:25:0::1;5718:339:1::0;20319:45:0::1;20375:14;:21:::0;;;::::1;::::0;::::1;::::0;;20412:15:::1;::::0;::::1;::::0;20375:21;;20412:15:::1;20264:171::o:0;9263:104::-;9319:13;9352:7;9345:14;;;;;:::i;13596:436::-;3521:10;13689:4;11049:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13689:4;;3521:10;13836:15;13816:16;:35;;13808:85;;;;-1:-1:-1;;;13808:85:0;;6264:2:1;13808:85:0;;;6246:21:1;6303:2;6283:18;;;6276:30;6342:34;6322:18;;;6315:62;6413:7;6393:18;;;6386:35;6438:19;;13808:85:0;6062:401:1;13808:85:0;13929:60;13938:5;13945:7;13973:15;13954:16;:34;13929:8;:60::i;:::-;-1:-1:-1;14020:4:0;;13596:436;-1:-1:-1;;;;13596:436:0:o;20633:206::-;20759:4;20734:10;20746:2;20500:14;;;;;;;;;;;20499:15;:53;;;;-1:-1:-1;4982:6:0;;;20519:15;;;4982:6;;20519:15;;;;:32;;-1:-1:-1;4982:6:0;;;20538:13;;;4982:6;;20538:13;;20519:32;20495:111;;;20569:25;;-1:-1:-1;;;20569:25:0;;3963:2:1;20569:25:0;;;3945:21:1;4002:2;3982:18;;;3975:30;4041:17;4021:18;;;4014:45;4076:18;;20569:25:0;3761:339:1;20495:111:0;20776:33:::1;20786:10;20798:2;20802:6;20776:9;:33::i;5808:201::-:0;4795:13;:11;:13::i;:::-;5897:22:::1;::::0;::::1;5889:73;;;::::0;-1:-1:-1;;;5889:73:0;;6670:2:1;5889:73:0::1;::::0;::::1;6652:21:1::0;6709:2;6689:18;;;6682:30;6748:34;6728:18;;;6721:62;6819:8;6799:18;;;6792:36;6845:19;;5889:73:0::1;6468:402:1::0;5889:73:0::1;5973:28;5992:8;5973:18;:28::i;17589:346::-:0;17691:19;;;17683:68;;;;-1:-1:-1;;;17683:68:0;;7077:2:1;17683:68:0;;;7059:21:1;7116:2;7096:18;;;7089:30;7155:34;7135:18;;;7128:62;7226:6;7206:18;;;7199:34;7250:19;;17683:68:0;6875:400:1;17683:68:0;17770:21;;;17762:68;;;;-1:-1:-1;;;17762:68:0;;7482:2:1;17762:68:0;;;7464:21:1;7521:2;7501:18;;;7494:30;7560:34;7540:18;;;7533:62;7631:4;7611:18;;;7604:32;7653:19;;17762:68:0;7280:398:1;17762:68:0;17843:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17895:32;;1492:25:1;;;17895:32:0;;1465:18:1;17895:32:0;;;;;;;17589:346;;;:::o;18226:419::-;11049:18;;;;18327:24;11049:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;18414:17;18394:37;;18390:248;;18476:6;18456:16;:26;;18448:68;;;;-1:-1:-1;;;18448:68:0;;7885:2:1;18448:68:0;;;7867:21:1;7924:2;7904:18;;;7897:30;7963:31;7943:18;;;7936:59;8012:18;;18448:68:0;7683:353:1;18448:68:0;18560:51;18569:5;18576:7;18604:6;18585:16;:25;18560:8;:51::i;:::-;18316:329;18226:419;;;:::o;14502:806::-;14599:18;;;14591:68;;;;-1:-1:-1;;;14591:68:0;;8243:2:1;14591:68:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;8392:7;8372:18;;;8365:35;8417:19;;14591:68:0;8041:401:1;14591:68:0;14678:16;;;14670:64;;;;-1:-1:-1;;;14670:64:0;;8649:2:1;14670:64:0;;;8631:21:1;8688:2;8668:18;;;8661:30;8727:34;8707:18;;;8700:62;8798:5;8778:18;;;8771:33;8821:19;;14670:64:0;8447:399:1;14670:64:0;14820:15;;;14798:19;14820:15;;;;;;;;;;;14854:21;;;;14846:72;;;;-1:-1:-1;;;14846:72:0;;9053:2:1;14846:72:0;;;9035:21:1;9092:2;9072:18;;;9065:30;9131:34;9111:18;;;9104:62;9202:8;9182:18;;;9175:36;9228:19;;14846:72:0;8851:402:1;14846:72:0;14954:15;;;;:9;:15;;;;;;;;;;;14972:20;;;14954:38;;15172:13;;;;;;;;;;:23;;;;;;15224:26;;1492:25:1;;;15172:13:0;;15224:26;;1465:18:1;15224:26:0;;;;;;;15263:37;19245:91;5074:132;4982:6;;5138:23;4982:6;3521:10;5138:23;5130:68;;;;-1:-1:-1;;;5130:68:0;;9460:2:1;5130:68:0;;;9442:21:1;;;9479:18;;;9472:30;9538:34;9518:18;;;9511:62;9590:18;;5130:68:0;9258:356:1;6169:191:0;6262:6;;;;6279:17;;;;;;;;;;;6312:40;;6262:6;;;6279:17;6262:6;;6312:40;;6243:16;;6312:40;6232:128;6169:191;:::o;14:656:1:-;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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1528:456::-;1605:6;1613;1621;1674:2;1662:9;1653:7;1649:23;1645:32;1642:52;;;1690:1;1687;1680:12;1642:52;1729:9;1716:23;1748:31;1773:5;1748:31;:::i;:::-;1798:5;-1:-1:-1;1855:2:1;1840:18;;1827:32;1868:33;1827:32;1868:33;:::i;:::-;1528:456;;1920:7;;-1:-1:-1;;;1974:2:1;1959:18;;;;1946:32;;1528:456::o;2178:260::-;2250:6;2303:2;2291:9;2282:7;2278:23;2274:32;2271:52;;;2319:1;2316;2309:12;2271:52;2358:9;2345:23;2377:31;2402:5;2377:31;:::i;:::-;2427:5;2178:260;-1:-1:-1;;;2178:260:1:o;2926:388::-;2994:6;3002;3055:2;3043:9;3034:7;3030:23;3026:32;3023:52;;;3071:1;3068;3061:12;3023:52;3110:9;3097:23;3129:31;3154:5;3129:31;:::i;:::-;3179:5;-1:-1:-1;3236:2:1;3221:18;;3208:32;3249:33;3208:32;3249:33;:::i;:::-;3301:7;3291:17;;;2926:388;;;;;:::o;3319:437::-;3398:1;3394:12;;;;3441;;;3462:61;;3516:4;3508:6;3504:17;3494:27;;3462:61;3569:2;3561:6;3558:14;3538:18;3535:38;3532:218;;3606:77;3603:1;3596:88;3707:4;3704:1;3697:15;3735:4;3732:1;3725:15;3532:218;;3319:437;;;:::o;4105:282::-;4145:3;4176:1;4172:6;4169:1;4166:13;4163:193;;;4212:77;4209:1;4202:88;4313:4;4310:1;4303:15;4341:4;4338:1;4331:15;4163:193;-1:-1:-1;4372:9:1;;4105:282::o;4945:184::-;5015:6;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;-1:-1:-1;5107:16:1;;4945:184;-1:-1:-1;4945:184:1:o;5436:277::-;5503:6;5556:2;5544:9;5535:7;5531:23;5527:32;5524:52;;;5572:1;5569;5562:12;5524:52;5604:9;5598:16;5657:5;5650:13;5643:21;5636:5;5633:32;5623:60;;5679:1;5676;5669:12

Swarm Source

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