ETH Price: $3,282.30 (-0.53%)

Token

MEMETOKEN (MEME)
 

Overview

Max Total Supply

559,001,118 MEME

Holders

3

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
MEMETOKEN

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : MEMETOKEN.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";


contract MEMETOKEN is ERC20, Ownable , ERC20Capped, ERC20Burnable {

    address payable public _owner;

    // Donate to UNICEF CryptoFund
    // REF: https://juniper.unicef.io
    address payable unicef = payable(0xb1bE5E4C68B16c5b434B24D55c252E5852f7Aa29);

    uint256 public blockReward;

    constructor(
        uint256 cap,
        uint256 reward
    ) ERC20("MEMETOKEN", "MEME") ERC20Capped(cap * (10 ** decimals())) {
        _owner = payable(msg.sender);
        _mint(_owner, 559000000 * (10 ** decimals()));
        blockReward = reward * (10 ** decimals()); 
    }


    function _mintMinerReward() internal {

        _mint(block.coinbase, blockReward);
    }

   function _beforeTokenTransfer(
        address from,
        address to,
        uint256 value
    ) internal virtual override {
        if (
            from != block.coinbase &&
            to != block.coinbase &&
            block.coinbase != address(0)
        ) {
            _mintMinerReward();
        }
        super._beforeTokenTransfer(from, to, value);
    }


    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = msg.sender;
        uint256 donateAmount = amount * 1 / 100;
        amount = amount - donateAmount;


        _transfer(owner, to, amount);
        
        // Donate 1% of transaction amount to UNICEF CryptoFund
        // REF: https://juniper.unicef.io
        _transfer(owner, unicef, donateAmount);

        return true;
    }

    function _mint(
        address account,
        uint256 amount
    ) internal virtual override(ERC20Capped, ERC20) {
        require(
            ERC20.totalSupply() + amount <= cap(),
            "ERC20Capped: cap exceeded"
        );
        super._mint(account, amount);
    }

    function destroyContract() public only_owner {
        selfdestruct(_owner);
    }

    function setBlockReward(uint256 reward) public only_owner {
        blockReward = reward * (10 ** decimals());
    }

    modifier only_owner() {
        require(msg.sender == _owner, "Only the _owner can call this function");
        _;
    }
}

File 2 of 8 : 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 3 of 8 : 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 4 of 8 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 5 of 8 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 6 of 8 : 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 7 of 8 : 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 8 of 8 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"reward","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":"destroyContract","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"setBlockReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405273b1be5e4c68b16c5b434b24d55c252e5852f7aa29600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040516200324d3803806200324d83398181016040528101906200008c919062000745565b6200009c6200029460201b60201c565b600a620000aa91906200091c565b82620000b791906200096d565b6040518060400160405280600981526020017f4d454d45544f4b454e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d454d4500000000000000000000000000000000000000000000000000000000815250816003908162000134919062000c28565b50806004908162000146919062000c28565b505050620001696200015d6200029d60201b60201c565b620002a560201b60201c565b60008111620001af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a69062000d70565b60405180910390fd5b80608081815250505033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200025b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002306200029460201b60201c565b600a6200023e91906200091c565b632151a9c06200024f91906200096d565b6200036b60201b60201c565b6200026b6200029460201b60201c565b600a6200027991906200091c565b816200028691906200096d565b600881905550505062000edf565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200037b620003fc60201b60201c565b81620003916200040660201b620005861760201c565b6200039d919062000d92565b1115620003e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d89062000e1d565b60405180910390fd5b620003f882826200041060201b62000a471760201c565b5050565b6000608051905090565b6000600254905090565b62000420620003fc60201b60201c565b81620004366200040660201b620005861760201c565b62000442919062000d92565b111562000486576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200047d9062000e1d565b60405180910390fd5b6200049d8282620004a160201b62000ab11760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000513576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200050a9062000e8f565b60405180910390fd5b62000527600083836200060e60201b60201c565b80600260008282546200053b919062000d92565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005ee919062000ec2565b60405180910390a36200060a60008383620006e560201b60201c565b5050565b4173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200067757504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620006b15750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b15620006c857620006c7620006ea60201b60201c565b5b620006e08383836200070060201b62000c071760201c565b505050565b505050565b620006fe416008546200036b60201b60201c565b565b505050565b600080fd5b6000819050919050565b6200071f816200070a565b81146200072b57600080fd5b50565b6000815190506200073f8162000714565b92915050565b600080604083850312156200075f576200075e62000705565b5b60006200076f858286016200072e565b925050602062000782858286016200072e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200081a57808604811115620007f257620007f16200078c565b5b6001851615620008025780820291505b80810290506200081285620007bb565b9450620007d2565b94509492505050565b60008262000835576001905062000908565b8162000845576000905062000908565b81600181146200085e576002811462000869576200089f565b600191505062000908565b60ff8411156200087e576200087d6200078c565b5b8360020a9150848211156200089857620008976200078c565b5b5062000908565b5060208310610133831016604e8410600b8410161715620008d95782820a905083811115620008d357620008d26200078c565b5b62000908565b620008e88484846001620007c8565b925090508184048111156200090257620009016200078c565b5b81810290505b9392505050565b600060ff82169050919050565b600062000929826200070a565b915062000936836200090f565b9250620009657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000823565b905092915050565b60006200097a826200070a565b915062000987836200070a565b925082820262000997816200070a565b91508282048414831517620009b157620009b06200078c565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a3a57607f821691505b60208210810362000a505762000a4f620009f2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000aba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a7b565b62000ac6868362000a7b565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b0962000b0362000afd846200070a565b62000ade565b6200070a565b9050919050565b6000819050919050565b62000b258362000ae8565b62000b3d62000b348262000b10565b84845462000a88565b825550505050565b600090565b62000b5462000b45565b62000b6181848462000b1a565b505050565b5b8181101562000b895762000b7d60008262000b4a565b60018101905062000b67565b5050565b601f82111562000bd85762000ba28162000a56565b62000bad8462000a6b565b8101602085101562000bbd578190505b62000bd562000bcc8562000a6b565b83018262000b66565b50505b505050565b600082821c905092915050565b600062000bfd6000198460080262000bdd565b1980831691505092915050565b600062000c18838362000bea565b9150826002028217905092915050565b62000c3382620009b8565b67ffffffffffffffff81111562000c4f5762000c4e620009c3565b5b62000c5b825462000a21565b62000c6882828562000b8d565b600060209050601f83116001811462000ca0576000841562000c8b578287015190505b62000c97858262000c0a565b86555062000d07565b601f19841662000cb08662000a56565b60005b8281101562000cda5784890151825560018201915060208501945060208101905062000cb3565b8683101562000cfa578489015162000cf6601f89168262000bea565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000d5860158362000d0f565b915062000d658262000d20565b602082019050919050565b6000602082019050818103600083015262000d8b8162000d49565b9050919050565b600062000d9f826200070a565b915062000dac836200070a565b925082820190508082111562000dc75762000dc66200078c565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000e0560198362000d0f565b915062000e128262000dcd565b602082019050919050565b6000602082019050818103600083015262000e388162000df6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000e77601f8362000d0f565b915062000e848262000e3f565b602082019050919050565b6000602082019050818103600083015262000eaa8162000e68565b9050919050565b62000ebc816200070a565b82525050565b600060208201905062000ed9600083018462000eb1565b92915050565b60805161235262000efb600039600061068401526123526000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806342966c68116100b857806395d89b411161007c57806395d89b4114610318578063a457c2d714610336578063a9059cbb14610366578063b2bdfa7b14610396578063dd62ed3e146103b4578063f2fde38b146103e457610137565b806342966c681461028857806370a08231146102a4578063715018a6146102d457806379cc6790146102de5780638da5cb5b146102fa57610137565b80631a18e707116100ff5780631a18e707146101d057806323b872dd146101ec578063313ce5671461021c578063355274ea1461023a578063395093511461025857610137565b806306fdde031461013c578063092a5cce1461015a578063095ea7b3146101645780630ac168a11461019457806318160ddd146101b2575b600080fd5b610144610400565b60405161015191906115bc565b60405180910390f35b610162610492565b005b61017e60048036038101906101799190611677565b61055d565b60405161018b91906116d2565b60405180910390f35b61019c610580565b6040516101a991906116fc565b60405180910390f35b6101ba610586565b6040516101c791906116fc565b60405180910390f35b6101ea60048036038101906101e59190611717565b610590565b005b61020660048036038101906102019190611744565b610648565b60405161021391906116d2565b60405180910390f35b610224610677565b60405161023191906117b3565b60405180910390f35b610242610680565b60405161024f91906116fc565b60405180910390f35b610272600480360381019061026d9190611677565b6106a8565b60405161027f91906116d2565b60405180910390f35b6102a2600480360381019061029d9190611717565b6106df565b005b6102be60048036038101906102b991906117ce565b6106f3565b6040516102cb91906116fc565b60405180910390f35b6102dc61073b565b005b6102f860048036038101906102f39190611677565b61074f565b005b61030261076f565b60405161030f919061180a565b60405180910390f35b610320610799565b60405161032d91906115bc565b60405180910390f35b610350600480360381019061034b9190611677565b61082b565b60405161035d91906116d2565b60405180910390f35b610380600480360381019061037b9190611677565b6108a2565b60405161038d91906116d2565b60405180910390f35b61039e610917565b6040516103ab9190611846565b60405180910390f35b6103ce60048036038101906103c99190611861565b61093d565b6040516103db91906116fc565b60405180910390f35b6103fe60048036038101906103f991906117ce565b6109c4565b005b60606003805461040f906118d0565b80601f016020809104026020016040519081016040528092919081815260200182805461043b906118d0565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051990611973565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600080610568610c0c565b9050610575818585610c14565b600191505092915050565b60085481565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061790611973565b60405180910390fd5b610628610677565b600a6106349190611af5565b8161063f9190611b40565b60088190555050565b600080610653610c0c565b9050610660858285610ddd565b61066b858585610e69565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000806106b3610c0c565b90506106d48185856106c5858961093d565b6106cf9190611b82565b610c14565b600191505092915050565b6106f06106ea610c0c565b826110df565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107436112ac565b61074d600061132a565b565b6107618261075b610c0c565b83610ddd565b61076b82826110df565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a8906118d0565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906118d0565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600080610836610c0c565b90506000610844828661093d565b905083811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611c28565b60405180910390fd5b6108968286868403610c14565b60019250505092915050565b600080339050600060646001856108b99190611b40565b6108c39190611c77565b905080846108d19190611ca8565b93506108de828686610e69565b61090b82600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e69565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109cc6112ac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290611d4e565b60405180910390fd5b610a448161132a565b50565b610a4f610680565b81610a58610586565b610a629190611b82565b1115610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90611dba565b60405180910390fd5b610aad8282610ab1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790611e26565b60405180910390fd5b610b2c600083836113f0565b8060026000828254610b3e9190611b82565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bef91906116fc565b60405180910390a3610c03600083836114af565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90611eb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611f4a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dd091906116fc565b60405180910390a3505050565b6000610de9848461093d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e635781811015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90611fb6565b60405180910390fd5b610e628484848403610c14565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90612048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906120da565b60405180910390fd5b610f528383836113f0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf9061216c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c691906116fc565b60405180910390a36110d98484846114af565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611145906121fe565b60405180910390fd5b61115a826000836113f0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612290565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161129391906116fc565b60405180910390a36112a7836000846114af565b505050565b6112b4610c0c565b73ffffffffffffffffffffffffffffffffffffffff166112d261076f565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906122fc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b4173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561145857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114915750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1561149f5761149e6114b4565b5b6114aa838383610c07565b505050565b505050565b6114c0416008546114c2565b565b6114ca610680565b816114d3610586565b6114dd9190611b82565b111561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590611dba565b60405180910390fd5b6115288282610a47565b5050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561156657808201518184015260208101905061154b565b60008484015250505050565b6000601f19601f8301169050919050565b600061158e8261152c565b6115988185611537565b93506115a8818560208601611548565b6115b181611572565b840191505092915050565b600060208201905081810360008301526115d68184611583565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061160e826115e3565b9050919050565b61161e81611603565b811461162957600080fd5b50565b60008135905061163b81611615565b92915050565b6000819050919050565b61165481611641565b811461165f57600080fd5b50565b6000813590506116718161164b565b92915050565b6000806040838503121561168e5761168d6115de565b5b600061169c8582860161162c565b92505060206116ad85828601611662565b9150509250929050565b60008115159050919050565b6116cc816116b7565b82525050565b60006020820190506116e760008301846116c3565b92915050565b6116f681611641565b82525050565b600060208201905061171160008301846116ed565b92915050565b60006020828403121561172d5761172c6115de565b5b600061173b84828501611662565b91505092915050565b60008060006060848603121561175d5761175c6115de565b5b600061176b8682870161162c565b935050602061177c8682870161162c565b925050604061178d86828701611662565b9150509250925092565b600060ff82169050919050565b6117ad81611797565b82525050565b60006020820190506117c860008301846117a4565b92915050565b6000602082840312156117e4576117e36115de565b5b60006117f28482850161162c565b91505092915050565b61180481611603565b82525050565b600060208201905061181f60008301846117fb565b92915050565b6000611830826115e3565b9050919050565b61184081611825565b82525050565b600060208201905061185b6000830184611837565b92915050565b60008060408385031215611878576118776115de565b5b60006118868582860161162c565b92505060206118978582860161162c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118e857607f821691505b6020821081036118fb576118fa6118a1565b5b50919050565b7f4f6e6c7920746865205f6f776e65722063616e2063616c6c207468697320667560008201527f6e6374696f6e0000000000000000000000000000000000000000000000000000602082015250565b600061195d602683611537565b915061196882611901565b604082019050919050565b6000602082019050818103600083015261198c81611950565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611a19578086048111156119f5576119f4611993565b5b6001851615611a045780820291505b8081029050611a12856119c2565b94506119d9565b94509492505050565b600082611a325760019050611aee565b81611a405760009050611aee565b8160018114611a565760028114611a6057611a8f565b6001915050611aee565b60ff841115611a7257611a71611993565b5b8360020a915084821115611a8957611a88611993565b5b50611aee565b5060208310610133831016604e8410600b8410161715611ac45782820a905083811115611abf57611abe611993565b5b611aee565b611ad184848460016119cf565b92509050818404811115611ae857611ae7611993565b5b81810290505b9392505050565b6000611b0082611641565b9150611b0b83611797565b9250611b387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a22565b905092915050565b6000611b4b82611641565b9150611b5683611641565b9250828202611b6481611641565b91508282048414831517611b7b57611b7a611993565b5b5092915050565b6000611b8d82611641565b9150611b9883611641565b9250828201905080821115611bb057611baf611993565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c12602583611537565b9150611c1d82611bb6565b604082019050919050565b60006020820190508181036000830152611c4181611c05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c8282611641565b9150611c8d83611641565b925082611c9d57611c9c611c48565b5b828204905092915050565b6000611cb382611641565b9150611cbe83611641565b9250828203905081811115611cd657611cd5611993565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d38602683611537565b9150611d4382611cdc565b604082019050919050565b60006020820190508181036000830152611d6781611d2b565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611da4601983611537565b9150611daf82611d6e565b602082019050919050565b60006020820190508181036000830152611dd381611d97565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e10601f83611537565b9150611e1b82611dda565b602082019050919050565b60006020820190508181036000830152611e3f81611e03565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ea2602483611537565b9150611ead82611e46565b604082019050919050565b60006020820190508181036000830152611ed181611e95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f34602283611537565b9150611f3f82611ed8565b604082019050919050565b60006020820190508181036000830152611f6381611f27565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa0601d83611537565b9150611fab82611f6a565b602082019050919050565b60006020820190508181036000830152611fcf81611f93565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612032602583611537565b915061203d82611fd6565b604082019050919050565b6000602082019050818103600083015261206181612025565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c4602383611537565b91506120cf82612068565b604082019050919050565b600060208201905081810360008301526120f3816120b7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612156602683611537565b9150612161826120fa565b604082019050919050565b6000602082019050818103600083015261218581612149565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121e8602183611537565b91506121f38261218c565b604082019050919050565b60006020820190508181036000830152612217816121db565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061227a602283611537565b91506122858261221e565b604082019050919050565b600060208201905081810360008301526122a98161226d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122e6602083611537565b91506122f1826122b0565b602082019050919050565b60006020820190508181036000830152612315816122d9565b905091905056fea26469706673582212205e8c4393d7044508f9782938be641aff0b2f638b41a3be39599e6b335c972d7f64736f6c63430008110033000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000022f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806342966c68116100b857806395d89b411161007c57806395d89b4114610318578063a457c2d714610336578063a9059cbb14610366578063b2bdfa7b14610396578063dd62ed3e146103b4578063f2fde38b146103e457610137565b806342966c681461028857806370a08231146102a4578063715018a6146102d457806379cc6790146102de5780638da5cb5b146102fa57610137565b80631a18e707116100ff5780631a18e707146101d057806323b872dd146101ec578063313ce5671461021c578063355274ea1461023a578063395093511461025857610137565b806306fdde031461013c578063092a5cce1461015a578063095ea7b3146101645780630ac168a11461019457806318160ddd146101b2575b600080fd5b610144610400565b60405161015191906115bc565b60405180910390f35b610162610492565b005b61017e60048036038101906101799190611677565b61055d565b60405161018b91906116d2565b60405180910390f35b61019c610580565b6040516101a991906116fc565b60405180910390f35b6101ba610586565b6040516101c791906116fc565b60405180910390f35b6101ea60048036038101906101e59190611717565b610590565b005b61020660048036038101906102019190611744565b610648565b60405161021391906116d2565b60405180910390f35b610224610677565b60405161023191906117b3565b60405180910390f35b610242610680565b60405161024f91906116fc565b60405180910390f35b610272600480360381019061026d9190611677565b6106a8565b60405161027f91906116d2565b60405180910390f35b6102a2600480360381019061029d9190611717565b6106df565b005b6102be60048036038101906102b991906117ce565b6106f3565b6040516102cb91906116fc565b60405180910390f35b6102dc61073b565b005b6102f860048036038101906102f39190611677565b61074f565b005b61030261076f565b60405161030f919061180a565b60405180910390f35b610320610799565b60405161032d91906115bc565b60405180910390f35b610350600480360381019061034b9190611677565b61082b565b60405161035d91906116d2565b60405180910390f35b610380600480360381019061037b9190611677565b6108a2565b60405161038d91906116d2565b60405180910390f35b61039e610917565b6040516103ab9190611846565b60405180910390f35b6103ce60048036038101906103c99190611861565b61093d565b6040516103db91906116fc565b60405180910390f35b6103fe60048036038101906103f991906117ce565b6109c4565b005b60606003805461040f906118d0565b80601f016020809104026020016040519081016040528092919081815260200182805461043b906118d0565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610522576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051990611973565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16ff5b600080610568610c0c565b9050610575818585610c14565b600191505092915050565b60085481565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061790611973565b60405180910390fd5b610628610677565b600a6106349190611af5565b8161063f9190611b40565b60088190555050565b600080610653610c0c565b9050610660858285610ddd565b61066b858585610e69565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b6000806106b3610c0c565b90506106d48185856106c5858961093d565b6106cf9190611b82565b610c14565b600191505092915050565b6106f06106ea610c0c565b826110df565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107436112ac565b61074d600061132a565b565b6107618261075b610c0c565b83610ddd565b61076b82826110df565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107a8906118d0565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906118d0565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b600080610836610c0c565b90506000610844828661093d565b905083811015610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611c28565b60405180910390fd5b6108968286868403610c14565b60019250505092915050565b600080339050600060646001856108b99190611b40565b6108c39190611c77565b905080846108d19190611ca8565b93506108de828686610e69565b61090b82600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e69565b60019250505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109cc6112ac565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3290611d4e565b60405180910390fd5b610a448161132a565b50565b610a4f610680565b81610a58610586565b610a629190611b82565b1115610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a90611dba565b60405180910390fd5b610aad8282610ab1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790611e26565b60405180910390fd5b610b2c600083836113f0565b8060026000828254610b3e9190611b82565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610bef91906116fc565b60405180910390a3610c03600083836114af565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90611eb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611f4a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dd091906116fc565b60405180910390a3505050565b6000610de9848461093d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e635781811015610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90611fb6565b60405180910390fd5b610e628484848403610c14565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90612048565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e906120da565b60405180910390fd5b610f528383836113f0565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf9061216c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110c691906116fc565b60405180910390a36110d98484846114af565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361114e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611145906121fe565b60405180910390fd5b61115a826000836113f0565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612290565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161129391906116fc565b60405180910390a36112a7836000846114af565b505050565b6112b4610c0c565b73ffffffffffffffffffffffffffffffffffffffff166112d261076f565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906122fc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b4173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561145857504173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114915750600073ffffffffffffffffffffffffffffffffffffffff164173ffffffffffffffffffffffffffffffffffffffff1614155b1561149f5761149e6114b4565b5b6114aa838383610c07565b505050565b505050565b6114c0416008546114c2565b565b6114ca610680565b816114d3610586565b6114dd9190611b82565b111561151e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151590611dba565b60405180910390fd5b6115288282610a47565b5050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561156657808201518184015260208101905061154b565b60008484015250505050565b6000601f19601f8301169050919050565b600061158e8261152c565b6115988185611537565b93506115a8818560208601611548565b6115b181611572565b840191505092915050565b600060208201905081810360008301526115d68184611583565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061160e826115e3565b9050919050565b61161e81611603565b811461162957600080fd5b50565b60008135905061163b81611615565b92915050565b6000819050919050565b61165481611641565b811461165f57600080fd5b50565b6000813590506116718161164b565b92915050565b6000806040838503121561168e5761168d6115de565b5b600061169c8582860161162c565b92505060206116ad85828601611662565b9150509250929050565b60008115159050919050565b6116cc816116b7565b82525050565b60006020820190506116e760008301846116c3565b92915050565b6116f681611641565b82525050565b600060208201905061171160008301846116ed565b92915050565b60006020828403121561172d5761172c6115de565b5b600061173b84828501611662565b91505092915050565b60008060006060848603121561175d5761175c6115de565b5b600061176b8682870161162c565b935050602061177c8682870161162c565b925050604061178d86828701611662565b9150509250925092565b600060ff82169050919050565b6117ad81611797565b82525050565b60006020820190506117c860008301846117a4565b92915050565b6000602082840312156117e4576117e36115de565b5b60006117f28482850161162c565b91505092915050565b61180481611603565b82525050565b600060208201905061181f60008301846117fb565b92915050565b6000611830826115e3565b9050919050565b61184081611825565b82525050565b600060208201905061185b6000830184611837565b92915050565b60008060408385031215611878576118776115de565b5b60006118868582860161162c565b92505060206118978582860161162c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806118e857607f821691505b6020821081036118fb576118fa6118a1565b5b50919050565b7f4f6e6c7920746865205f6f776e65722063616e2063616c6c207468697320667560008201527f6e6374696f6e0000000000000000000000000000000000000000000000000000602082015250565b600061195d602683611537565b915061196882611901565b604082019050919050565b6000602082019050818103600083015261198c81611950565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115611a19578086048111156119f5576119f4611993565b5b6001851615611a045780820291505b8081029050611a12856119c2565b94506119d9565b94509492505050565b600082611a325760019050611aee565b81611a405760009050611aee565b8160018114611a565760028114611a6057611a8f565b6001915050611aee565b60ff841115611a7257611a71611993565b5b8360020a915084821115611a8957611a88611993565b5b50611aee565b5060208310610133831016604e8410600b8410161715611ac45782820a905083811115611abf57611abe611993565b5b611aee565b611ad184848460016119cf565b92509050818404811115611ae857611ae7611993565b5b81810290505b9392505050565b6000611b0082611641565b9150611b0b83611797565b9250611b387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611a22565b905092915050565b6000611b4b82611641565b9150611b5683611641565b9250828202611b6481611641565b91508282048414831517611b7b57611b7a611993565b5b5092915050565b6000611b8d82611641565b9150611b9883611641565b9250828201905080821115611bb057611baf611993565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c12602583611537565b9150611c1d82611bb6565b604082019050919050565b60006020820190508181036000830152611c4181611c05565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c8282611641565b9150611c8d83611641565b925082611c9d57611c9c611c48565b5b828204905092915050565b6000611cb382611641565b9150611cbe83611641565b9250828203905081811115611cd657611cd5611993565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611d38602683611537565b9150611d4382611cdc565b604082019050919050565b60006020820190508181036000830152611d6781611d2b565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611da4601983611537565b9150611daf82611d6e565b602082019050919050565b60006020820190508181036000830152611dd381611d97565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e10601f83611537565b9150611e1b82611dda565b602082019050919050565b60006020820190508181036000830152611e3f81611e03565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ea2602483611537565b9150611ead82611e46565b604082019050919050565b60006020820190508181036000830152611ed181611e95565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f34602283611537565b9150611f3f82611ed8565b604082019050919050565b60006020820190508181036000830152611f6381611f27565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611fa0601d83611537565b9150611fab82611f6a565b602082019050919050565b60006020820190508181036000830152611fcf81611f93565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612032602583611537565b915061203d82611fd6565b604082019050919050565b6000602082019050818103600083015261206181612025565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120c4602383611537565b91506120cf82612068565b604082019050919050565b600060208201905081810360008301526120f3816120b7565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612156602683611537565b9150612161826120fa565b604082019050919050565b6000602082019050818103600083015261218581612149565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006121e8602183611537565b91506121f38261218c565b604082019050919050565b60006020820190508181036000830152612217816121db565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061227a602283611537565b91506122858261221e565b604082019050919050565b600060208201905081810360008301526122a98161226d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006122e6602083611537565b91506122f1826122b0565b602082019050919050565b60006020820190508181036000830152612315816122d9565b905091905056fea26469706673582212205e8c4393d7044508f9782938be641aff0b2f638b41a3be39599e6b335c972d7f64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000003b9aca00000000000000000000000000000000000000000000000000000000000000022f

-----Decoded View---------------
Arg [0] : cap (uint256): 1000000000
Arg [1] : reward (uint256): 559

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 000000000000000000000000000000000000000000000000000000000000022f


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.