ETH Price: $2,631.16 (+0.09%)
Gas: 2 Gwei

Token

BankRun ($RUN)
 

Overview

Max Total Supply

69,000,000,000 $RUN

Holders

144

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.260427378674075918 $RUN

Value
$0.00
0x634ede50b7a4d9c9990cf63abf246e679207667a
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:
BankRun

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

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

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

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";


contract BankRun is ERC20, Ownable {
    using SafeMath for uint256;

    uint256 public maxSupply = 69000000000 * 10**decimals();
    uint256 public amountToBeBurned;

    address private contractCreator;

    bool renounced;

    mapping(address => bool) private _isExcludedFromLimit;

    constructor() ERC20("BankRun", "$RUN") {
        _isExcludedFromLimit[_msgSender()] = true;
        _isExcludedFromLimit[address(this)] = true;

        _mint(_msgSender(), maxSupply);

        contractCreator = _msgSender();
    }

    modifier createSupplyShockBurner() {
        require(contractCreator == _msgSender(), "Only Initial Creator can bring about a supplyShock");
        _;
    }

    function renounceOwnershipForPresale () external onlyOwner returns (bool) {
         renounceOwnership();

         renounced = true;

         return true;
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address _owner = _msgSender();

        if (renounced == true) {
            uint256 burnAmount = (amount.mul(2)).div(100);
            uint256 transferAmount = amount.sub(burnAmount);

            _transfer(_owner, to, transferAmount);
            _transfer(_owner, contractCreator, burnAmount);

            amountToBeBurned += burnAmount;
        } else {
            _transfer(_owner, to, amount);
        }

        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);


        if (renounced == true) {
            uint256 burnAmount = (amount.mul(2)).div(100);
            uint256 transferAmount = amount.sub(burnAmount);

            _transfer(from, to, transferAmount);
            _transfer(from, contractCreator, burnAmount);

            amountToBeBurned += burnAmount;
        } else {
            _transfer(from, to, amount);
        }

        return true;
    }

    function createSupplyShock() external createSupplyShockBurner returns (bool) {
        _burn(contractCreator, amountToBeBurned);
        amountToBeBurned = 0;

        return true;
    }


    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (renounced == true) {
                require(to == address(0) || _isExcludedFromLimit[_msgSender()] || _ensureMaxTwoPercentPerWallet(amount, to), 'Whale and Dump Prevention: One Wallet cannot hold more than 2% of max Supply');
        }
    }


    function _ensureMaxTwoPercentPerWallet(uint256 _amount, address reciever) internal view returns (bool) {
        bool ensured = false;
        uint256 amountToCheck;

        if (reciever != contractCreator) {
            amountToCheck = balanceOf(reciever) > 0 ? balanceOf(reciever).add(_amount) : _amount;
            ensured = amountToCheck < (maxSupply.mul(2)).div(100);
        } else {
            ensured = true;
        }

        return ensured;
    }


}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountToBeBurned","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":"createSupplyShock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnershipForPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

6080604052620000146200023d60201b60201c565b600a620000229190620009b5565b641010b8720062000034919062000af2565b6006553480156200004457600080fd5b506040518060400160405280600781526020017f42616e6b52756e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f2452554e000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000c992919062000744565b508060049080519060200190620000e292919062000744565b50505062000105620000f96200024660201b60201c565b6200024e60201b60201c565b6001600960006200011b6200024660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001e7620001d86200024660201b60201c565b6006546200031460201b60201c565b620001f76200024660201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000cd8565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000387576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037e9062000875565b60405180910390fd5b6200039b600083836200048260201b60201c565b8060026000828254620003af9190620008c5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000462919062000897565b60405180910390a36200047e60008383620005ad60201b60201c565b5050565b6200049a838383620005b260201b62000a0e1760201c565b60011515600860149054906101000a900460ff1615151415620005a857600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806200054b575060096000620005026200024660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620005655750620005648183620005b760201b60201c565b5b620005a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059e9062000853565b60405180910390fd5b5b505050565b505050565b505050565b600080600090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614620006a45760006200062985620006b460201b60201c565b1162000636578462000661565b62000660856200064c86620006b460201b60201c565b620006fc60201b62000a131790919060201c565b5b90506200069a60646200068660026006546200071460201b62000a291790919060201c565b6200072c60201b62000a3f1790919060201c565b81109150620006a9565b600191505b819250505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081836200070c9190620008c5565b905092915050565b6000818362000724919062000af2565b905092915050565b600081836200073c919062000922565b905092915050565b828054620007529062000b6a565b90600052602060002090601f016020900481019282620007765760008555620007c2565b82601f106200079157805160ff1916838001178555620007c2565b82800160010185558215620007c2579182015b82811115620007c1578251825591602001919060010190620007a4565b5b509050620007d19190620007d5565b5090565b5b80821115620007f0576000816000905550600101620007d6565b5090565b600062000803604c83620008b4565b9150620008108262000c3a565b606082019050919050565b60006200082a601f83620008b4565b9150620008378262000caf565b602082019050919050565b6200084d8162000b53565b82525050565b600060208201905081810360008301526200086e81620007f4565b9050919050565b6000602082019050818103600083015262000890816200081b565b9050919050565b6000602082019050620008ae600083018462000842565b92915050565b600082825260208201905092915050565b6000620008d28262000b53565b9150620008df8362000b53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000917576200091662000ba0565b5b828201905092915050565b60006200092f8262000b53565b91506200093c8362000b53565b9250826200094f576200094e62000bcf565b5b828204905092915050565b6000808291508390505b6001851115620009ac5780860481111562000984576200098362000ba0565b5b6001851615620009945780820291505b8081029050620009a48562000c2d565b945062000964565b94509492505050565b6000620009c28262000b53565b9150620009cf8362000b5d565b9250620009fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a06565b905092915050565b60008262000a18576001905062000aeb565b8162000a28576000905062000aeb565b816001811462000a41576002811462000a4c5762000a82565b600191505062000aeb565b60ff84111562000a615762000a6062000ba0565b5b8360020a91508482111562000a7b5762000a7a62000ba0565b5b5062000aeb565b5060208310610133831016604e8410600b841016171562000abc5782820a90508381111562000ab65762000ab562000ba0565b5b62000aeb565b62000acb84848460016200095a565b9250905081840481111562000ae55762000ae462000ba0565b5b81810290505b9392505050565b600062000aff8262000b53565b915062000b0c8362000b53565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b485762000b4762000ba0565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000b8357607f821691505b6020821081141562000b9a5762000b9962000bfe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5768616c6520616e642044756d702050726576656e74696f6e3a204f6e65205760008201527f616c6c65742063616e6e6f7420686f6c64206d6f7265207468616e203225206f60208201527f66206d617820537570706c790000000000000000000000000000000000000000604082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6120988062000ce86000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d7146102d5578063a9059cbb14610305578063d5abeb0114610335578063dd62ed3e14610353578063f2fde38b1461038357610116565b80638da5cb5b1461025d57806395d89b411461027b5780639e21257114610299578063a2777d05146102b757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349e5ef681461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039f565b60405161013091906117d1565b60405180910390f35b610153600480360381019061014e919061151f565b610431565b60405161016091906117b6565b60405180910390f35b610171610454565b60405161017e9190611993565b60405180910390f35b6101a1600480360381019061019c91906114cc565b61045e565b6040516101ae91906117b6565b60405180910390f35b6101bf610544565b6040516101cc91906119ae565b60405180910390f35b6101ef60048036038101906101ea919061151f565b61054d565b6040516101fc91906117b6565b60405180910390f35b61020d610584565b60405161021a91906117b6565b60405180910390f35b61023d6004803603810190610238919061145f565b6105b8565b60405161024a9190611993565b60405180910390f35b61025b610600565b005b610265610614565b604051610272919061179b565b60405180910390f35b61028361063e565b60405161029091906117d1565b60405180910390f35b6102a16106d0565b6040516102ae9190611993565b60405180910390f35b6102bf6106d6565b6040516102cc91906117b6565b60405180910390f35b6102ef60048036038101906102ea919061151f565b6107ac565b6040516102fc91906117b6565b60405180910390f35b61031f600480360381019061031a919061151f565b610823565b60405161032c91906117b6565b60405180910390f35b61033d6108fd565b60405161034a9190611993565b60405180910390f35b61036d6004803603810190610368919061148c565b610903565b60405161037a9190611993565b60405180910390f35b61039d6004803603810190610398919061145f565b61098a565b005b6060600380546103ae90611b82565b80601f01602080910402602001604051908101604052809291908181526020018280546103da90611b82565b80156104275780601f106103fc57610100808354040283529160200191610427565b820191906000526020600020905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b60008061043c610a55565b9050610449818585610a5d565b600191505092915050565b6000600254905090565b600080610469610a55565b9050610476858285610c28565b60011515600860149054906101000a900460ff161515141561052c5760006104bb60646104ad600287610a2990919063ffffffff16565b610a3f90919063ffffffff16565b905060006104d28286610cb490919063ffffffff16565b90506104df878783610cca565b61050c87600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cca565b816007600082825461051e91906119e5565b925050819055505050610538565b610537858585610cca565b5b60019150509392505050565b60006012905090565b600080610558610a55565b905061057981858561056a8589610903565b61057491906119e5565b610a5d565b600191505092915050565b600061058e610f42565b610596610600565b6001600860146101000a81548160ff0219169083151502179055506001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610608610f42565b6106126000610fc0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461064d90611b82565b80601f016020809104026020016040519081016040528092919081815260200182805461067990611b82565b80156106c65780601f1061069b576101008083540402835291602001916106c6565b820191906000526020600020905b8154815290600101906020018083116106a957829003601f168201915b5050505050905090565b60075481565b60006106e0610a55565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610766906118b3565b60405180910390fd5b61079d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600754611086565b60006007819055506001905090565b6000806107b7610a55565b905060006107c58286610903565b90508381101561080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080190611973565b60405180910390fd5b6108178286868403610a5d565b60019250505092915050565b60008061082e610a55565b905060011515600860149054906101000a900460ff16151514156108e65760006108756064610867600287610a2990919063ffffffff16565b610a3f90919063ffffffff16565b9050600061088c8286610cb490919063ffffffff16565b9050610899838783610cca565b6108c683600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cca565b81600760008282546108d891906119e5565b9250508190555050506108f2565b6108f1818585610cca565b5b600191505092915050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610992610f42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611833565b60405180910390fd5b610a0b81610fc0565b50565b505050565b60008183610a2191906119e5565b905092915050565b60008183610a379190611a6c565b905092915050565b60008183610a4d9190611a3b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490611933565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490611853565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c1b9190611993565b60405180910390a3505050565b6000610c348484610903565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cae5781811015610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790611873565b60405180910390fd5b610cad8484848403610a5d565b5b50505050565b60008183610cc29190611ac6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906117f3565b60405180910390fd5b610db5838383611254565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290611893565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f299190611993565b60405180910390a3610f3c84848461135c565b50505050565b610f4a610a55565b73ffffffffffffffffffffffffffffffffffffffff16610f68610614565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb5906118d3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906118f3565b60405180910390fd5b61110282600083611254565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90611813565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161123b9190611993565b60405180910390a361124f8360008461135c565b505050565b61125f838383610a0e565b60011515600860149054906101000a900460ff161515141561135757600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806113065750600960006112bd610a55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061131757506113168183611361565b5b611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90611953565b60405180910390fd5b5b505050565b505050565b600080600090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146114255760006113ca856105b8565b116113d557846113f1565b6113f0856113e2866105b8565b610a1390919063ffffffff16565b5b905061141c606461140e6002600654610a2990919063ffffffff16565b610a3f90919063ffffffff16565b8110915061142a565b600191505b819250505092915050565b60008135905061144481612034565b92915050565b6000813590506114598161204b565b92915050565b60006020828403121561147557611474611c41565b5b600061148384828501611435565b91505092915050565b600080604083850312156114a3576114a2611c41565b5b60006114b185828601611435565b92505060206114c285828601611435565b9150509250929050565b6000806000606084860312156114e5576114e4611c41565b5b60006114f386828701611435565b935050602061150486828701611435565b92505060406115158682870161144a565b9150509250925092565b6000806040838503121561153657611535611c41565b5b600061154485828601611435565b92505060206115558582860161144a565b9150509250929050565b61156881611afa565b82525050565b61157781611b0c565b82525050565b6000611588826119c9565b61159281856119d4565b93506115a2818560208601611b4f565b6115ab81611c46565b840191505092915050565b60006115c36023836119d4565b91506115ce82611c57565b604082019050919050565b60006115e66022836119d4565b91506115f182611ca6565b604082019050919050565b60006116096026836119d4565b915061161482611cf5565b604082019050919050565b600061162c6022836119d4565b915061163782611d44565b604082019050919050565b600061164f601d836119d4565b915061165a82611d93565b602082019050919050565b60006116726026836119d4565b915061167d82611dbc565b604082019050919050565b60006116956032836119d4565b91506116a082611e0b565b604082019050919050565b60006116b86020836119d4565b91506116c382611e5a565b602082019050919050565b60006116db6021836119d4565b91506116e682611e83565b604082019050919050565b60006116fe6025836119d4565b915061170982611ed2565b604082019050919050565b60006117216024836119d4565b915061172c82611f21565b604082019050919050565b6000611744604c836119d4565b915061174f82611f70565b606082019050919050565b60006117676025836119d4565b915061177282611fe5565b604082019050919050565b61178681611b38565b82525050565b61179581611b42565b82525050565b60006020820190506117b0600083018461155f565b92915050565b60006020820190506117cb600083018461156e565b92915050565b600060208201905081810360008301526117eb818461157d565b905092915050565b6000602082019050818103600083015261180c816115b6565b9050919050565b6000602082019050818103600083015261182c816115d9565b9050919050565b6000602082019050818103600083015261184c816115fc565b9050919050565b6000602082019050818103600083015261186c8161161f565b9050919050565b6000602082019050818103600083015261188c81611642565b9050919050565b600060208201905081810360008301526118ac81611665565b9050919050565b600060208201905081810360008301526118cc81611688565b9050919050565b600060208201905081810360008301526118ec816116ab565b9050919050565b6000602082019050818103600083015261190c816116ce565b9050919050565b6000602082019050818103600083015261192c816116f1565b9050919050565b6000602082019050818103600083015261194c81611714565b9050919050565b6000602082019050818103600083015261196c81611737565b9050919050565b6000602082019050818103600083015261198c8161175a565b9050919050565b60006020820190506119a8600083018461177d565b92915050565b60006020820190506119c3600083018461178c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119f082611b38565b91506119fb83611b38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a3057611a2f611bb4565b5b828201905092915050565b6000611a4682611b38565b9150611a5183611b38565b925082611a6157611a60611be3565b5b828204905092915050565b6000611a7782611b38565b9150611a8283611b38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611abb57611aba611bb4565b5b828202905092915050565b6000611ad182611b38565b9150611adc83611b38565b925082821015611aef57611aee611bb4565b5b828203905092915050565b6000611b0582611b18565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b6d578082015181840152602081019050611b52565b83811115611b7c576000848401525b50505050565b60006002820490506001821680611b9a57607f821691505b60208210811415611bae57611bad611c12565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920496e697469616c2043726561746f722063616e206272696e67206160008201527f626f7574206120737570706c7953686f636b0000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5768616c6520616e642044756d702050726576656e74696f6e3a204f6e65205760008201527f616c6c65742063616e6e6f7420686f6c64206d6f7265207468616e203225206f60208201527f66206d617820537570706c790000000000000000000000000000000000000000604082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61203d81611afa565b811461204857600080fd5b50565b61205481611b38565b811461205f57600080fd5b5056fea2646970667358221220feeb7cc5e6ca36cfa6546d481c7aa5c794f1ebc4fdb4eef897a174fe28f63fa364736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a457c2d711610071578063a457c2d7146102d5578063a9059cbb14610305578063d5abeb0114610335578063dd62ed3e14610353578063f2fde38b1461038357610116565b80638da5cb5b1461025d57806395d89b411461027b5780639e21257114610299578063a2777d05146102b757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d557806349e5ef681461020557806370a0823114610223578063715018a61461025357610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039f565b60405161013091906117d1565b60405180910390f35b610153600480360381019061014e919061151f565b610431565b60405161016091906117b6565b60405180910390f35b610171610454565b60405161017e9190611993565b60405180910390f35b6101a1600480360381019061019c91906114cc565b61045e565b6040516101ae91906117b6565b60405180910390f35b6101bf610544565b6040516101cc91906119ae565b60405180910390f35b6101ef60048036038101906101ea919061151f565b61054d565b6040516101fc91906117b6565b60405180910390f35b61020d610584565b60405161021a91906117b6565b60405180910390f35b61023d6004803603810190610238919061145f565b6105b8565b60405161024a9190611993565b60405180910390f35b61025b610600565b005b610265610614565b604051610272919061179b565b60405180910390f35b61028361063e565b60405161029091906117d1565b60405180910390f35b6102a16106d0565b6040516102ae9190611993565b60405180910390f35b6102bf6106d6565b6040516102cc91906117b6565b60405180910390f35b6102ef60048036038101906102ea919061151f565b6107ac565b6040516102fc91906117b6565b60405180910390f35b61031f600480360381019061031a919061151f565b610823565b60405161032c91906117b6565b60405180910390f35b61033d6108fd565b60405161034a9190611993565b60405180910390f35b61036d6004803603810190610368919061148c565b610903565b60405161037a9190611993565b60405180910390f35b61039d6004803603810190610398919061145f565b61098a565b005b6060600380546103ae90611b82565b80601f01602080910402602001604051908101604052809291908181526020018280546103da90611b82565b80156104275780601f106103fc57610100808354040283529160200191610427565b820191906000526020600020905b81548152906001019060200180831161040a57829003601f168201915b5050505050905090565b60008061043c610a55565b9050610449818585610a5d565b600191505092915050565b6000600254905090565b600080610469610a55565b9050610476858285610c28565b60011515600860149054906101000a900460ff161515141561052c5760006104bb60646104ad600287610a2990919063ffffffff16565b610a3f90919063ffffffff16565b905060006104d28286610cb490919063ffffffff16565b90506104df878783610cca565b61050c87600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cca565b816007600082825461051e91906119e5565b925050819055505050610538565b610537858585610cca565b5b60019150509392505050565b60006012905090565b600080610558610a55565b905061057981858561056a8589610903565b61057491906119e5565b610a5d565b600191505092915050565b600061058e610f42565b610596610600565b6001600860146101000a81548160ff0219169083151502179055506001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610608610f42565b6106126000610fc0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461064d90611b82565b80601f016020809104026020016040519081016040528092919081815260200182805461067990611b82565b80156106c65780601f1061069b576101008083540402835291602001916106c6565b820191906000526020600020905b8154815290600101906020018083116106a957829003601f168201915b5050505050905090565b60075481565b60006106e0610a55565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461076f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610766906118b3565b60405180910390fd5b61079d600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600754611086565b60006007819055506001905090565b6000806107b7610a55565b905060006107c58286610903565b90508381101561080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080190611973565b60405180910390fd5b6108178286868403610a5d565b60019250505092915050565b60008061082e610a55565b905060011515600860149054906101000a900460ff16151514156108e65760006108756064610867600287610a2990919063ffffffff16565b610a3f90919063ffffffff16565b9050600061088c8286610cb490919063ffffffff16565b9050610899838783610cca565b6108c683600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610cca565b81600760008282546108d891906119e5565b9250508190555050506108f2565b6108f1818585610cca565b5b600191505092915050565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610992610f42565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611833565b60405180910390fd5b610a0b81610fc0565b50565b505050565b60008183610a2191906119e5565b905092915050565b60008183610a379190611a6c565b905092915050565b60008183610a4d9190611a3b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490611933565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490611853565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c1b9190611993565b60405180910390a3505050565b6000610c348484610903565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cae5781811015610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9790611873565b60405180910390fd5b610cad8484848403610a5d565b5b50505050565b60008183610cc29190611ac6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611913565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906117f3565b60405180910390fd5b610db5838383611254565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3290611893565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f299190611993565b60405180910390a3610f3c84848461135c565b50505050565b610f4a610a55565b73ffffffffffffffffffffffffffffffffffffffff16610f68610614565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb5906118d3565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906118f3565b60405180910390fd5b61110282600083611254565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117f90611813565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161123b9190611993565b60405180910390a361124f8360008461135c565b505050565b61125f838383610a0e565b60011515600860149054906101000a900460ff161515141561135757600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806113065750600960006112bd610a55565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061131757506113168183611361565b5b611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90611953565b60405180910390fd5b5b505050565b505050565b600080600090506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146114255760006113ca856105b8565b116113d557846113f1565b6113f0856113e2866105b8565b610a1390919063ffffffff16565b5b905061141c606461140e6002600654610a2990919063ffffffff16565b610a3f90919063ffffffff16565b8110915061142a565b600191505b819250505092915050565b60008135905061144481612034565b92915050565b6000813590506114598161204b565b92915050565b60006020828403121561147557611474611c41565b5b600061148384828501611435565b91505092915050565b600080604083850312156114a3576114a2611c41565b5b60006114b185828601611435565b92505060206114c285828601611435565b9150509250929050565b6000806000606084860312156114e5576114e4611c41565b5b60006114f386828701611435565b935050602061150486828701611435565b92505060406115158682870161144a565b9150509250925092565b6000806040838503121561153657611535611c41565b5b600061154485828601611435565b92505060206115558582860161144a565b9150509250929050565b61156881611afa565b82525050565b61157781611b0c565b82525050565b6000611588826119c9565b61159281856119d4565b93506115a2818560208601611b4f565b6115ab81611c46565b840191505092915050565b60006115c36023836119d4565b91506115ce82611c57565b604082019050919050565b60006115e66022836119d4565b91506115f182611ca6565b604082019050919050565b60006116096026836119d4565b915061161482611cf5565b604082019050919050565b600061162c6022836119d4565b915061163782611d44565b604082019050919050565b600061164f601d836119d4565b915061165a82611d93565b602082019050919050565b60006116726026836119d4565b915061167d82611dbc565b604082019050919050565b60006116956032836119d4565b91506116a082611e0b565b604082019050919050565b60006116b86020836119d4565b91506116c382611e5a565b602082019050919050565b60006116db6021836119d4565b91506116e682611e83565b604082019050919050565b60006116fe6025836119d4565b915061170982611ed2565b604082019050919050565b60006117216024836119d4565b915061172c82611f21565b604082019050919050565b6000611744604c836119d4565b915061174f82611f70565b606082019050919050565b60006117676025836119d4565b915061177282611fe5565b604082019050919050565b61178681611b38565b82525050565b61179581611b42565b82525050565b60006020820190506117b0600083018461155f565b92915050565b60006020820190506117cb600083018461156e565b92915050565b600060208201905081810360008301526117eb818461157d565b905092915050565b6000602082019050818103600083015261180c816115b6565b9050919050565b6000602082019050818103600083015261182c816115d9565b9050919050565b6000602082019050818103600083015261184c816115fc565b9050919050565b6000602082019050818103600083015261186c8161161f565b9050919050565b6000602082019050818103600083015261188c81611642565b9050919050565b600060208201905081810360008301526118ac81611665565b9050919050565b600060208201905081810360008301526118cc81611688565b9050919050565b600060208201905081810360008301526118ec816116ab565b9050919050565b6000602082019050818103600083015261190c816116ce565b9050919050565b6000602082019050818103600083015261192c816116f1565b9050919050565b6000602082019050818103600083015261194c81611714565b9050919050565b6000602082019050818103600083015261196c81611737565b9050919050565b6000602082019050818103600083015261198c8161175a565b9050919050565b60006020820190506119a8600083018461177d565b92915050565b60006020820190506119c3600083018461178c565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119f082611b38565b91506119fb83611b38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a3057611a2f611bb4565b5b828201905092915050565b6000611a4682611b38565b9150611a5183611b38565b925082611a6157611a60611be3565b5b828204905092915050565b6000611a7782611b38565b9150611a8283611b38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611abb57611aba611bb4565b5b828202905092915050565b6000611ad182611b38565b9150611adc83611b38565b925082821015611aef57611aee611bb4565b5b828203905092915050565b6000611b0582611b18565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b6d578082015181840152602081019050611b52565b83811115611b7c576000848401525b50505050565b60006002820490506001821680611b9a57607f821691505b60208210811415611bae57611bad611c12565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920496e697469616c2043726561746f722063616e206272696e67206160008201527f626f7574206120737570706c7953686f636b0000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5768616c6520616e642044756d702050726576656e74696f6e3a204f6e65205760008201527f616c6c65742063616e6e6f7420686f6c64206d6f7265207468616e203225206f60208201527f66206d617820537570706c790000000000000000000000000000000000000000604082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61203d81611afa565b811461204857600080fd5b50565b61205481611b38565b811461205f57600080fd5b5056fea2646970667358221220feeb7cc5e6ca36cfa6546d481c7aa5c794f1ebc4fdb4eef897a174fe28f63fa364736f6c63430008070033

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.