ETH Price: $1,971.94 (-0.12%)

Token

Isik Coin (ISIKC)
 

Overview

Max Total Supply

100,000,000 ISIKC

Holders

12 (0.00%)

Transfers

-
0

Market

Price

$0.25 @ 0.000126 ETH (-0.25%)

Onchain Market Cap

$24,767,202.94

Circulating Supply Market Cap

$24,767,202.94

Other Info

Token Contract (WITH 4 Decimals)

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

Market

Volume (24H):$451,896.67
Market Capitalization:$24,767,202.94
Circulating Supply:100,000,000.00 ISIKC
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IsikCoin

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 7: IsikCoin.sol
// SPDX-License-Identifier:MIT
// 0x3bBFb303842dD4a76Da4C927Be644E9cf3170afD

pragma solidity 0.8.0;

import "./SafeMath.sol";
import "./ERC20.sol";
import "./Ownable.sol";

contract IsikCoin is ERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => bool) internal blacklisted;

    event Blacklisted(address indexed _account);
    event UnBlacklisted(address indexed _account);
    event BlacklisterChanged(address indexed newBlacklister);

    constructor(uint256 initialSupply) ERC20("Isik Coin", "ISIKC") {
        _mint(msg.sender, initialSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return 4;
    }

    function mint(address to, uint256 value) external onlyOwner returns (bool) {
        _mint(to, value);
        return true;
    }

    function burn(address to, uint256 value) external onlyOwner returns (bool) {
        _burn(to, value);
        return true;
    }

    modifier notBlacklisted(address _account) {
        require(blacklisted[_account] == false);
        _;
    }

    function isBlacklisted(address _account) public view returns (bool) {
        return blacklisted[_account];
    }

    function blacklist(address _account) public onlyOwner {
        blacklisted[_account] = true;
        emit Blacklisted(_account);
    }

    function unBlacklist(address _account) public onlyOwner {
        blacklisted[_account] = false;
        emit UnBlacklisted(_account);
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        override
        notBlacklisted(_msgSender())
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

File 1 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 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 4 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 6 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"uint256","name":"initialSupply","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":"_account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklister","type":"address"}],"name":"BlacklisterChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"UnBlacklisted","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","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":[],"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":[{"internalType":"address","name":"_account","type":"address"}],"name":"unBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620023d7380380620023d783398181016040528101906200003791906200041d565b6040518060400160405280600981526020017f4973696b20436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4953494b430000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000356565b508060049080519060200190620000d492919062000356565b505050620000f7620000eb6200011060201b60201c565b6200011860201b60201c565b620001093382620001de60201b60201c565b5062000601565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000248906200049c565b60405180910390fd5b62000265600083836200034c60201b60201c565b8060026000828254620002799190620004ec565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032c9190620004be565b60405180910390a362000348600083836200035160201b60201c565b5050565b505050565b505050565b828054620003649062000553565b90600052602060002090601f016020900481019282620003885760008555620003d4565b82601f10620003a357805160ff1916838001178555620003d4565b82800160010185558215620003d4579182015b82811115620003d3578251825591602001919060010190620003b6565b5b509050620003e39190620003e7565b5090565b5b8082111562000402576000816000905550600101620003e8565b5090565b6000815190506200041781620005e7565b92915050565b6000602082840312156200043057600080fd5b6000620004408482850162000406565b91505092915050565b600062000458601f83620004db565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004968162000549565b82525050565b60006020820190508181036000830152620004b78162000449565b9050919050565b6000602082019050620004d560008301846200048b565b92915050565b600082825260208201905092915050565b6000620004f98262000549565b9150620005068362000549565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200053e576200053d62000589565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200056c57607f821691505b60208210811415620005835762000582620005b8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620005f28162000549565b8114620005fe57600080fd5b50565b611dc680620006116000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610332578063dd62ed3e14610362578063f2fde38b14610392578063f9f92be4146103ae578063fe575a87146103ca57610121565b8063715018a61461028c5780638da5cb5b1461029657806395d89b41146102b45780639dc29fac146102d2578063a457c2d71461030257610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806339509351146101fc57806340c10f191461022c57806370a082311461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101745780631a89526614610192575b600080fd5b61012e6103fa565b60405161013b91906119ef565b60405180910390f35b61015e600480360381019061015991906114b2565b61048c565b60405161016b91906119d4565b60405180910390f35b61017c6104af565b6040516101899190611b91565b60405180910390f35b6101ac60048036038101906101a791906113fe565b6104b9565b005b6101c860048036038101906101c39190611463565b61055f565b6040516101d591906119d4565b60405180910390f35b6101e66105ee565b6040516101f39190611bac565b60405180910390f35b610216600480360381019061021191906114b2565b6105f7565b60405161022391906119d4565b60405180910390f35b610246600480360381019061024191906114b2565b61062e565b60405161025391906119d4565b60405180910390f35b610276600480360381019061027191906113fe565b61064c565b6040516102839190611b91565b60405180910390f35b610294610694565b005b61029e6106a8565b6040516102ab91906119b9565b60405180910390f35b6102bc6106d2565b6040516102c991906119ef565b60405180910390f35b6102ec60048036038101906102e791906114b2565b610764565b6040516102f991906119d4565b60405180910390f35b61031c600480360381019061031791906114b2565b610782565b60405161032991906119d4565b60405180910390f35b61034c600480360381019061034791906114b2565b6107f9565b60405161035991906119d4565b60405180910390f35b61037c60048036038101906103779190611427565b610883565b6040516103899190611b91565b60405180910390f35b6103ac60048036038101906103a791906113fe565b61090a565b005b6103c860048036038101906103c391906113fe565b61098e565b005b6103e460048036038101906103df91906113fe565b610a34565b6040516103f191906119d4565b60405180910390f35b60606003805461040990611cc1565b80601f016020809104026020016040519081016040528092919081815260200182805461043590611cc1565b80156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b600080610497610a8a565b90506104a4818585610a92565b600191505092915050565b6000600254905090565b6104c1610c5d565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e60405160405180910390a250565b60008360001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146105bf57600080fd5b60006105c9610a8a565b90506105d6868286610cdb565b6105e1868686610d67565b6001925050509392505050565b60006004905090565b600080610602610a8a565b90506106238185856106148589610883565b61061e9190611be3565b610a92565b600191505092915050565b6000610638610c5d565b6106428383610fdf565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61069c610c5d565b6106a66000611136565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e190611cc1565b80601f016020809104026020016040519081016040528092919081815260200182805461070d90611cc1565b801561075a5780601f1061072f5761010080835404028352916020019161075a565b820191906000526020600020905b81548152906001019060200180831161073d57829003601f168201915b5050505050905090565b600061076e610c5d565b61077883836111fc565b6001905092915050565b60008061078d610a8a565b9050600061079b8286610883565b9050838110156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790611b51565b60405180910390fd5b6107ed8286868403610a92565b60019250505092915050565b6000610803610a8a565b60001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461086057600080fd5b600061086a610a8a565b9050610877818686610d67565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610912610c5d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990611a51565b60405180910390fd5b61098b81611136565b50565b610996610c5d565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a250565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990611a71565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c509190611b91565b60405180910390a3505050565b610c65610a8a565b73ffffffffffffffffffffffffffffffffffffffff16610c836106a8565b73ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611ad1565b60405180910390fd5b565b6000610ce78484610883565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d615781811015610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611a91565b60405180910390fd5b610d608484848403610a92565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90611b11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90611a11565b60405180910390fd5b610e528383836113ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90611ab1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fc69190611b91565b60405180910390a3610fd98484846113cf565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690611b71565b60405180910390fd5b61105b600083836113ca565b806002600082825461106d9190611be3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111e9190611b91565b60405180910390a3611132600083836113cf565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390611af1565b60405180910390fd5b611278826000836113ca565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590611a31565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b19190611b91565b60405180910390a36113c5836000846113cf565b505050565b505050565b505050565b6000813590506113e381611d62565b92915050565b6000813590506113f881611d79565b92915050565b60006020828403121561141057600080fd5b600061141e848285016113d4565b91505092915050565b6000806040838503121561143a57600080fd5b6000611448858286016113d4565b9250506020611459858286016113d4565b9150509250929050565b60008060006060848603121561147857600080fd5b6000611486868287016113d4565b9350506020611497868287016113d4565b92505060406114a8868287016113e9565b9150509250925092565b600080604083850312156114c557600080fd5b60006114d3858286016113d4565b92505060206114e4858286016113e9565b9150509250929050565b6114f781611c39565b82525050565b61150681611c4b565b82525050565b600061151782611bc7565b6115218185611bd2565b9350611531818560208601611c8e565b61153a81611d51565b840191505092915050565b6000611552602383611bd2565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115b8602283611bd2565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061161e602683611bd2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611684602283611bd2565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116ea601d83611bd2565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061172a602683611bd2565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611790602083611bd2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117d0602183611bd2565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611836602583611bd2565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061189c602483611bd2565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611902602583611bd2565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611968601f83611bd2565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6119a481611c77565b82525050565b6119b381611c81565b82525050565b60006020820190506119ce60008301846114ee565b92915050565b60006020820190506119e960008301846114fd565b92915050565b60006020820190508181036000830152611a09818461150c565b905092915050565b60006020820190508181036000830152611a2a81611545565b9050919050565b60006020820190508181036000830152611a4a816115ab565b9050919050565b60006020820190508181036000830152611a6a81611611565b9050919050565b60006020820190508181036000830152611a8a81611677565b9050919050565b60006020820190508181036000830152611aaa816116dd565b9050919050565b60006020820190508181036000830152611aca8161171d565b9050919050565b60006020820190508181036000830152611aea81611783565b9050919050565b60006020820190508181036000830152611b0a816117c3565b9050919050565b60006020820190508181036000830152611b2a81611829565b9050919050565b60006020820190508181036000830152611b4a8161188f565b9050919050565b60006020820190508181036000830152611b6a816118f5565b9050919050565b60006020820190508181036000830152611b8a8161195b565b9050919050565b6000602082019050611ba6600083018461199b565b92915050565b6000602082019050611bc160008301846119aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bee82611c77565b9150611bf983611c77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2e57611c2d611cf3565b5b828201905092915050565b6000611c4482611c57565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611cac578082015181840152602081019050611c91565b83811115611cbb576000848401525b50505050565b60006002820490506001821680611cd957607f821691505b60208210811415611ced57611cec611d22565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d6b81611c39565b8114611d7657600080fd5b50565b611d8281611c77565b8114611d8d57600080fd5b5056fea2646970667358221220a756dc16a5485d8700ed03a6366143d0b0ae5243fd8c076c662e06158fbc125664736f6c63430008000033000000000000000000000000000000000000000000000000000000e8d4a51000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610332578063dd62ed3e14610362578063f2fde38b14610392578063f9f92be4146103ae578063fe575a87146103ca57610121565b8063715018a61461028c5780638da5cb5b1461029657806395d89b41146102b45780639dc29fac146102d2578063a457c2d71461030257610121565b806323b872dd116100f457806323b872dd146101ae578063313ce567146101de57806339509351146101fc57806340c10f191461022c57806370a082311461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd146101745780631a89526614610192575b600080fd5b61012e6103fa565b60405161013b91906119ef565b60405180910390f35b61015e600480360381019061015991906114b2565b61048c565b60405161016b91906119d4565b60405180910390f35b61017c6104af565b6040516101899190611b91565b60405180910390f35b6101ac60048036038101906101a791906113fe565b6104b9565b005b6101c860048036038101906101c39190611463565b61055f565b6040516101d591906119d4565b60405180910390f35b6101e66105ee565b6040516101f39190611bac565b60405180910390f35b610216600480360381019061021191906114b2565b6105f7565b60405161022391906119d4565b60405180910390f35b610246600480360381019061024191906114b2565b61062e565b60405161025391906119d4565b60405180910390f35b610276600480360381019061027191906113fe565b61064c565b6040516102839190611b91565b60405180910390f35b610294610694565b005b61029e6106a8565b6040516102ab91906119b9565b60405180910390f35b6102bc6106d2565b6040516102c991906119ef565b60405180910390f35b6102ec60048036038101906102e791906114b2565b610764565b6040516102f991906119d4565b60405180910390f35b61031c600480360381019061031791906114b2565b610782565b60405161032991906119d4565b60405180910390f35b61034c600480360381019061034791906114b2565b6107f9565b60405161035991906119d4565b60405180910390f35b61037c60048036038101906103779190611427565b610883565b6040516103899190611b91565b60405180910390f35b6103ac60048036038101906103a791906113fe565b61090a565b005b6103c860048036038101906103c391906113fe565b61098e565b005b6103e460048036038101906103df91906113fe565b610a34565b6040516103f191906119d4565b60405180910390f35b60606003805461040990611cc1565b80601f016020809104026020016040519081016040528092919081815260200182805461043590611cc1565b80156104825780601f1061045757610100808354040283529160200191610482565b820191906000526020600020905b81548152906001019060200180831161046557829003601f168201915b5050505050905090565b600080610497610a8a565b90506104a4818585610a92565b600191505092915050565b6000600254905090565b6104c1610c5d565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f117e3210bb9aa7d9baff172026820255c6f6c30ba8999d1c2fd88e2848137c4e60405160405180910390a250565b60008360001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146105bf57600080fd5b60006105c9610a8a565b90506105d6868286610cdb565b6105e1868686610d67565b6001925050509392505050565b60006004905090565b600080610602610a8a565b90506106238185856106148589610883565b61061e9190611be3565b610a92565b600191505092915050565b6000610638610c5d565b6106428383610fdf565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61069c610c5d565b6106a66000611136565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106e190611cc1565b80601f016020809104026020016040519081016040528092919081815260200182805461070d90611cc1565b801561075a5780601f1061072f5761010080835404028352916020019161075a565b820191906000526020600020905b81548152906001019060200180831161073d57829003601f168201915b5050505050905090565b600061076e610c5d565b61077883836111fc565b6001905092915050565b60008061078d610a8a565b9050600061079b8286610883565b9050838110156107e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d790611b51565b60405180910390fd5b6107ed8286868403610a92565b60019250505092915050565b6000610803610a8a565b60001515600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461086057600080fd5b600061086a610a8a565b9050610877818686610d67565b60019250505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610912610c5d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097990611a51565b60405180910390fd5b61098b81611136565b50565b610996610c5d565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b85560405160405180910390a250565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af990611b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990611a71565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c509190611b91565b60405180910390a3505050565b610c65610a8a565b73ffffffffffffffffffffffffffffffffffffffff16610c836106a8565b73ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090611ad1565b60405180910390fd5b565b6000610ce78484610883565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d615781811015610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a90611a91565b60405180910390fd5b610d608484848403610a92565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90611b11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3e90611a11565b60405180910390fd5b610e528383836113ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90611ab1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fc69190611b91565b60405180910390a3610fd98484846113cf565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690611b71565b60405180910390fd5b61105b600083836113ca565b806002600082825461106d9190611be3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161111e9190611b91565b60405180910390a3611132600083836113cf565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390611af1565b60405180910390fd5b611278826000836113ca565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f590611a31565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b19190611b91565b60405180910390a36113c5836000846113cf565b505050565b505050565b505050565b6000813590506113e381611d62565b92915050565b6000813590506113f881611d79565b92915050565b60006020828403121561141057600080fd5b600061141e848285016113d4565b91505092915050565b6000806040838503121561143a57600080fd5b6000611448858286016113d4565b9250506020611459858286016113d4565b9150509250929050565b60008060006060848603121561147857600080fd5b6000611486868287016113d4565b9350506020611497868287016113d4565b92505060406114a8868287016113e9565b9150509250925092565b600080604083850312156114c557600080fd5b60006114d3858286016113d4565b92505060206114e4858286016113e9565b9150509250929050565b6114f781611c39565b82525050565b61150681611c4b565b82525050565b600061151782611bc7565b6115218185611bd2565b9350611531818560208601611c8e565b61153a81611d51565b840191505092915050565b6000611552602383611bd2565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115b8602283611bd2565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061161e602683611bd2565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611684602283611bd2565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116ea601d83611bd2565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061172a602683611bd2565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611790602083611bd2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006117d0602183611bd2565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611836602583611bd2565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061189c602483611bd2565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611902602583611bd2565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611968601f83611bd2565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6119a481611c77565b82525050565b6119b381611c81565b82525050565b60006020820190506119ce60008301846114ee565b92915050565b60006020820190506119e960008301846114fd565b92915050565b60006020820190508181036000830152611a09818461150c565b905092915050565b60006020820190508181036000830152611a2a81611545565b9050919050565b60006020820190508181036000830152611a4a816115ab565b9050919050565b60006020820190508181036000830152611a6a81611611565b9050919050565b60006020820190508181036000830152611a8a81611677565b9050919050565b60006020820190508181036000830152611aaa816116dd565b9050919050565b60006020820190508181036000830152611aca8161171d565b9050919050565b60006020820190508181036000830152611aea81611783565b9050919050565b60006020820190508181036000830152611b0a816117c3565b9050919050565b60006020820190508181036000830152611b2a81611829565b9050919050565b60006020820190508181036000830152611b4a8161188f565b9050919050565b60006020820190508181036000830152611b6a816118f5565b9050919050565b60006020820190508181036000830152611b8a8161195b565b9050919050565b6000602082019050611ba6600083018461199b565b92915050565b6000602082019050611bc160008301846119aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bee82611c77565b9150611bf983611c77565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c2e57611c2d611cf3565b5b828201905092915050565b6000611c4482611c57565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611cac578082015181840152602081019050611c91565b83811115611cbb576000848401525b50505050565b60006002820490506001821680611cd957607f821691505b60208210811415611ced57611cec611d22565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d6b81611c39565b8114611d7657600080fd5b50565b611d8281611c77565b8114611d8d57600080fd5b5056fea2646970667358221220a756dc16a5485d8700ed03a6366143d0b0ae5243fd8c076c662e06158fbc125664736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000e8d4a51000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000e8d4a51000


Deployed Bytecode Sourcemap

174:1871:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2137:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4423:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3234:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1322:140:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1736:307;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;581:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5833:234:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;677:129:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1817:101:5;;;:::i;:::-;;1194:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2348:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;812:129:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6554:427:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1468:262:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3966:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2067:198:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1181:135:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1062:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2137:98:1;2191:13;2223:5;2216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2137:98;:::o;4423:197::-;4506:4;4522:13;4538:12;:10;:12::i;:::-;4522:28;;4560:32;4569:5;4576:7;4585:6;4560:8;:32::i;:::-;4609:4;4602:11;;;4423:197;;;;:::o;3234:106::-;3295:7;3321:12;;3314:19;;3234:106;:::o;1322:140:4:-;1087:13:5;:11;:13::i;:::-;1412:5:4::1;1388:11;:21;1400:8;1388:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;1446:8;1432:23;;;;;;;;;;;;1322:140:::0;:::o;1736:307::-;1884:4;1869;1032:5;1007:30;;:11;:21;1019:8;1007:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;999:39;;;;;;1900:15:::1;1918:12;:10;:12::i;:::-;1900:30;;1940:38;1956:4;1962:7;1971:6;1940:15;:38::i;:::-;1988:27;1998:4;2004:2;2008:6;1988:9;:27::i;:::-;2032:4;2025:11;;;1736:307:::0;;;;;;:::o;581:90::-;639:5;663:1;656:8;;581:90;:::o;5833:234:1:-;5921:4;5937:13;5953:12;:10;:12::i;:::-;5937:28;;5975:64;5984:5;5991:7;6028:10;6000:25;6010:5;6017:7;6000:9;:25::i;:::-;:38;;;;:::i;:::-;5975:8;:64::i;:::-;6056:4;6049:11;;;5833:234;;;;:::o;677:129:4:-;746:4;1087:13:5;:11;:13::i;:::-;762:16:4::1;768:2;772:5;762;:16::i;:::-;795:4;788:11;;677:129:::0;;;;:::o;3398:125:1:-;3472:7;3498:9;:18;3508:7;3498:18;;;;;;;;;;;;;;;;3491:25;;3398:125;;;:::o;1817:101:5:-;1087:13;:11;:13::i;:::-;1881:30:::1;1908:1;1881:18;:30::i;:::-;1817:101::o:0;1194:85::-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;2348:102:1:-;2404:13;2436:7;2429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2348:102;:::o;812:129:4:-;881:4;1087:13:5;:11;:13::i;:::-;897:16:4::1;903:2;907:5;897;:16::i;:::-;930:4;923:11;;812:129:::0;;;;:::o;6554:427:1:-;6647:4;6663:13;6679:12;:10;:12::i;:::-;6663:28;;6701:24;6728:25;6738:5;6745:7;6728:9;:25::i;:::-;6701:52;;6791:15;6771:16;:35;;6763:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6882:60;6891:5;6898:7;6926:15;6907:16;:34;6882:8;:60::i;:::-;6970:4;6963:11;;;;6554:427;;;;:::o;1468:262:4:-;1616:4;1585:12;:10;:12::i;:::-;1032:5;1007:30;;:11;:21;1019:8;1007:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;999:39;;;;;;1636:13:::1;1652:12;:10;:12::i;:::-;1636:28;;1674;1684:5;1691:2;1695:6;1674:9;:28::i;:::-;1719:4;1712:11;;;1468:262:::0;;;;;:::o;3966:149:1:-;4055:7;4081:11;:18;4093:5;4081:18;;;;;;;;;;;;;;;:27;4100:7;4081:27;;;;;;;;;;;;;;;;4074:34;;3966:149;;;;:::o;2067:198:5:-;1087:13;:11;:13::i;:::-;2175:1:::1;2155:22;;:8;:22;;;;2147:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2230:28;2249:8;2230:18;:28::i;:::-;2067:198:::0;:::o;1181:135:4:-;1087:13:5;:11;:13::i;:::-;1269:4:4::1;1245:11;:21;1257:8;1245:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1300:8;1288:21;;;;;;;;;;;;1181:135:::0;:::o;1062:113::-;1124:4;1147:11;:21;1159:8;1147:21;;;;;;;;;;;;;;;;;;;;;;;;;1140:28;;1062:113;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;10436:340:1:-;10554:1;10537:19;;:5;:19;;;;10529:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10634:1;10615:21;;:7;:21;;;;10607:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10716:6;10686:11;:18;10698:5;10686:18;;;;;;;;;;;;;;;:27;10705:7;10686:27;;;;;;;;;;;;;;;:36;;;;10753:7;10737:32;;10746:5;10737:32;;;10762:6;10737:32;;;;;;:::i;:::-;;;;;;;;10436:340;;;:::o;1352:130:5:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;11057:411:1:-;11157:24;11184:25;11194:5;11201:7;11184:9;:25::i;:::-;11157:52;;11243:17;11223:16;:37;11219:243;;11304:6;11284:16;:26;;11276:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11386:51;11395:5;11402:7;11430:6;11411:16;:25;11386:8;:51::i;:::-;11219:243;11057:411;;;;:::o;7435:788::-;7547:1;7531:18;;:4;:18;;;;7523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7623:1;7609:16;;:2;:16;;;;7601:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7676:38;7697:4;7703:2;7707:6;7676:20;:38::i;:::-;7725:19;7747:9;:15;7757:4;7747:15;;;;;;;;;;;;;;;;7725:37;;7795:6;7780:11;:21;;7772:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7910:6;7896:11;:20;7878:9;:15;7888:4;7878:15;;;;;;;;;;;;;;;:38;;;;8110:6;8093:9;:13;8103:2;8093:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8157:2;8142:26;;8151:4;8142:26;;;8161:6;8142:26;;;;;;:::i;:::-;;;;;;;;8179:37;8199:4;8205:2;8209:6;8179:19;:37::i;:::-;7435:788;;;;:::o;8499:535::-;8601:1;8582:21;;:7;:21;;;;8574:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8650:49;8679:1;8683:7;8692:6;8650:20;:49::i;:::-;8726:6;8710:12;;:22;;;;;;;:::i;:::-;;;;;;;;8900:6;8878:9;:18;8888:7;8878:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8952:7;8931:37;;8948:1;8931:37;;;8961:6;8931:37;;;;;;:::i;:::-;;;;;;;;8979:48;9007:1;9011:7;9020:6;8979:19;:48::i;:::-;8499:535;;:::o;2419:187:5:-;2492:16;2511:6;;;;;;;;;;;2492:25;;2536:8;2527:6;;:17;;;;;;;;;;;;;;;;;;2590:8;2559:40;;2580:8;2559:40;;;;;;;;;;;;2419:187;;:::o;9354:659:1:-;9456:1;9437:21;;:7;:21;;;;9429:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9507:49;9528:7;9545:1;9549:6;9507:20;:49::i;:::-;9567:22;9592:9;:18;9602:7;9592:18;;;;;;;;;;;;;;;;9567:43;;9646:6;9628:14;:24;;9620:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9763:6;9746:14;:23;9725:9;:18;9735:7;9725:18;;;;;;;;;;;;;;;:44;;;;9878:6;9862:12;;:22;;;;;;;;;;;9936:1;9910:37;;9919:7;9910:37;;;9940:6;9910:37;;;;;;:::i;:::-;;;;;;;;9958:48;9978:7;9995:1;9999:6;9958:19;:48::i;:::-;9354:659;;;:::o;12052:91::-;;;;:::o;12731:90::-;;;;:::o;7:139:7:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:366::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:4;3252:2;3247:3;3243:12;3236:26;3288:2;3283:3;3279:12;3272:19;;3077:220;;;:::o;3303:370::-;;3466:67;3530:2;3525:3;3466:67;:::i;:::-;3459:74;;3563:34;3559:1;3554:3;3550:11;3543:55;3629:8;3624:2;3619:3;3615:12;3608:30;3664:2;3659:3;3655:12;3648:19;;3449:224;;;:::o;3679:366::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:34;3935:1;3930:3;3926:11;3919:55;4005:4;4000:2;3995:3;3991:12;3984:26;4036:2;4031:3;4027:12;4020:19;;3825:220;;;:::o;4051:327::-;;4214:67;4278:2;4273:3;4214:67;:::i;:::-;4207:74;;4311:31;4307:1;4302:3;4298:11;4291:52;4369:2;4364:3;4360:12;4353:19;;4197:181;;;:::o;4384:370::-;;4547:67;4611:2;4606:3;4547:67;:::i;:::-;4540:74;;4644:34;4640:1;4635:3;4631:11;4624:55;4710:8;4705:2;4700:3;4696:12;4689:30;4745:2;4740:3;4736:12;4729:19;;4530:224;;;:::o;4760:330::-;;4923:67;4987:2;4982:3;4923:67;:::i;:::-;4916:74;;5020:34;5016:1;5011:3;5007:11;5000:55;5081:2;5076:3;5072:12;5065:19;;4906:184;;;:::o;5096:365::-;;5259:67;5323:2;5318:3;5259:67;:::i;:::-;5252:74;;5356:34;5352:1;5347:3;5343:11;5336:55;5422:3;5417:2;5412:3;5408:12;5401:25;5452:2;5447:3;5443:12;5436:19;;5242:219;;;:::o;5467:369::-;;5630:67;5694:2;5689:3;5630:67;:::i;:::-;5623:74;;5727:34;5723:1;5718:3;5714:11;5707:55;5793:7;5788:2;5783:3;5779:12;5772:29;5827:2;5822:3;5818:12;5811:19;;5613:223;;;:::o;5842:368::-;;6005:67;6069:2;6064:3;6005:67;:::i;:::-;5998:74;;6102:34;6098:1;6093:3;6089:11;6082:55;6168:6;6163:2;6158:3;6154:12;6147:28;6201:2;6196:3;6192:12;6185:19;;5988:222;;;:::o;6216:369::-;;6379:67;6443:2;6438:3;6379:67;:::i;:::-;6372:74;;6476:34;6472:1;6467:3;6463:11;6456:55;6542:7;6537:2;6532:3;6528:12;6521:29;6576:2;6571:3;6567:12;6560:19;;6362:223;;;:::o;6591:329::-;;6754:67;6818:2;6813:3;6754:67;:::i;:::-;6747:74;;6851:33;6847:1;6842:3;6838:11;6831:54;6911:2;6906:3;6902:12;6895:19;;6737:183;;;:::o;6926:118::-;7013:24;7031:5;7013:24;:::i;:::-;7008:3;7001:37;6991:53;;:::o;7050:112::-;7133:22;7149:5;7133:22;:::i;:::-;7128:3;7121:35;7111:51;;:::o;7168:222::-;;7299:2;7288:9;7284:18;7276:26;;7312:71;7380:1;7369:9;7365:17;7356:6;7312:71;:::i;:::-;7266:124;;;;:::o;7396:210::-;;7521:2;7510:9;7506:18;7498:26;;7534:65;7596:1;7585:9;7581:17;7572:6;7534:65;:::i;:::-;7488:118;;;;:::o;7612:313::-;;7763:2;7752:9;7748:18;7740:26;;7812:9;7806:4;7802:20;7798:1;7787:9;7783:17;7776:47;7840:78;7913:4;7904:6;7840:78;:::i;:::-;7832:86;;7730:195;;;;:::o;7931:419::-;;8135:2;8124:9;8120:18;8112:26;;8184:9;8178:4;8174:20;8170:1;8159:9;8155:17;8148:47;8212:131;8338:4;8212:131;:::i;:::-;8204:139;;8102:248;;;:::o;8356:419::-;;8560:2;8549:9;8545:18;8537:26;;8609:9;8603:4;8599:20;8595:1;8584:9;8580:17;8573:47;8637:131;8763:4;8637:131;:::i;:::-;8629:139;;8527:248;;;:::o;8781:419::-;;8985:2;8974:9;8970:18;8962:26;;9034:9;9028:4;9024:20;9020:1;9009:9;9005:17;8998:47;9062:131;9188:4;9062:131;:::i;:::-;9054:139;;8952:248;;;:::o;9206:419::-;;9410:2;9399:9;9395:18;9387:26;;9459:9;9453:4;9449:20;9445:1;9434:9;9430:17;9423:47;9487:131;9613:4;9487:131;:::i;:::-;9479:139;;9377:248;;;:::o;9631:419::-;;9835:2;9824:9;9820:18;9812:26;;9884:9;9878:4;9874:20;9870:1;9859:9;9855:17;9848:47;9912:131;10038:4;9912:131;:::i;:::-;9904:139;;9802:248;;;:::o;10056:419::-;;10260:2;10249:9;10245:18;10237:26;;10309:9;10303:4;10299:20;10295:1;10284:9;10280:17;10273:47;10337:131;10463:4;10337:131;:::i;:::-;10329:139;;10227:248;;;:::o;10481:419::-;;10685:2;10674:9;10670:18;10662:26;;10734:9;10728:4;10724:20;10720:1;10709:9;10705:17;10698:47;10762:131;10888:4;10762:131;:::i;:::-;10754:139;;10652:248;;;:::o;10906:419::-;;11110:2;11099:9;11095:18;11087:26;;11159:9;11153:4;11149:20;11145:1;11134:9;11130:17;11123:47;11187:131;11313:4;11187:131;:::i;:::-;11179:139;;11077:248;;;:::o;11331:419::-;;11535:2;11524:9;11520:18;11512:26;;11584:9;11578:4;11574:20;11570:1;11559:9;11555:17;11548:47;11612:131;11738:4;11612:131;:::i;:::-;11604:139;;11502:248;;;:::o;11756:419::-;;11960:2;11949:9;11945:18;11937:26;;12009:9;12003:4;11999:20;11995:1;11984:9;11980:17;11973:47;12037:131;12163:4;12037:131;:::i;:::-;12029:139;;11927:248;;;:::o;12181:419::-;;12385:2;12374:9;12370:18;12362:26;;12434:9;12428:4;12424:20;12420:1;12409:9;12405:17;12398:47;12462:131;12588:4;12462:131;:::i;:::-;12454:139;;12352:248;;;:::o;12606:419::-;;12810:2;12799:9;12795:18;12787:26;;12859:9;12853:4;12849:20;12845:1;12834:9;12830:17;12823:47;12887:131;13013:4;12887:131;:::i;:::-;12879:139;;12777:248;;;:::o;13031:222::-;;13162:2;13151:9;13147:18;13139:26;;13175:71;13243:1;13232:9;13228:17;13219:6;13175:71;:::i;:::-;13129:124;;;;:::o;13259:214::-;;13386:2;13375:9;13371:18;13363:26;;13399:67;13463:1;13452:9;13448:17;13439:6;13399:67;:::i;:::-;13353:120;;;;:::o;13479:99::-;;13565:5;13559:12;13549:22;;13538:40;;;:::o;13584:169::-;;13702:6;13697:3;13690:19;13742:4;13737:3;13733:14;13718:29;;13680:73;;;;:::o;13759:305::-;;13818:20;13836:1;13818:20;:::i;:::-;13813:25;;13852:20;13870:1;13852:20;:::i;:::-;13847:25;;14006:1;13938:66;13934:74;13931:1;13928:81;13925:2;;;14012:18;;:::i;:::-;13925:2;14056:1;14053;14049:9;14042:16;;13803:261;;;;:::o;14070:96::-;;14136:24;14154:5;14136:24;:::i;:::-;14125:35;;14115:51;;;:::o;14172:90::-;;14249:5;14242:13;14235:21;14224:32;;14214:48;;;:::o;14268:126::-;;14345:42;14338:5;14334:54;14323:65;;14313:81;;;:::o;14400:77::-;;14466:5;14455:16;;14445:32;;;:::o;14483:86::-;;14558:4;14551:5;14547:16;14536:27;;14526:43;;;:::o;14575:307::-;14643:1;14653:113;14667:6;14664:1;14661:13;14653:113;;;14752:1;14747:3;14743:11;14737:18;14733:1;14728:3;14724:11;14717:39;14689:2;14686:1;14682:10;14677:15;;14653:113;;;14784:6;14781:1;14778:13;14775:2;;;14864:1;14855:6;14850:3;14846:16;14839:27;14775:2;14624:258;;;;:::o;14888:320::-;;14969:1;14963:4;14959:12;14949:22;;15016:1;15010:4;15006:12;15037:18;15027:2;;15093:4;15085:6;15081:17;15071:27;;15027:2;15155;15147:6;15144:14;15124:18;15121:38;15118:2;;;15174:18;;:::i;:::-;15118:2;14939:269;;;;:::o;15214:180::-;15262:77;15259:1;15252:88;15359:4;15356:1;15349:15;15383:4;15380:1;15373:15;15400:180;15448:77;15445:1;15438:88;15545:4;15542:1;15535:15;15569:4;15566:1;15559:15;15586:102;;15678:2;15674:7;15669:2;15662:5;15658:14;15654:28;15644:38;;15634:54;;;:::o;15694:122::-;15767:24;15785:5;15767:24;:::i;:::-;15760:5;15757:35;15747:2;;15806:1;15803;15796:12;15747:2;15737:79;:::o;15822:122::-;15895:24;15913:5;15895:24;:::i;:::-;15888:5;15885:35;15875:2;;15934:1;15931;15924:12;15875:2;15865:79;:::o

Swarm Source

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