ETH Price: $1,450.35 (-8.12%)

Token

Sotokoto Peace Token (STKT)
 

Overview

Max Total Supply

50,000,000,000 STKT

Holders

382

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
65,468.54 STKT

Value
$0.00
0x5d0589dfb83201290ac7b418941daa388f24ea8c
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:
SotokotoPeaceToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : SotokotoPeaceToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract SotokotoPeaceToken is ERC20, Pausable, Ownable {
    uint256 public constant DECIMAL_MULTIPLIER = 10**8;
    uint256 public constant INITIAL_SUPPLY = 500 * 10**6 * DECIMAL_MULTIPLIER;
    uint256 public constant MAX_SUPPLY = 50 * 10**9 * DECIMAL_MULTIPLIER;

    /**
     * @dev Constructor.
     * @param _name name of the token
     * @param _symbol symbol of the token, 3-4 chars is recommended
     * @param _admin address that get INITIAL_SUPPLY of token
     */
    constructor(
        string memory _name,
        string memory _symbol,
        address _admin
    ) ERC20(_name, _symbol) {
        _mint(_admin, INITIAL_SUPPLY);
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function pause() public onlyOwner {
        _pause();
    }


    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function unpause() public onlyOwner {
        _unpause();
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view virtual override returns (uint8) {
        return 8;
    }

    /**
     * @dev Creates `amount` tokens and assigns them to `to`, increasing
     * the total supply if have role contract owner.
     */
    function mint(address to, uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_SUPPLY, "MINT: Max supply exceeded");
        _mint(to, amount);
    }

    /**
     * @dev Destroys `amount` tokens from owner of contract, reducing the
     * total supply if have role contract owner.
     */
    function burn(uint256 amount) external onlyOwner {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Prevent transfer token if have issues.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal override whenNotPaused {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 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 3 of 7 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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;
        }
        _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;
        _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;
        }
        _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 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 : 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 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);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_admin","type":"address"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DECIMAL_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002a1838038062002a18833981810160405281019062000037919062000507565b8282816003908051906020019062000051929190620003c2565b5080600490805190602001906200006a929190620003c2565b5050506000600560006101000a81548160ff021916908315150217905550620000a86200009c620000d860201b60201c565b620000e060201b60201c565b620000cf816305f5e100631dcd6500620000c391906200072e565b620001a660201b60201c565b5050506200098d565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000219576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002109062000622565b60405180910390fd5b6200022d600083836200031f60201b60201c565b8060026000828254620002419190620006d1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002989190620006d1565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002ff919062000644565b60405180910390a36200031b600083836200034c60201b60201c565b5050565b6200032f6200035160201b60201c565b62000347838383620003a660201b6200090f1760201c565b505050565b505050565b62000361620003ab60201b60201c565b15620003a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039b9062000600565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b828054620003d09062000803565b90600052602060002090601f016020900481019282620003f4576000855562000440565b82601f106200040f57805160ff191683800117855562000440565b8280016001018555821562000440579182015b828111156200043f57825182559160200191906001019062000422565b5b5090506200044f919062000453565b5090565b5b808211156200046e57600081600090555060010162000454565b5090565b60006200048962000483846200068a565b62000661565b905082815260208101848484011115620004a857620004a762000901565b5b620004b5848285620007cd565b509392505050565b600081519050620004ce8162000973565b92915050565b600082601f830112620004ec57620004eb620008fc565b5b8151620004fe84826020860162000472565b91505092915050565b6000806000606084860312156200052357620005226200090b565b5b600084015167ffffffffffffffff81111562000544576200054362000906565b5b6200055286828701620004d4565b935050602084015167ffffffffffffffff81111562000576576200057562000906565b5b6200058486828701620004d4565b92505060406200059786828701620004bd565b9150509250925092565b6000620005b0601083620006c0565b9150620005bd8262000921565b602082019050919050565b6000620005d7601f83620006c0565b9150620005e4826200094a565b602082019050919050565b620005fa81620007c3565b82525050565b600060208201905081810360008301526200061b81620005a1565b9050919050565b600060208201905081810360008301526200063d81620005c8565b9050919050565b60006020820190506200065b6000830184620005ef565b92915050565b60006200066d62000680565b90506200067b828262000839565b919050565b6000604051905090565b600067ffffffffffffffff821115620006a857620006a7620008cd565b5b620006b38262000910565b9050602081019050919050565b600082825260208201905092915050565b6000620006de82620007c3565b9150620006eb83620007c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200072357620007226200086f565b5b828201905092915050565b60006200073b82620007c3565b91506200074883620007c3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200078457620007836200086f565b5b828202905092915050565b60006200079c82620007a3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620007ed578082015181840152602081019050620007d0565b83811115620007fd576000848401525b50505050565b600060028204905060018216806200081c57607f821691505b602082108114156200083357620008326200089e565b5b50919050565b620008448262000910565b810181811067ffffffffffffffff82111715620008665762000865620008cd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200097e816200078f565b81146200098a57600080fd5b50565b61207b806200099d6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806342966c68116100b85780638da5cb5b1161007c5780638da5cb5b1461032f57806395d89b411461034d578063a457c2d71461036b578063a9059cbb1461039b578063dd62ed3e146103cb578063f2fde38b146103fb57610142565b806342966c68146102b15780635c975abb146102cd57806370a08231146102eb578063715018a61461031b5780638456cb591461032557610142565b80632ff2e9dc1161010a5780632ff2e9dc14610201578063313ce5671461021f57806332cb6b0c1461023d578063395093511461025b5780633f4ba83a1461028b57806340c10f191461029557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd146101955780631aef8058146101b357806323b872dd146101d1575b600080fd5b61014f610417565b60405161015c91906117f4565b60405180910390f35b61017f600480360381019061017a91906114cf565b6104a9565b60405161018c91906117d9565b60405180910390f35b61019d6104cc565b6040516101aa91906119f6565b60405180910390f35b6101bb6104d6565b6040516101c891906119f6565b60405180910390f35b6101eb60048036038101906101e6919061147c565b6104de565b6040516101f891906117d9565b60405180910390f35b61020961050d565b60405161021691906119f6565b60405180910390f35b610227610524565b6040516102349190611a11565b60405180910390f35b61024561052d565b60405161025291906119f6565b60405180910390f35b610275600480360381019061027091906114cf565b610545565b60405161028291906117d9565b60405180910390f35b61029361057c565b005b6102af60048036038101906102aa91906114cf565b61058e565b005b6102cb60048036038101906102c6919061150f565b61060d565b005b6102d5610629565b6040516102e291906117d9565b60405180910390f35b6103056004803603810190610300919061140f565b610640565b60405161031291906119f6565b60405180910390f35b610323610688565b005b61032d61069c565b005b6103376106ae565b60405161034491906117be565b60405180910390f35b6103556106d8565b60405161036291906117f4565b60405180910390f35b610385600480360381019061038091906114cf565b61076a565b60405161039291906117d9565b60405180910390f35b6103b560048036038101906103b091906114cf565b6107e1565b6040516103c291906117d9565b60405180910390f35b6103e560048036038101906103e0919061143c565b610804565b6040516103f291906119f6565b60405180910390f35b6104156004803603810190610410919061140f565b61088b565b005b60606003805461042690611bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461045290611bb4565b801561049f5780601f106104745761010080835404028352916020019161049f565b820191906000526020600020905b81548152906001019060200180831161048257829003601f168201915b5050505050905090565b6000806104b4610914565b90506104c181858561091c565b600191505092915050565b6000600254905090565b6305f5e10081565b6000806104e9610914565b90506104f6858285610ae7565b610501858585610b73565b60019150509392505050565b6305f5e100631dcd65006105219190611a9e565b81565b60006008905090565b6305f5e100640ba43b74006105429190611a9e565b81565b600080610550610914565b90506105718185856105628589610804565b61056c9190611a48565b61091c565b600191505092915050565b610584610df4565b61058c610e72565b565b610596610df4565b6305f5e100640ba43b74006105ab9190611a9e565b816105b46104cc565b6105be9190611a48565b11156105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f690611916565b60405180910390fd5b6106098282610ed5565b5050565b610615610df4565b610626610620610914565b82611035565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610690610df4565b61069a600061120c565b565b6106a4610df4565b6106ac6112d2565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e790611bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611bb4565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b600080610775610914565b905060006107838286610804565b9050838110156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906119b6565b60405180910390fd5b6107d5828686840361091c565b60019250505092915050565b6000806107ec610914565b90506107f9818585610b73565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610893610df4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90611876565b60405180910390fd5b61090c8161120c565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390611996565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611896565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ada91906119f6565b60405180910390a3505050565b6000610af38484610804565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b6d5781811015610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b56906118b6565b60405180910390fd5b610b6c848484840361091c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90611976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611816565b60405180910390fd5b610c5e838383611335565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906118d6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d779190611a48565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb91906119f6565b60405180910390a3610dee84848461134d565b50505050565b610dfc610914565b73ffffffffffffffffffffffffffffffffffffffff16610e1a6106ae565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790611936565b60405180910390fd5b565b610e7a611352565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ebe610914565b604051610ecb91906117be565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c906119d6565b60405180910390fd5b610f5160008383611335565b8060026000828254610f639190611a48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb89190611a48565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161101d91906119f6565b60405180910390a36110316000838361134d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90611956565b60405180910390fd5b6110b182600083611335565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90611856565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461118e9190611af8565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f391906119f6565b60405180910390a36112078360008461134d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6112da61139b565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861131e610914565b60405161132b91906117be565b60405180910390a1565b61133d61139b565b61134883838361090f565b505050565b505050565b61135a610629565b611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090611836565b60405180910390fd5b565b6113a3610629565b156113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906118f6565b60405180910390fd5b565b6000813590506113f481612017565b92915050565b6000813590506114098161202e565b92915050565b60006020828403121561142557611424611c44565b5b6000611433848285016113e5565b91505092915050565b6000806040838503121561145357611452611c44565b5b6000611461858286016113e5565b9250506020611472858286016113e5565b9150509250929050565b60008060006060848603121561149557611494611c44565b5b60006114a3868287016113e5565b93505060206114b4868287016113e5565b92505060406114c5868287016113fa565b9150509250925092565b600080604083850312156114e6576114e5611c44565b5b60006114f4858286016113e5565b9250506020611505858286016113fa565b9150509250929050565b60006020828403121561152557611524611c44565b5b6000611533848285016113fa565b91505092915050565b61154581611b2c565b82525050565b61155481611b3e565b82525050565b600061156582611a2c565b61156f8185611a37565b935061157f818560208601611b81565b61158881611c49565b840191505092915050565b60006115a0602383611a37565b91506115ab82611c5a565b604082019050919050565b60006115c3601483611a37565b91506115ce82611ca9565b602082019050919050565b60006115e6602283611a37565b91506115f182611cd2565b604082019050919050565b6000611609602683611a37565b915061161482611d21565b604082019050919050565b600061162c602283611a37565b915061163782611d70565b604082019050919050565b600061164f601d83611a37565b915061165a82611dbf565b602082019050919050565b6000611672602683611a37565b915061167d82611de8565b604082019050919050565b6000611695601083611a37565b91506116a082611e37565b602082019050919050565b60006116b8601983611a37565b91506116c382611e60565b602082019050919050565b60006116db602083611a37565b91506116e682611e89565b602082019050919050565b60006116fe602183611a37565b915061170982611eb2565b604082019050919050565b6000611721602583611a37565b915061172c82611f01565b604082019050919050565b6000611744602483611a37565b915061174f82611f50565b604082019050919050565b6000611767602583611a37565b915061177282611f9f565b604082019050919050565b600061178a601f83611a37565b915061179582611fee565b602082019050919050565b6117a981611b6a565b82525050565b6117b881611b74565b82525050565b60006020820190506117d3600083018461153c565b92915050565b60006020820190506117ee600083018461154b565b92915050565b6000602082019050818103600083015261180e818461155a565b905092915050565b6000602082019050818103600083015261182f81611593565b9050919050565b6000602082019050818103600083015261184f816115b6565b9050919050565b6000602082019050818103600083015261186f816115d9565b9050919050565b6000602082019050818103600083015261188f816115fc565b9050919050565b600060208201905081810360008301526118af8161161f565b9050919050565b600060208201905081810360008301526118cf81611642565b9050919050565b600060208201905081810360008301526118ef81611665565b9050919050565b6000602082019050818103600083015261190f81611688565b9050919050565b6000602082019050818103600083015261192f816116ab565b9050919050565b6000602082019050818103600083015261194f816116ce565b9050919050565b6000602082019050818103600083015261196f816116f1565b9050919050565b6000602082019050818103600083015261198f81611714565b9050919050565b600060208201905081810360008301526119af81611737565b9050919050565b600060208201905081810360008301526119cf8161175a565b9050919050565b600060208201905081810360008301526119ef8161177d565b9050919050565b6000602082019050611a0b60008301846117a0565b92915050565b6000602082019050611a2660008301846117af565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a5382611b6a565b9150611a5e83611b6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a9357611a92611be6565b5b828201905092915050565b6000611aa982611b6a565b9150611ab483611b6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611aed57611aec611be6565b5b828202905092915050565b6000611b0382611b6a565b9150611b0e83611b6a565b925082821015611b2157611b20611be6565b5b828203905092915050565b6000611b3782611b4a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b9f578082015181840152602081019050611b84565b83811115611bae576000848401525b50505050565b60006002820490506001821680611bcc57607f821691505b60208210811415611be057611bdf611c15565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4d494e543a204d617820737570706c7920657863656564656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61202081611b2c565b811461202b57600080fd5b50565b61203781611b6a565b811461204257600080fd5b5056fea264697066735822122082e352f58c8547385583f50972eca6104f262f9ebac18f1c013715798d14569164736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a69daac782d52a73401ab509b482a3991c5940b90000000000000000000000000000000000000000000000000000000000000014536f746f6b6f746f20506561636520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453544b5400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806342966c68116100b85780638da5cb5b1161007c5780638da5cb5b1461032f57806395d89b411461034d578063a457c2d71461036b578063a9059cbb1461039b578063dd62ed3e146103cb578063f2fde38b146103fb57610142565b806342966c68146102b15780635c975abb146102cd57806370a08231146102eb578063715018a61461031b5780638456cb591461032557610142565b80632ff2e9dc1161010a5780632ff2e9dc14610201578063313ce5671461021f57806332cb6b0c1461023d578063395093511461025b5780633f4ba83a1461028b57806340c10f191461029557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd146101955780631aef8058146101b357806323b872dd146101d1575b600080fd5b61014f610417565b60405161015c91906117f4565b60405180910390f35b61017f600480360381019061017a91906114cf565b6104a9565b60405161018c91906117d9565b60405180910390f35b61019d6104cc565b6040516101aa91906119f6565b60405180910390f35b6101bb6104d6565b6040516101c891906119f6565b60405180910390f35b6101eb60048036038101906101e6919061147c565b6104de565b6040516101f891906117d9565b60405180910390f35b61020961050d565b60405161021691906119f6565b60405180910390f35b610227610524565b6040516102349190611a11565b60405180910390f35b61024561052d565b60405161025291906119f6565b60405180910390f35b610275600480360381019061027091906114cf565b610545565b60405161028291906117d9565b60405180910390f35b61029361057c565b005b6102af60048036038101906102aa91906114cf565b61058e565b005b6102cb60048036038101906102c6919061150f565b61060d565b005b6102d5610629565b6040516102e291906117d9565b60405180910390f35b6103056004803603810190610300919061140f565b610640565b60405161031291906119f6565b60405180910390f35b610323610688565b005b61032d61069c565b005b6103376106ae565b60405161034491906117be565b60405180910390f35b6103556106d8565b60405161036291906117f4565b60405180910390f35b610385600480360381019061038091906114cf565b61076a565b60405161039291906117d9565b60405180910390f35b6103b560048036038101906103b091906114cf565b6107e1565b6040516103c291906117d9565b60405180910390f35b6103e560048036038101906103e0919061143c565b610804565b6040516103f291906119f6565b60405180910390f35b6104156004803603810190610410919061140f565b61088b565b005b60606003805461042690611bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461045290611bb4565b801561049f5780601f106104745761010080835404028352916020019161049f565b820191906000526020600020905b81548152906001019060200180831161048257829003601f168201915b5050505050905090565b6000806104b4610914565b90506104c181858561091c565b600191505092915050565b6000600254905090565b6305f5e10081565b6000806104e9610914565b90506104f6858285610ae7565b610501858585610b73565b60019150509392505050565b6305f5e100631dcd65006105219190611a9e565b81565b60006008905090565b6305f5e100640ba43b74006105429190611a9e565b81565b600080610550610914565b90506105718185856105628589610804565b61056c9190611a48565b61091c565b600191505092915050565b610584610df4565b61058c610e72565b565b610596610df4565b6305f5e100640ba43b74006105ab9190611a9e565b816105b46104cc565b6105be9190611a48565b11156105ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f690611916565b60405180910390fd5b6106098282610ed5565b5050565b610615610df4565b610626610620610914565b82611035565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610690610df4565b61069a600061120c565b565b6106a4610df4565b6106ac6112d2565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e790611bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461071390611bb4565b80156107605780601f1061073557610100808354040283529160200191610760565b820191906000526020600020905b81548152906001019060200180831161074357829003601f168201915b5050505050905090565b600080610775610914565b905060006107838286610804565b9050838110156107c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107bf906119b6565b60405180910390fd5b6107d5828686840361091c565b60019250505092915050565b6000806107ec610914565b90506107f9818585610b73565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610893610df4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90611876565b60405180910390fd5b61090c8161120c565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561098c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098390611996565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611896565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ada91906119f6565b60405180910390a3505050565b6000610af38484610804565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b6d5781811015610b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b56906118b6565b60405180910390fd5b610b6c848484840361091c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90611976565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90611816565b60405180910390fd5b610c5e838383611335565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdb906118d6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d779190611a48565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ddb91906119f6565b60405180910390a3610dee84848461134d565b50505050565b610dfc610914565b73ffffffffffffffffffffffffffffffffffffffff16610e1a6106ae565b73ffffffffffffffffffffffffffffffffffffffff1614610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6790611936565b60405180910390fd5b565b610e7a611352565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ebe610914565b604051610ecb91906117be565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c906119d6565b60405180910390fd5b610f5160008383611335565b8060026000828254610f639190611a48565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fb89190611a48565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161101d91906119f6565b60405180910390a36110316000838361134d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109c90611956565b60405180910390fd5b6110b182600083611335565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611137576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112e90611856565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461118e9190611af8565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111f391906119f6565b60405180910390a36112078360008461134d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6112da61139b565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861131e610914565b60405161132b91906117be565b60405180910390a1565b61133d61139b565b61134883838361090f565b505050565b505050565b61135a610629565b611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090611836565b60405180910390fd5b565b6113a3610629565b156113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da906118f6565b60405180910390fd5b565b6000813590506113f481612017565b92915050565b6000813590506114098161202e565b92915050565b60006020828403121561142557611424611c44565b5b6000611433848285016113e5565b91505092915050565b6000806040838503121561145357611452611c44565b5b6000611461858286016113e5565b9250506020611472858286016113e5565b9150509250929050565b60008060006060848603121561149557611494611c44565b5b60006114a3868287016113e5565b93505060206114b4868287016113e5565b92505060406114c5868287016113fa565b9150509250925092565b600080604083850312156114e6576114e5611c44565b5b60006114f4858286016113e5565b9250506020611505858286016113fa565b9150509250929050565b60006020828403121561152557611524611c44565b5b6000611533848285016113fa565b91505092915050565b61154581611b2c565b82525050565b61155481611b3e565b82525050565b600061156582611a2c565b61156f8185611a37565b935061157f818560208601611b81565b61158881611c49565b840191505092915050565b60006115a0602383611a37565b91506115ab82611c5a565b604082019050919050565b60006115c3601483611a37565b91506115ce82611ca9565b602082019050919050565b60006115e6602283611a37565b91506115f182611cd2565b604082019050919050565b6000611609602683611a37565b915061161482611d21565b604082019050919050565b600061162c602283611a37565b915061163782611d70565b604082019050919050565b600061164f601d83611a37565b915061165a82611dbf565b602082019050919050565b6000611672602683611a37565b915061167d82611de8565b604082019050919050565b6000611695601083611a37565b91506116a082611e37565b602082019050919050565b60006116b8601983611a37565b91506116c382611e60565b602082019050919050565b60006116db602083611a37565b91506116e682611e89565b602082019050919050565b60006116fe602183611a37565b915061170982611eb2565b604082019050919050565b6000611721602583611a37565b915061172c82611f01565b604082019050919050565b6000611744602483611a37565b915061174f82611f50565b604082019050919050565b6000611767602583611a37565b915061177282611f9f565b604082019050919050565b600061178a601f83611a37565b915061179582611fee565b602082019050919050565b6117a981611b6a565b82525050565b6117b881611b74565b82525050565b60006020820190506117d3600083018461153c565b92915050565b60006020820190506117ee600083018461154b565b92915050565b6000602082019050818103600083015261180e818461155a565b905092915050565b6000602082019050818103600083015261182f81611593565b9050919050565b6000602082019050818103600083015261184f816115b6565b9050919050565b6000602082019050818103600083015261186f816115d9565b9050919050565b6000602082019050818103600083015261188f816115fc565b9050919050565b600060208201905081810360008301526118af8161161f565b9050919050565b600060208201905081810360008301526118cf81611642565b9050919050565b600060208201905081810360008301526118ef81611665565b9050919050565b6000602082019050818103600083015261190f81611688565b9050919050565b6000602082019050818103600083015261192f816116ab565b9050919050565b6000602082019050818103600083015261194f816116ce565b9050919050565b6000602082019050818103600083015261196f816116f1565b9050919050565b6000602082019050818103600083015261198f81611714565b9050919050565b600060208201905081810360008301526119af81611737565b9050919050565b600060208201905081810360008301526119cf8161175a565b9050919050565b600060208201905081810360008301526119ef8161177d565b9050919050565b6000602082019050611a0b60008301846117a0565b92915050565b6000602082019050611a2660008301846117af565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a5382611b6a565b9150611a5e83611b6a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a9357611a92611be6565b5b828201905092915050565b6000611aa982611b6a565b9150611ab483611b6a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611aed57611aec611be6565b5b828202905092915050565b6000611b0382611b6a565b9150611b0e83611b6a565b925082821015611b2157611b20611be6565b5b828203905092915050565b6000611b3782611b4a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b9f578082015181840152602081019050611b84565b83811115611bae576000848401525b50505050565b60006002820490506001821680611bcc57607f821691505b60208210811415611be057611bdf611c15565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4d494e543a204d617820737570706c7920657863656564656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61202081611b2c565b811461202b57600080fd5b50565b61203781611b6a565b811461204257600080fd5b5056fea264697066735822122082e352f58c8547385583f50972eca6104f262f9ebac18f1c013715798d14569164736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000a69daac782d52a73401ab509b482a3991c5940b90000000000000000000000000000000000000000000000000000000000000014536f746f6b6f746f20506561636520546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453544b5400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Sotokoto Peace Token
Arg [1] : _symbol (string): STKT
Arg [2] : _admin (address): 0xA69dAaC782D52a73401AB509B482A3991C5940B9

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000a69daac782d52a73401ab509b482a3991c5940b9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 536f746f6b6f746f20506561636520546f6b656e000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 53544b5400000000000000000000000000000000000000000000000000000000


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.